diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-06 20:27:20 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-10 07:42:07 +0200 |
commit | ff0e8e14c3e9d1003153324d0368735dd84cb4b7 (patch) | |
tree | 23d2efbf83f17295cc44a50ef28bfa3d28009ac7 /libavformat/flacdec.c | |
parent | 8550a05ece37cbb777deb221cce43b5f3345137b (diff) | |
download | ffmpeg-ff0e8e14c3e9d1003153324d0368735dd84cb4b7.tar.gz |
avformat/utils: Move avpriv_new_chapter to demux_utils.c
It is demuxer-only: Muxers deal only with chapters given to them;
they don't create any of their own.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/flacdec.c')
-rw-r--r-- | libavformat/flacdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/flacdec.c b/libavformat/flacdec.c index bfae5a2af1..09404b67bb 100644 --- a/libavformat/flacdec.c +++ b/libavformat/flacdec.c @@ -22,11 +22,11 @@ #include "libavutil/channel_layout.h" #include "libavcodec/flac.h" #include "avformat.h" +#include "demux.h" #include "flac_picture.h" #include "internal.h" #include "rawdec.h" #include "oggdec.h" -#include "vorbiscomment.h" #include "replaygain.h" #define SEEKPOINT_SIZE 18 |