diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-01-21 14:42:23 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-01-21 14:42:23 +0100 |
commit | 766df7ca89a2398e71182f5f2b46053e3aa9bd69 (patch) | |
tree | 33b8b8926ff66a2164a777b1aeaedc26e0a1c129 /libavcodec/dxva2.c | |
parent | 9d80b1ae9590a3d764b1b334fc2d1ef0097bcc1c (diff) | |
download | ffmpeg-766df7ca89a2398e71182f5f2b46053e3aa9bd69.tar.gz |
dxva2: Add missing #includes
Diffstat (limited to 'libavcodec/dxva2.c')
-rw-r--r-- | libavcodec/dxva2.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/dxva2.c b/libavcodec/dxva2.c index f8b8eba4bf..15e5698b00 100644 --- a/libavcodec/dxva2.c +++ b/libavcodec/dxva2.c @@ -20,6 +20,14 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <assert.h> +#include <string.h> + +#include "libavutil/log.h" +#include "libavutil/time.h" + +#include "avcodec.h" +#include "mpegvideo.h" #include "dxva2_internal.h" void *ff_dxva2_get_surface(const Picture *picture) |