1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-02-04 06:08:26 +02:00

vaapi: Disable deprecation warnings around use of struct vaapi_context

This commit is contained in:
Mark Thompson 2017-10-01 22:50:59 +01:00
parent b487add7ec
commit 94ab0bef40

View File

@ -24,6 +24,7 @@
#include "libavutil/frame.h"
#include "libavutil/hwcontext.h"
#include "libavutil/hwcontext_vaapi.h"
#include "libavutil/internal.h"
#include "avcodec.h"
@ -57,9 +58,11 @@ typedef struct VAAPIDecodeContext {
VAContextID va_context;
#if FF_API_VAAPI_CONTEXT
FF_DISABLE_DEPRECATION_WARNINGS
int have_old_context;
struct vaapi_context *old_context;
AVBufferRef *device_ref;
FF_ENABLE_DEPRECATION_WARNINGS
#endif
AVHWDeviceContext *device;