diff options
author | Mark Thompson <sw@jkqxz.net> | 2016-09-09 15:59:13 +0100 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2016-09-09 18:56:18 +0100 |
commit | 75d642a944d5579e4ef20ff3701422a64692afcf (patch) | |
tree | 28ba009745b33ff729f03cc9099ff6b7579ad9b0 /libavcodec | |
parent | 11c191b52ce0768370e38a2726132f9223e701f6 (diff) | |
download | ffmpeg-streaming-75d642a944d5579e4ef20ff3701422a64692afcf.zip ffmpeg-streaming-75d642a944d5579e4ef20ff3701422a64692afcf.tar.gz |
vaapi_vp8: Explicitly include libva vp8 decode header
With some old libva versions <va/va.h> does not automatically include
the per-codec subsidiary headers, so we need to include the right one
explicitly ourselves.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vaapi_vp8.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/vaapi_vp8.c b/libavcodec/vaapi_vp8.c index a130c04..70e9cec 100644 --- a/libavcodec/vaapi_vp8.c +++ b/libavcodec/vaapi_vp8.c @@ -16,6 +16,9 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <va/va.h> +#include <va/va_dec_vp8.h> + #include "vaapi_decode.h" #include "vp8.h" |