Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Thompson <sw@jkqxz.net>2016-09-09 17:59:13 +0300
committerMark Thompson <sw@jkqxz.net>2016-09-09 20:56:18 +0300
commit75d642a944d5579e4ef20ff3701422a64692afcf (patch)
tree28ba009745b33ff729f03cc9099ff6b7579ad9b0 /libavcodec
parent11c191b52ce0768370e38a2726132f9223e701f6 (diff)
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.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/vaapi_vp8.c b/libavcodec/vaapi_vp8.c
index a130c04e1d..70e9cec3d4 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"