diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-06 18:28:08 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-10 07:37:38 +0200 |
commit | 35ec5c819b0f472536eb48e8f3871eb5ca222da6 (patch) | |
tree | baa0423f54594b4d020f38114ff06034cec6707b /libavformat/mov.c | |
parent | 20ca491664513c936f7960473b833038b0d5ca99 (diff) | |
download | ffmpeg-35ec5c819b0f472536eb48e8f3871eb5ca222da6.tar.gz |
avformat/demux: Add new demux.h header
And move those stuff already in demuxer-only files to it.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index c85b6e1915..d7be593a86 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -36,11 +36,9 @@ #include "libavutil/intreadwrite.h" #include "libavutil/intfloat.h" #include "libavutil/mathematics.h" -#include "libavutil/time_internal.h" #include "libavutil/avassert.h" #include "libavutil/avstring.h" #include "libavutil/dict.h" -#include "libavutil/display.h" #include "libavutil/opt.h" #include "libavutil/aes.h" #include "libavutil/aes_ctr.h" @@ -49,7 +47,6 @@ #include "libavutil/spherical.h" #include "libavutil/stereo3d.h" #include "libavutil/timecode.h" -#include "libavutil/dovi_meta.h" #include "libavcodec/ac3tab.h" #include "libavcodec/flac.h" #include "libavcodec/hevc.h" @@ -58,6 +55,7 @@ #include "avformat.h" #include "internal.h" #include "avio_internal.h" +#include "demux.h" #include "dovi_isom.h" #include "riff.h" #include "isom.h" |