[FFmpeg-soc] [soc]: r1942 - aac/aac.c

andoma subversion at mplayerhq.hu
Thu Feb 28 10:57:13 CET 2008


Author: andoma
Date: Thu Feb 28 10:57:13 2008
New Revision: 1942

Log:
fix warning: frame data is constant



Modified:
   aac/aac.c

Modified: aac/aac.c
==============================================================================
--- aac/aac.c	(original)
+++ aac/aac.c	Thu Feb 28 10:57:13 2008
@@ -2136,7 +2136,7 @@ static int output_samples(AVCodecContext
 }
 
 
-static int aac_decode_frame(AVCodecContext * avccontext, void * data, int * data_size, uint8_t * buf, int buf_size) {
+static int aac_decode_frame(AVCodecContext * avccontext, void * data, int * data_size, const uint8_t * buf, int buf_size) {
     AACContext * ac = avccontext->priv_data;
     GetBitContext gb;
     int id, err;



More information about the FFmpeg-soc mailing list