[FFmpeg-cvslog] r17634 - in trunk: libavcodec/imgconvert.c libavutil/pixfmt.h

benoit subversion
Fri Feb 27 09:12:42 CET 2009


Author: benoit
Date: Fri Feb 27 09:12:41 2009
New Revision: 17634

Log:
Add VA API pixel formats.
Patch by Gwenole Beauchesne.

Modified:
   trunk/libavcodec/imgconvert.c
   trunk/libavutil/pixfmt.h

Modified: trunk/libavcodec/imgconvert.c
==============================================================================
--- trunk/libavcodec/imgconvert.c	Fri Feb 27 09:09:23 2009	(r17633)
+++ trunk/libavcodec/imgconvert.c	Fri Feb 27 09:12:41 2009	(r17634)
@@ -419,6 +419,20 @@ static const PixFmtInfo pix_fmt_info[PIX
         .depth = 8,
         .x_chroma_shift = 0, .y_chroma_shift = 0,
     },
+
+    /* VA API formats */
+    [PIX_FMT_VAAPI_MOCO] = {
+        .name = "vaapi_moco",
+        .is_hwaccel = 1,
+    },
+    [PIX_FMT_VAAPI_IDCT] = {
+        .name = "vaapi_idct",
+        .is_hwaccel = 1,
+    },
+    [PIX_FMT_VAAPI_VLD] = {
+        .name = "vaapi_vld",
+        .is_hwaccel = 1,
+    },
 };
 
 void avcodec_get_chroma_sub_sample(int pix_fmt, int *h_shift, int *v_shift)

Modified: trunk/libavutil/pixfmt.h
==============================================================================
--- trunk/libavutil/pixfmt.h	Fri Feb 27 09:09:23 2009	(r17633)
+++ trunk/libavutil/pixfmt.h	Fri Feb 27 09:12:41 2009	(r17634)
@@ -106,6 +106,9 @@ enum PixelFormat {
     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
 };
 




More information about the ffmpeg-cvslog mailing list