[FFmpeg-devel] [PATCH] H264 DXVA2 implementation

Ramiro Polla ramiro.polla
Sun Jan 10 07:58:30 CET 2010


On Sat, Jan 9, 2010 at 9:46 PM, Laurent Aimar <fenrir at videolan.org> wrote:
> New patch (v5) attached.

j-b pointed me to the vlc buildbot where this doesn't compile under
"-std=c99" (which is set by default in FFmpeg). I'm no C guru and I'm
quite tired right now, but it seems you can't use anonymous unions in
your dxva2api.h, such as:

typedef struct {
    union {
        struct {
            UCHAR Index7Bits     : 7;
            UCHAR AssociatedFlag : 1;
        };
        UCHAR bPicEntry;
    };
} DXVA_PicEntry_H264;



More information about the ffmpeg-devel mailing list