diff options
author | Anton Khirnov <anton@khirnov.net> | 2016-05-18 10:22:24 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2016-06-21 11:15:11 +0200 |
commit | b24dafe10572254ff0decc18b0d7c3d3707d5a29 (patch) | |
tree | 26069780bde709d55f2d03c077b2e6f922fa5514 /libavcodec | |
parent | 70b1dcef2d859ae6b3e21d61de928c3dd0cf1aa4 (diff) | |
download | ffmpeg-b24dafe10572254ff0decc18b0d7c3d3707d5a29.tar.gz |
lavc: drop unnecessary h264dec.h includes
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h264_parser.c | 2 | ||||
-rw-r--r-- | libavcodec/qsvenc_h264.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264_parser.c b/libavcodec/h264_parser.c index 9233cec87f..00db1d8361 100644 --- a/libavcodec/h264_parser.c +++ b/libavcodec/h264_parser.c @@ -34,10 +34,10 @@ #include "libavutil/mem.h" #include "libavutil/pixfmt.h" +#include "avcodec.h" #include "get_bits.h" #include "golomb.h" #include "h264.h" -#include "h264dec.h" #include "h264_sei.h" #include "h264_ps.h" #include "h264data.h" diff --git a/libavcodec/qsvenc_h264.c b/libavcodec/qsvenc_h264.c index 035f9c65f6..fc4e0b2959 100644 --- a/libavcodec/qsvenc_h264.c +++ b/libavcodec/qsvenc_h264.c @@ -26,11 +26,11 @@ #include <mfx/mfxvideo.h> +#include "libavutil/common.h" #include "libavutil/opt.h" #include "avcodec.h" #include "internal.h" -#include "h264dec.h" #include "qsv.h" #include "qsv_internal.h" #include "qsvenc.h" |