diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-04 15:17:19 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-08 06:16:26 +0100 |
commit | 27f22f33834c521a153842fcc0f614360901f2b7 (patch) | |
tree | 83537838c3982fe3ab12c8fa6373cf761b148207 /libavcodec/avpacket.c | |
parent | 115ac90ec99af35838f65fc5b8f1b27e2ca4ab37 (diff) | |
download | ffmpeg-27f22f33834c521a153842fcc0f614360901f2b7.tar.gz |
all: Remove unnecessary libavcodec/internal.h inclusions
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/avpacket.c')
-rw-r--r-- | libavcodec/avpacket.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libavcodec/avpacket.c b/libavcodec/avpacket.c index 4f7a6b255c..bcbc4166cb 100644 --- a/libavcodec/avpacket.c +++ b/libavcodec/avpacket.c @@ -22,14 +22,12 @@ #include <string.h> #include "libavutil/avassert.h" -#include "libavutil/common.h" -#include "libavutil/internal.h" +#include "libavutil/intreadwrite.h" #include "libavutil/mathematics.h" #include "libavutil/mem.h" #include "libavutil/rational.h" -#include "bytestream.h" -#include "internal.h" +#include "defs.h" #include "packet.h" #include "packet_internal.h" |