mirror of https://git.ffmpeg.org/ffmpeg.git
hwcontext_vaapi: Add an assert in vaapi_map_from_drm()
Every fourcc in vaapi_drm_format_map should be in vaapi_format_map, so add an assert to ensure we have the right maps. Signed-off-by: Haihao Xiang <haihao.xiang@intel.com>
This commit is contained in:
parent
7e78801fa5
commit
bed670a1de
|
@ -1028,6 +1028,8 @@ static int vaapi_map_from_drm(AVHWFramesContext *src_fc, AVFrame *dst,
|
|||
va_rt_format = vaapi_format_map[i].rt_format;
|
||||
}
|
||||
|
||||
av_assert0(i < FF_ARRAY_ELEMS(vaapi_format_map));
|
||||
|
||||
buffer_handle = desc->objects[0].fd;
|
||||
buffer_desc.pixel_format = va_fourcc;
|
||||
buffer_desc.width = src_fc->width;
|
||||
|
|
Loading…
Reference in New Issue