[FFmpeg-cvslog] avidec: Replace av_realloc by av_realloc_f when relevant.
Nicolas George
git at videolan.org
Sat Oct 1 21:38:55 CEST 2011
ffmpeg | branch: release/0.8 | Nicolas George <nicolas.george at normalesup.org> | Wed Sep 28 17:16:11 2011 +0200| [1537f86a9347ec7c17cb4be0d6657c583d316d40] | committer: Michael Niedermayer
avidec: Replace av_realloc by av_realloc_f when relevant.
Signed-off-by: Nicolas George <nicolas.george at normalesup.org>
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit 71e23d39a396f45bbdf258735b02a4bd5e25fd49)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1537f86a9347ec7c17cb4be0d6657c583d316d40
---
libavformat/avidec.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavformat/avidec.c b/libavformat/avidec.c
index 6fedaf7..7394bbc 100644
--- a/libavformat/avidec.c
+++ b/libavformat/avidec.c
@@ -639,7 +639,7 @@ static int avi_read_header(AVFormatContext *s, AVFormatParameters *ap)
if(st->codec->codec_tag==0 && st->codec->height > 0 && st->codec->extradata_size < 1U<<30){
st->codec->extradata_size+= 9;
- st->codec->extradata= av_realloc(st->codec->extradata, st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
+ st->codec->extradata= av_realloc_f(st->codec->extradata, 1, st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
if(st->codec->extradata)
memcpy(st->codec->extradata + st->codec->extradata_size - 9, "BottomUp", 9);
}
More information about the ffmpeg-cvslog
mailing list