Browse Source

hwcontext_vaapi: Fix build with libva 2.0

vaExportSurfaceHandle() wasn't included in the 2.0 release.

Fixes ticket #6828.
tags/n4.0
Mark Thompson 7 years ago
parent
commit
1ef4af2d49
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/hwcontext_vaapi.c

+ 1
- 1
libavutil/hwcontext_vaapi.c View File

@@ -1076,7 +1076,7 @@ static void vaapi_unmap_to_drm(AVHWFramesContext *dst_fc,
static int vaapi_map_to_drm(AVHWFramesContext *hwfc, AVFrame *dst,
const AVFrame *src, int flags)
{
#if CONFIG_VAAPI_1
#if VA_CHECK_VERSION(1, 1, 0)
AVVAAPIDeviceContext *hwctx = hwfc->device_ctx->hwctx;
VASurfaceID surface_id;
VAStatus vas;


Loading…
Cancel
Save