[FFmpeg-devel] [PATCH] ensure input buffer padding is always initialized to 0

Michael Niedermayer michaelni
Sat Apr 11 14:48:41 CEST 2009


On Sat, Apr 11, 2009 at 12:29:17PM +0200, Reimar D?ffinger wrote:
> Hello,
> there are quite a few valgrind errors in all kinds of codecs because the
> padding is not initialized to 0 as required.
> Attached patch changes this. I have not checked if any of the code is
> speed-critical enough to justify a more complicated method of doing
> this, though in those cases av_fast_realloc should not have been used
> since it involves a memcpy which AFAICT is completely useless in all
> these cases (the previous data is not relevant).

> Index: libavcodec/motionpixels.c
> ===================================================================
> --- libavcodec/motionpixels.c	(revision 18427)
> +++ libavcodec/motionpixels.c	(working copy)
> @@ -298,6 +298,9 @@
>  
>      /* le32 bitstream msb first */
>      mp->bswapbuf = av_fast_realloc(mp->bswapbuf, &mp->bswapbuf_size, buf_size + FF_INPUT_BUFFER_PADDING_SIZE);
> +    if (!mp->bswapbuf)
> +        return AVERROR(ENOMEM);

memleak
a av_realloc_free() that frees the old buffer on failure might be a 
good idea ...

also, even though mpeg*/h26* can catch the end by
FF_INPUT_BUFFER_PADDING_SIZE zeros, i doubt somewhat that it works
with many other decoders ...
in that sense i think meny of your added memsets() are misleaing
and in that sense iam not in favor of them, valgrind is buggy if it
complains about unini stuff that is thrown away
ahh that reminds me of debian & ssh

[...]
-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

If you really think that XML is the answer, then you definitly missunderstood
the question -- Attila Kinali
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: Digital signature
URL: <http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/attachments/20090411/305a3e0b/attachment.pgp>



More information about the ffmpeg-devel mailing list