diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-06 14:39:31 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-10 07:27:01 +0200 |
commit | f4a2d722aa8f666e863476b95e1e2cbe92d8146b (patch) | |
tree | 923c25d4957738384b787963afce053875220b6a /libavformat/mux.c | |
parent | 84091cd029711fea75eca359b101124ff792e964 (diff) | |
download | ffmpeg-f4a2d722aa8f666e863476b95e1e2cbe92d8146b.tar.gz |
avformat/internal: Move muxing-only functions to new mux.h header
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/mux.c')
-rw-r--r-- | libavformat/mux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mux.c b/libavformat/mux.c index 1c1fbf275c..f1ae1c874e 100644 --- a/libavformat/mux.c +++ b/libavformat/mux.c @@ -21,6 +21,7 @@ #include "avformat.h" #include "internal.h" +#include "mux.h" #include "version.h" #include "libavcodec/bsf.h" #include "libavcodec/internal.h" @@ -30,7 +31,6 @@ #include "libavutil/pixdesc.h" #include "libavutil/timestamp.h" #include "libavutil/avassert.h" -#include "libavutil/avstring.h" #include "libavutil/internal.h" #include "libavutil/mathematics.h" |