diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-24 22:03:27 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-27 14:14:57 +0200 |
commit | b9eaf77ed1b3b551f71f90b3fb2624379d0b29c3 (patch) | |
tree | 1a5e05091b18b5b7cf5d96225592389583e83d33 /libavcodec/mimic.c | |
parent | b6a680989c2f2428a25bea322ffd2b546474df75 (diff) | |
download | ffmpeg-b9eaf77ed1b3b551f71f90b3fb2624379d0b29c3.tar.gz |
avcodec/internal: Move ff_set_dimensions() to decode.h
Decoder-only, as the dimensions are set by the user when encoding.
Also fixup the other headers a bit while removing unnecessary internal.h
inclusions.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mimic.c')
-rw-r--r-- | libavcodec/mimic.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/mimic.c b/libavcodec/mimic.c index bcf10b7ae1..f5164e82e7 100644 --- a/libavcodec/mimic.c +++ b/libavcodec/mimic.c @@ -19,8 +19,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include <stdlib.h> -#include <string.h> #include <stdint.h> #include "libavutil/mem_internal.h" @@ -29,7 +27,7 @@ #include "avcodec.h" #include "blockdsp.h" #include "codec_internal.h" -#include "internal.h" +#include "decode.h" #include "get_bits.h" #include "bytestream.h" #include "bswapdsp.h" |