Browse Source

hwcontext_vaapi: Fix mapping from DRM

This was broken by bed670a1de29b58fcb3fe046562d8bd125b1457f, which added
an assert that always failed.
tags/n4.1
Mark Thompson 7 years ago
parent
commit
8ef51a4092
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      libavutil/hwcontext_vaapi.c

+ 3
- 1
libavutil/hwcontext_vaapi.c View File

@@ -1024,8 +1024,10 @@ static int vaapi_map_from_drm(AVHWFramesContext *src_fc, AVFrame *dst,
"%08x.\n", desc->objects[0].fd, va_fourcc);

for (i = 0; i < FF_ARRAY_ELEMS(vaapi_format_map); i++) {
if (vaapi_format_map[i].fourcc == va_fourcc)
if (vaapi_format_map[i].fourcc == va_fourcc) {
va_rt_format = vaapi_format_map[i].rt_format;
break;
}
}

av_assert0(i < FF_ARRAY_ELEMS(vaapi_format_map));


Loading…
Cancel
Save