diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-06 15:01:33 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-10 07:27:36 +0200 |
commit | 7547f135485623e00844d2ad40debb5b048e6b5d (patch) | |
tree | f8ea9c5a584452ce4cc0a0e89bda658fa50c3fe8 /libavformat/flvenc.c | |
parent | 5130bbb7efe1125c515eddedc0985fa9b6e5d731 (diff) | |
download | ffmpeg-7547f135485623e00844d2ad40debb5b048e6b5d.tar.gz |
avformat/utils: Move ff_stream_add_bitstream_filter to mux.c
It is muxing-only; in fact, it should be considered part of
the core muxing code.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/flvenc.c')
-rw-r--r-- | libavformat/flvenc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c index 429732297d..4e65ba4066 100644 --- a/libavformat/flvenc.c +++ b/libavformat/flvenc.c @@ -25,13 +25,12 @@ #include "libavutil/avassert.h" #include "libavutil/mathematics.h" #include "libavcodec/mpeg4audio.h" -#include "avio_internal.h" #include "avio.h" #include "avc.h" #include "avformat.h" #include "flv.h" #include "internal.h" -#include "metadata.h" +#include "mux.h" #include "libavutil/opt.h" #include "libavcodec/put_bits.h" |