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/vp9dec.h | |
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/vp9dec.h')
-rw-r--r-- | libavcodec/vp9dec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/vp9dec.h b/libavcodec/vp9dec.h index f05e478a4a..4002b3a694 100644 --- a/libavcodec/vp9dec.h +++ b/libavcodec/vp9dec.h @@ -32,6 +32,7 @@ #include "vp9.h" #include "vp9dsp.h" +#include "vp9shared.h" enum MVJoint { MV_JOINT_ZERO, |