summaryrefslogtreecommitdiff
path: root/libavcodec/mpeg12dec.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-02-04 15:43:14 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-02-08 06:22:14 +0100
commit70a90fb73e43d8c2d7f09ce6df3a861e65ac6b62 (patch)
tree7a3b78bc692e32ffa89f567ef50e4f0f1182b7e6 /libavcodec/mpeg12dec.c
parent27f22f33834c521a153842fcc0f614360901f2b7 (diff)
avcodec/internal.h: Move avpriv_find_start_code() to startcode.h
This is by definition the appropriate place for it. Remove all the now unnecessary libavcodec/internal.h inclusions; also remove other unnecessary headers from the affected files. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mpeg12dec.c')
-rw-r--r--libavcodec/mpeg12dec.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/mpeg12dec.c b/libavcodec/mpeg12dec.c
index 4a7bd6d466..860e86aa74 100644
--- a/libavcodec/mpeg12dec.c
+++ b/libavcodec/mpeg12dec.c
@@ -34,14 +34,11 @@
#include "libavutil/mem_internal.h"
#include "libavutil/stereo3d.h"
#include "libavutil/timecode.h"
-#include "libavutil/video_enc_params.h"
#include "avcodec.h"
-#include "bytestream.h"
#include "error_resilience.h"
#include "hwconfig.h"
#include "idctdsp.h"
-#include "internal.h"
#include "mpeg_er.h"
#include "mpeg12.h"
#include "mpeg12data.h"
@@ -49,6 +46,7 @@
#include "mpegvideo.h"
#include "mpegvideodata.h"
#include "profiles.h"
+#include "startcode.h"
#include "thread.h"
#include "xvmc_internal.h"