[FFmpeg-devel] [PATCH] EA TGQ video fixes

Reimar Döffinger Reimar.Doeffinger
Thu Apr 16 19:01:25 CEST 2009


On Thu, Apr 16, 2009 at 06:26:27PM +0200, Vitor Sessak wrote:
> Index: libavcodec/eatgq.c
> ===================================================================
> --- libavcodec/eatgq.c	(revision 18249)
> +++ libavcodec/eatgq.c	(working copy)
> @@ -144,7 +144,7 @@
>      int mode;
>      int i;
>      int8_t dc[6];
> -    DCTELEM block[6][64];
> +    DECLARE_ALIGNED_8(DCTELEM, block[6][64]);
>  
>      mode = bytestream_get_byte((const uint8_t**)bs);
>      if (mode>buf_end-*bs) {

Moving it into the context instead should be more reliable.
Also it would be interesting to know on which platforms the results
differ from which.



More information about the ffmpeg-devel mailing list