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/hlsenc.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/hlsenc.c')
-rw-r--r-- | libavformat/hlsenc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index d2b8215dff..5561be0588 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -22,7 +22,6 @@ #include "config.h" #include "config_components.h" -#include <float.h> #include <stdint.h> #if HAVE_UNISTD_H #include <unistd.h> @@ -36,11 +35,9 @@ #include "libavutil/avassert.h" #include "libavutil/mathematics.h" -#include "libavutil/parseutils.h" #include "libavutil/avstring.h" #include "libavutil/bprint.h" #include "libavutil/intreadwrite.h" -#include "libavutil/random_seed.h" #include "libavutil/opt.h" #include "libavutil/log.h" #include "libavutil/time.h" @@ -54,6 +51,7 @@ #endif #include "hlsplaylist.h" #include "internal.h" +#include "mux.h" #include "os_support.h" typedef enum { |