[Ffmpeg-devel] [PATCH] Incorrect memset in Sierra decoder

Diego Biurrun diego
Tue Aug 8 19:29:49 CEST 2006


On Tue, Aug 08, 2006 at 12:50:16PM +0200, Panagiotis Issaris wrote:
> 
> A memset in the Sierra VMD audio & video decoder seems to be wrong. The
> attached patch fixes this.
> 
> --- libavcodec/vmdav.c	(revision 5955)
> +++ libavcodec/vmdav.c	(working copy)
> @@ -92,7 +92,7 @@
>      s += 4;
> -    memset(queue, QUEUE_SIZE, 0x20);
> +    memset(queue, 0x20, QUEUE_SIZE);

Looks correct to me.  Mike, Kostya?  Who's the maintainer of this file?

Diego




More information about the ffmpeg-devel mailing list