[FFmpeg-cvslog] r24412 - in trunk/libavcodec: vp56.h vp8.c

Måns Rullgård mans
Thu Jul 22 09:00:18 CEST 2010


darkshikari <subversion at mplayerhq.hu> writes:

> Author: darkshikari
> Date: Thu Jul 22 06:26:41 2010
> New Revision: 24412
>
> Log:
> Much faster VP8 mv and mode prediction
>
> Modified:
>    trunk/libavcodec/vp56.h
>    trunk/libavcodec/vp8.c
>
> Modified: trunk/libavcodec/vp56.h
> ==============================================================================
> --- trunk/libavcodec/vp56.h	Thu Jul 22 05:33:29 2010	(r24411)
> +++ trunk/libavcodec/vp56.h	Thu Jul 22 06:26:41 2010	(r24412)
> @@ -32,7 +32,11 @@
>  #include "vp56dsp.h"
>
>  typedef struct vp56_context VP56Context;
> -typedef struct vp56_mv VP56mv;
> +
> +typedef struct {
> +    int16_t x;
> +    int16_t y;
> +} DECLARE_ALIGNED(4, , VP56mv);

This looks ugly, and I'm not sure it works with all the
DECLARE_ALIGNED variants.

-- 
M?ns Rullg?rd
mans at mansr.com



More information about the ffmpeg-cvslog mailing list