[FFmpeg-devel] [PATCH v2] lavu/hwcontext_vaapi: Add vaapi_drm_format_map support for x2rgb10

Xiang, Haihao haihao.xiang at intel.com
Thu Aug 10 08:35:58 EEST 2023


On Wo, 2023-08-09 at 14:45 +0200, David Rosca wrote:
> Support for allocating frames with x2rgb10 format was added
> in c00264f5013, this adds support for importing DMA-BUFs.
> 
> v2: Fix #ifdef -> #if

Could you add the update history in annotate, not git commit log ?

Thanks
Haihao

> ---
>  libavutil/hwcontext_vaapi.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/libavutil/hwcontext_vaapi.c b/libavutil/hwcontext_vaapi.c
> index 6c3a227ddd..558fed94c6 100644
> --- a/libavutil/hwcontext_vaapi.c
> +++ b/libavutil/hwcontext_vaapi.c
> @@ -1048,6 +1048,9 @@ static const struct {
>  #if defined(VA_FOURCC_Y412) && defined(DRM_FORMAT_XVYU12_16161616)
>      DRM_MAP(Y412, 1, DRM_FORMAT_XVYU12_16161616),
>  #endif
> +#if defined(VA_FOURCC_X2R10G10B10) && defined(DRM_FORMAT_XRGB2101010)
> +    DRM_MAP(X2R10G10B10, 1, DRM_FORMAT_XRGB2101010),
> +#endif
>  };
>  #undef DRM_MAP
>  



More information about the ffmpeg-devel mailing list