# HG changeset patch # User benoit # Date 1235722361 0 # Node ID 8537f54fa70449b6184c11464e24b12a5f692297 # Parent 4cd8f715ab172e07227a611ece5fc352764e4e21 Add VA API pixel formats. Patch by Gwenole Beauchesne. diff -r 4cd8f715ab17 -r 8537f54fa704 pixfmt.h --- a/pixfmt.h Sun Feb 22 17:53:14 2009 +0000 +++ b/pixfmt.h Fri Feb 27 08:12:41 2009 +0000 @@ -106,6 +106,9 @@ PIX_FMT_VDPAU_VC1, ///< VC-1 HW decoding with VDPAU, data[0] contains a vdpau_render_state struct which contains the bitstream of the slices as well as various fields extracted from headers PIX_FMT_RGB48BE, ///< packed RGB 16:16:16, 48bpp, 16R, 16G, 16B, big-endian PIX_FMT_RGB48LE, ///< packed RGB 16:16:16, 48bpp, 16R, 16G, 16B, little-endian + PIX_FMT_VAAPI_MOCO, ///< HW acceleration through VA API at motion compensation entry-point, Picture.data[0] contains a vaapi_render_state struct which contains macroblocks as well as various fields extracted from headers + PIX_FMT_VAAPI_IDCT, ///< HW acceleration through VA API at IDCT entry-point, Picture.data[0] contains a vaapi_render_state struct which contains fields extracted from headers + PIX_FMT_VAAPI_VLD, ///< HW decoding through VA API, Picture.data[0] contains a vaapi_render_state struct which contains the bitstream of the slices as well as various fields extracted from headers PIX_FMT_NB, ///< number of pixel formats, DO NOT USE THIS if you want to link with shared libav* because the number of formats might differ between versions };