diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-24 20:49:25 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-27 14:14:56 +0200 |
commit | e2c24e6a299b7e0e5387bdc50c11d16857b950a0 (patch) | |
tree | 195d49102b96e6653a817bf37c4376a6203ff809 /libavcodec/msvideo1.c | |
parent | 17e23aed41c37e130ec38b9f682c5cde990eefcc (diff) | |
download | ffmpeg-e2c24e6a299b7e0e5387bdc50c11d16857b950a0.tar.gz |
avcodec/internal: Move ff_reget_buffer() to decode.h
Only used by decoders.
Also clean up the headers a bit while removing now unnecessary
internal.h inclusions.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/msvideo1.c')
-rw-r--r-- | libavcodec/msvideo1.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/msvideo1.c b/libavcodec/msvideo1.c index 8db31676f0..aeb3027b5f 100644 --- a/libavcodec/msvideo1.c +++ b/libavcodec/msvideo1.c @@ -26,8 +26,6 @@ * http://www.pcisys.net/~melanson/codecs/ */ -#include <stdio.h> -#include <stdlib.h> #include <string.h> #include "libavutil/internal.h" @@ -35,7 +33,6 @@ #include "avcodec.h" #include "codec_internal.h" #include "decode.h" -#include "internal.h" #define PALETTE_COUNT 256 #define CHECK_STREAM_PTR(n) \ |