summaryrefslogtreecommitdiff
path: root/libavcodec/midivid.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-24 20:49:25 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-27 14:14:56 +0200
commite2c24e6a299b7e0e5387bdc50c11d16857b950a0 (patch)
tree195d49102b96e6653a817bf37c4376a6203ff809 /libavcodec/midivid.c
parent17e23aed41c37e130ec38b9f682c5cde990eefcc (diff)
downloadffmpeg-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/midivid.c')
-rw-r--r--libavcodec/midivid.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/libavcodec/midivid.c b/libavcodec/midivid.c
index 7448c8c797..49f31b0fa7 100644
--- a/libavcodec/midivid.c
+++ b/libavcodec/midivid.c
@@ -19,13 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
#include "libavutil/imgutils.h"
#include "libavutil/internal.h"
-#include "libavutil/intreadwrite.h"
#include "libavutil/mem.h"
#define BITSTREAM_READER_LE
@@ -33,7 +28,7 @@
#include "get_bits.h"
#include "bytestream.h"
#include "codec_internal.h"
-#include "internal.h"
+#include "decode.h"
typedef struct MidiVidContext {
GetByteContext gb;