[FFmpeg-soc] [soc]: r2296 - wmapro/wma3dec.c

faust3 subversion at mplayerhq.hu
Sun Jun 1 11:53:12 CEST 2008


Author: faust3
Date: Sun Jun  1 11:53:12 2008
New Revision: 2296

Log:
the input buffer of decode packet should be declared as const

Modified:
   wmapro/wma3dec.c

Modified: wmapro/wma3dec.c
==============================================================================
--- wmapro/wma3dec.c	(original)
+++ wmapro/wma3dec.c	Sun Jun  1 11:53:12 2008
@@ -137,7 +137,7 @@ static int wma3_decode_init(AVCodecConte
 
 static int wma3_decode_packet(AVCodecContext *avctx,
                              void *data, int *data_size,
-                             uint8_t *buf, int buf_size)
+                             const uint8_t *buf, int buf_size)
 {
     WMA3DecodeContext *s = avctx->priv_data;
     int more_frames=1;



More information about the FFmpeg-soc mailing list