diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-07-17 02:37:02 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-07-24 10:37:07 +0200 |
commit | 3fe98db7bbe7132a5d0893597ed5d68923902965 (patch) | |
tree | 1febb2105045a020c9ffffa3f71377e5f1315ef9 | |
parent | 5b11ee94299fe4e07d3921a3b8f29fff72e1daa1 (diff) | |
download | ffmpeg-3fe98db7bbe7132a5d0893597ed5d68923902965.tar.gz |
avcodec/vvc_mp4toannexb_bsf: Improve included headers
A BSF should never include avcodec.h at all.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/vvc_mp4toannexb_bsf.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/vvc_mp4toannexb_bsf.c b/libavcodec/vvc_mp4toannexb_bsf.c index 9e606cdc27..25c3726918 100644 --- a/libavcodec/vvc_mp4toannexb_bsf.c +++ b/libavcodec/vvc_mp4toannexb_bsf.c @@ -24,14 +24,12 @@ #include "libavutil/intreadwrite.h" #include "libavutil/mem.h" -#include "avcodec.h" #include "bsf.h" #include "bsf_internal.h" #include "bytestream.h" +#include "defs.h" #include "vvc.h" -#include "libavcodec/get_bits.h" - #define MIN_VVCC_LENGTH 23 typedef struct VVCBSFContext { |