diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2017-03-27 22:05:17 -0400 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2017-03-28 18:04:27 -0400 |
commit | 0c466417846f80a134dd7078435829c8e47fcbb0 (patch) | |
tree | a06bddbbc9186834fa1bd1d5b61e3bbc3e8bd6e8 /libavcodec/vaapi_vp9.c | |
parent | 6d0d1c4a43f5e5fc195226367fd1c49843d25d71 (diff) | |
download | ffmpeg-0c466417846f80a134dd7078435829c8e47fcbb0.tar.gz |
vp9: split out generic decoding skeleton interface API from VP9 types.
This allows vp9dsp.h to only include the VP9 types header, and not the
decoder skeleton interface which is for hardware decoders (dxva2/vaapi).
Diffstat (limited to 'libavcodec/vaapi_vp9.c')
-rw-r--r-- | libavcodec/vaapi_vp9.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vaapi_vp9.c b/libavcodec/vaapi_vp9.c index 7374465d49..d8ece75df4 100644 --- a/libavcodec/vaapi_vp9.c +++ b/libavcodec/vaapi_vp9.c @@ -24,7 +24,7 @@ #include "hwaccel.h" #include "vaapi_decode.h" -#include "vp9.h" +#include "vp9shared.h" static VASurfaceID vaapi_vp9_surface_id(const VP9Frame *vf) { |