diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-06-11 21:54:31 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-07-22 14:34:31 +0200 |
commit | e7bd47e657bbf9e1ce9915e93bc80cb1a29fb7f3 (patch) | |
tree | 5be212f0b3fac0c47e62616b88c315e351783efb /libavcodec | |
parent | 2c05ee092bda386cfaa6c0cd231ec64987335cfd (diff) | |
download | ffmpeg-e7bd47e657bbf9e1ce9915e93bc80cb1a29fb7f3.tar.gz |
Remove obsolete version.h inclusions
These have mostly been added because of FF_API_*; yet when these were
removed, removing the header has been forgotten.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/blockdsp.c | 1 | ||||
-rw-r--r-- | libavcodec/blockdsp.h | 1 | ||||
-rw-r--r-- | libavcodec/codec_desc.c | 1 | ||||
-rw-r--r-- | libavcodec/error_resilience.c | 1 | ||||
-rw-r--r-- | libavcodec/mpegutils.h | 1 | ||||
-rw-r--r-- | libavcodec/utils.c | 1 |
6 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/blockdsp.c b/libavcodec/blockdsp.c index c7efe7e77b..5fb242ea65 100644 --- a/libavcodec/blockdsp.c +++ b/libavcodec/blockdsp.c @@ -23,7 +23,6 @@ #include "libavutil/attributes.h" #include "avcodec.h" #include "blockdsp.h" -#include "version.h" static void clear_block_c(int16_t *block) { diff --git a/libavcodec/blockdsp.h b/libavcodec/blockdsp.h index 26fc2ea13b..58eecffb07 100644 --- a/libavcodec/blockdsp.h +++ b/libavcodec/blockdsp.h @@ -23,7 +23,6 @@ #include <stdint.h> #include "avcodec.h" -#include "version.h" /* add and put pixel (decoding) * Block sizes for op_pixels_func are 8x4,8x8 16x8 16x16. diff --git a/libavcodec/codec_desc.c b/libavcodec/codec_desc.c index 35527dcc37..674f4bf8c3 100644 --- a/libavcodec/codec_desc.c +++ b/libavcodec/codec_desc.c @@ -27,7 +27,6 @@ #include "codec_id.h" #include "codec_desc.h" #include "profiles.h" -#include "version.h" #define MT(...) (const char *const[]){ __VA_ARGS__, NULL } diff --git a/libavcodec/error_resilience.c b/libavcodec/error_resilience.c index 68bc10ac31..f13be7b918 100644 --- a/libavcodec/error_resilience.c +++ b/libavcodec/error_resilience.c @@ -35,7 +35,6 @@ #include "mpegvideo.h" #include "rectangle.h" #include "thread.h" -#include "version.h" /** * @param stride the number of MVs to get to the next row diff --git a/libavcodec/mpegutils.h b/libavcodec/mpegutils.h index 81f0b73bb1..5aeff47bbd 100644 --- a/libavcodec/mpegutils.h +++ b/libavcodec/mpegutils.h @@ -26,7 +26,6 @@ #include "libavutil/frame.h" #include "avcodec.h" -#include "version.h" /** * Return value for header parsers if frame is not coded. diff --git a/libavcodec/utils.c b/libavcodec/utils.c index b2f0d2a497..5fad782f5a 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -41,7 +41,6 @@ #include "internal.h" #include "put_bits.h" #include "raw.h" -#include "version.h" #include <stdlib.h> #include <stdarg.h> #include <stdatomic.h> |