Commit 70cbf334 authored by Diego Biurrun's avatar Diego Biurrun Committed by Anton Khirnov

vdpau: Add missing #includes to fix standalone header compilation

Signed-off-by: 's avatarAnton Khirnov <anton@khirnov.net>
parent e2b5b097
...@@ -52,6 +52,10 @@ ...@@ -52,6 +52,10 @@
#include <vdpau/vdpau.h> #include <vdpau/vdpau.h>
#include <vdpau/vdpau_x11.h> #include <vdpau/vdpau_x11.h>
#include "libavutil/attributes.h"
#include "version.h"
#if FF_API_BUFS_VDPAU #if FF_API_BUFS_VDPAU
union AVVDPAUPictureInfo { union AVVDPAUPictureInfo {
VdpPictureInfoH264 h264; VdpPictureInfoH264 h264;
......
...@@ -26,8 +26,10 @@ ...@@ -26,8 +26,10 @@
#include <stdint.h> #include <stdint.h>
#include <vdpau/vdpau.h> #include <vdpau/vdpau.h>
#include "h264.h"
#include "avcodec.h"
#include "mpegvideo.h" #include "mpegvideo.h"
#include "version.h"
/** Extract VdpVideoSurface from a Picture */ /** Extract VdpVideoSurface from a Picture */
static inline uintptr_t ff_vdpau_get_surface_id(Picture *pic) static inline uintptr_t ff_vdpau_get_surface_id(Picture *pic)
...@@ -42,6 +44,8 @@ union AVVDPAUPictureInfo { ...@@ -42,6 +44,8 @@ union AVVDPAUPictureInfo {
VdpPictureInfoVC1 vc1; VdpPictureInfoVC1 vc1;
VdpPictureInfoMPEG4Part2 mpeg4; VdpPictureInfoMPEG4Part2 mpeg4;
}; };
#else
#include "vdpau.h"
#endif #endif
struct vdpau_picture_context { struct vdpau_picture_context {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment