summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-04-21 02:57:25 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-04-24 04:44:14 +0200
commit9f3d3ff2ecebd8882627ca4c9cb58481252ee9db (patch)
tree612e82a269f0fedd34d568af0ffa2a1c07885ae5 /libavformat
parent7afb161bc100247b66f2bd5afc7d547faf37a1f9 (diff)
avformat/mux: Remove unnecessary headers
mux.c was split from utils.c in 55f9037f38bc3beacb2f5a17408c1d24c077d7fd and during this split all headers were simply copied without checking if they were only needed in the part that stayed in utils.c (or whether these haeders were needed at all). As a result quite a lot of headers in mux.c are unnecessary. This commit removes them. Reviewed-by: Anton Khirnov <anton@khirnov.net> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/mux.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/libavformat/mux.c b/libavformat/mux.c
index a6253f5430..c348b8fdc8 100644
--- a/libavformat/mux.c
+++ b/libavformat/mux.c
@@ -20,29 +20,16 @@
*/
#include "avformat.h"
-#include "avio_internal.h"
#include "internal.h"
#include "libavcodec/internal.h"
-#include "libavcodec/bytestream.h"
#include "libavutil/opt.h"
#include "libavutil/dict.h"
#include "libavutil/pixdesc.h"
#include "libavutil/timestamp.h"
-#include "metadata.h"
-#include "id3v2.h"
#include "libavutil/avassert.h"
#include "libavutil/avstring.h"
#include "libavutil/internal.h"
#include "libavutil/mathematics.h"
-#include "libavutil/parseutils.h"
-#include "libavutil/time.h"
-#include "riff.h"
-#include "audiointerleave.h"
-#include "url.h"
-#include <stdarg.h>
-#if CONFIG_NETWORK
-#include "network.h"
-#endif
/**
* @file