summaryrefslogtreecommitdiff
path: root/libavcodec/utils.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/utils.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/utils.c')
-rw-r--r--libavcodec/utils.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index b19befef21..c7c7323351 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -27,7 +27,6 @@
#include "config.h"
#include "libavutil/avassert.h"
-#include "libavutil/avstring.h"
#include "libavutil/channel_layout.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/mem.h"
@@ -40,12 +39,9 @@
#include "thread.h"
#include "internal.h"
#include "put_bits.h"
-#include "raw.h"
+#include "startcode.h"
#include <stdlib.h>
-#include <stdarg.h>
-#include <stdatomic.h>
#include <limits.h>
-#include <float.h>
void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size)
{