diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-06 16:40:53 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-10 07:30:31 +0200 |
commit | d78838414b8362a7aa7c27abacee1f6ca036199c (patch) | |
tree | 5685c2949db1ed148c3df2bb42952c0d8e7274e8 /libavformat/dvenc.c | |
parent | 533836b8e0e5693b3d3e8403666ce216687d51b3 (diff) | |
download | ffmpeg-d78838414b8362a7aa7c27abacee1f6ca036199c.tar.gz |
avformat/utils: Move creation-time functions to mux_utils
Only used by muxers.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/dvenc.c')
-rw-r--r-- | libavformat/dvenc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/dvenc.c b/libavformat/dvenc.c index 23b99062c7..1917c00694 100644 --- a/libavformat/dvenc.c +++ b/libavformat/dvenc.c @@ -31,15 +31,14 @@ #include "libavutil/time_internal.h" #include "avformat.h" -#include "internal.h" #include "libavcodec/dv_profile.h" #include "libavcodec/dv.h" #include "dv.h" +#include "mux.h" #include "libavutil/avassert.h" #include "libavutil/fifo.h" #include "libavutil/mathematics.h" #include "libavutil/intreadwrite.h" -#include "libavutil/opt.h" #include "libavutil/timecode.h" #define MAX_AUDIO_FRAME_SIZE 192000 // 1 second of 48khz 32-bit audio |