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;
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to