diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-09-16 11:27:20 +0200 |
---|---|---|
committer | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-09-16 11:27:20 +0200 |
commit | 52ce8b7b31773f5dd749184445189ecd0cbca24d (patch) | |
tree | 4532eaf3564f74b6ddd9b906ac9650116d8f6b7b /libavcodec | |
parent | 7b865c222e43e315ef78859f5f87fb225fe09fb1 (diff) | |
parent | e60a6e7545dd6f5b25e3a65de9c6fdcc6e2e9d6b (diff) | |
download | ffmpeg-52ce8b7b31773f5dd749184445189ecd0cbca24d.tar.gz |
Merge commit 'e60a6e7545dd6f5b25e3a65de9c6fdcc6e2e9d6b'
* commit 'e60a6e7545dd6f5b25e3a65de9c6fdcc6e2e9d6b':
mpegvideo: Drop mpegvideo.h where not needed
Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/cavsdec.c | 1 | ||||
-rw-r--r-- | libavcodec/dxva2.c | 1 | ||||
-rw-r--r-- | libavcodec/dxva2_internal.h | 1 | ||||
-rw-r--r-- | libavcodec/dxva2_mpeg2.c | 1 | ||||
-rw-r--r-- | libavcodec/libxvid.c | 5 | ||||
-rw-r--r-- | libavcodec/ljpegenc.c | 1 | ||||
-rw-r--r-- | libavcodec/mdec.c | 1 | ||||
-rw-r--r-- | libavcodec/vaapi.c | 1 | ||||
-rw-r--r-- | libavcodec/vaapi_internal.h | 1 | ||||
-rw-r--r-- | libavcodec/vaapi_mpeg2.c | 1 | ||||
-rw-r--r-- | libavcodec/vaapi_mpeg4.c | 1 |
11 files changed, 8 insertions, 7 deletions
diff --git a/libavcodec/cavsdec.c b/libavcodec/cavsdec.c index 8f5d58d10e..70ac6f8a42 100644 --- a/libavcodec/cavsdec.c +++ b/libavcodec/cavsdec.c @@ -32,7 +32,6 @@ #include "cavs.h" #include "internal.h" #include "mpeg12data.h" -#include "mpegvideo.h" static const uint8_t mv_scan[4] = { MV_FWD_X0, MV_FWD_X1, diff --git a/libavcodec/dxva2.c b/libavcodec/dxva2.c index f31c5e262b..42c4484bca 100644 --- a/libavcodec/dxva2.c +++ b/libavcodec/dxva2.c @@ -27,7 +27,6 @@ #include "libavutil/time.h" #include "avcodec.h" -#include "mpegvideo.h" #include "dxva2_internal.h" void *ff_dxva2_get_surface(const AVFrame *frame) diff --git a/libavcodec/dxva2_internal.h b/libavcodec/dxva2_internal.h index 6c9d0bb03f..c2499e5bf7 100644 --- a/libavcodec/dxva2_internal.h +++ b/libavcodec/dxva2_internal.h @@ -48,7 +48,6 @@ #endif #include "avcodec.h" -#include "mpegvideo.h" typedef void DECODER_BUFFER_DESC; diff --git a/libavcodec/dxva2_mpeg2.c b/libavcodec/dxva2_mpeg2.c index 89c43e7f9c..64fa196ca6 100644 --- a/libavcodec/dxva2_mpeg2.c +++ b/libavcodec/dxva2_mpeg2.c @@ -23,6 +23,7 @@ #include "libavutil/log.h" #include "dxva2_internal.h" #include "mpegutils.h" +#include "mpegvideo.h" #define MAX_SLICES 1024 struct dxva2_picture_context { diff --git a/libavcodec/libxvid.c b/libavcodec/libxvid.c index 785c4db261..15b31c5eef 100644 --- a/libavcodec/libxvid.c +++ b/libavcodec/libxvid.c @@ -25,18 +25,21 @@ * @author Adam Thayer (krevnik@comcast.net) */ +#include <stdio.h> +#include <string.h> #include <xvid.h> #include "libavutil/cpu.h" #include "libavutil/file.h" +#include "libavutil/internal.h" #include "libavutil/intreadwrite.h" #include "libavutil/mathematics.h" +#include "libavutil/opt.h" #include "avcodec.h" #include "internal.h" #include "libxvid.h" #include "mpegutils.h" -#include "mpegvideo.h" #if HAVE_UNISTD_H #include <unistd.h> diff --git a/libavcodec/ljpegenc.c b/libavcodec/ljpegenc.c index 5e478a31ec..7f2dd602db 100644 --- a/libavcodec/ljpegenc.c +++ b/libavcodec/ljpegenc.c @@ -39,7 +39,6 @@ #include "internal.h" #include "jpegtables.h" #include "mjpegenc_common.h" -#include "mpegvideo.h" #include "mjpeg.h" #include "mjpegenc.h" diff --git a/libavcodec/mdec.c b/libavcodec/mdec.c index ee96614772..a9b7e8215e 100644 --- a/libavcodec/mdec.c +++ b/libavcodec/mdec.c @@ -31,7 +31,6 @@ #include "blockdsp.h" #include "bswapdsp.h" #include "idctdsp.h" -#include "mpegvideo.h" #include "mpeg12.h" #include "thread.h" diff --git a/libavcodec/vaapi.c b/libavcodec/vaapi.c index c081bb57f8..a1ea790add 100644 --- a/libavcodec/vaapi.c +++ b/libavcodec/vaapi.c @@ -22,6 +22,7 @@ */ #include "libavutil/log.h" +#include "mpegvideo.h" #include "vaapi_internal.h" /** diff --git a/libavcodec/vaapi_internal.h b/libavcodec/vaapi_internal.h index 29f46ab430..0ba9868529 100644 --- a/libavcodec/vaapi_internal.h +++ b/libavcodec/vaapi_internal.h @@ -27,7 +27,6 @@ #include <va/va.h> #include "vaapi.h" #include "avcodec.h" -#include "mpegvideo.h" /** * @addtogroup VAAPI_Decoding diff --git a/libavcodec/vaapi_mpeg2.c b/libavcodec/vaapi_mpeg2.c index a3deab124b..518fec0493 100644 --- a/libavcodec/vaapi_mpeg2.c +++ b/libavcodec/vaapi_mpeg2.c @@ -21,6 +21,7 @@ */ #include "mpegutils.h" +#include "mpegvideo.h" #include "vaapi_internal.h" #include "internal.h" diff --git a/libavcodec/vaapi_mpeg4.c b/libavcodec/vaapi_mpeg4.c index 426bef2646..b5b946dba1 100644 --- a/libavcodec/vaapi_mpeg4.c +++ b/libavcodec/vaapi_mpeg4.c @@ -24,6 +24,7 @@ #include "internal.h" #include "h263.h" #include "mpeg4video.h" +#include "mpegvideo.h" /** Reconstruct bitstream intra_dc_vlc_thr */ static int mpeg4_get_intra_dc_vlc_thr(Mpeg4DecContext *s) |