OSDN Git Service

Pad the extradata in the AAC ADTS to AudioSpecificConfig bitstream filter.
authorAlex Converse <alex.converse@gmail.com>
Sun, 15 Nov 2009 19:40:44 +0000 (19:40 +0000)
committerAlex Converse <alex.converse@gmail.com>
Sun, 15 Nov 2009 19:40:44 +0000 (19:40 +0000)
Originally committed as revision 20541 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/aac_adtstoasc_bsf.c

index 96876dd..9d53a01 100644 (file)
@@ -84,7 +84,7 @@ static int aac_adtstoasc_filter(AVBitStreamFilterContext *bsfc,
             buf      += get_bits_count(&gb)/8;
         }
         avctx->extradata_size = 2 + pce_size;
-        avctx->extradata = av_malloc(avctx->extradata_size);
+        avctx->extradata = av_mallocz(avctx->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
 
         init_put_bits(&pb, avctx->extradata, avctx->extradata_size);
         put_bits(&pb, 5, hdr.object_type);