diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-01-21 20:39:26 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-01-21 20:40:23 +0100 |
commit | 075989c33c847dfe83eda3d9f3ee640414d23702 (patch) | |
tree | 4057c27ff26589d0676fbff2150eebc13d36bba3 /libavcodec/dxva2.c | |
parent | f57baf743f0e69f3db54ae7b8e5b79d5ab35fb6e (diff) | |
parent | 766df7ca89a2398e71182f5f2b46053e3aa9bd69 (diff) | |
download | ffmpeg-075989c33c847dfe83eda3d9f3ee640414d23702.tar.gz |
Merge commit '766df7ca89a2398e71182f5f2b46053e3aa9bd69'
* commit '766df7ca89a2398e71182f5f2b46053e3aa9bd69':
dxva2: Add missing #includes
See: 9056d0c94af5c09478acf0e1bc129a9c539070f0
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/dxva2.c')
-rw-r--r-- | libavcodec/dxva2.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libavcodec/dxva2.c b/libavcodec/dxva2.c index 401114e1c7..f9af67a902 100644 --- a/libavcodec/dxva2.c +++ b/libavcodec/dxva2.c @@ -20,9 +20,16 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "dxva2_internal.h" +#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) { return picture->f.data[3]; |