summaryrefslogtreecommitdiff
path: root/libavformat/smoothstreamingenc.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-05-06 14:39:31 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-05-10 07:27:01 +0200
commitf4a2d722aa8f666e863476b95e1e2cbe92d8146b (patch)
tree923c25d4957738384b787963afce053875220b6a /libavformat/smoothstreamingenc.c
parent84091cd029711fea75eca359b101124ff792e964 (diff)
avformat/internal: Move muxing-only functions to new mux.h header
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/smoothstreamingenc.c')
-rw-r--r--libavformat/smoothstreamingenc.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/libavformat/smoothstreamingenc.c b/libavformat/smoothstreamingenc.c
index c67f0cba43..1713dd9009 100644
--- a/libavformat/smoothstreamingenc.c
+++ b/libavformat/smoothstreamingenc.c
@@ -20,24 +20,20 @@
*/
#include "config.h"
-#include <float.h>
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
#include "avformat.h"
-#include "avio_internal.h"
#include "internal.h"
+#include "mux.h"
#include "os_support.h"
#include "avc.h"
#include "url.h"
-#include "isom.h"
#include "libavutil/opt.h"
#include "libavutil/avstring.h"
-#include "libavutil/file.h"
#include "libavutil/mathematics.h"
-#include "libavutil/intreadwrite.h"
typedef struct Fragment {
int64_t start_time, duration;