summaryrefslogtreecommitdiff
path: root/libavformat/apetag.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-05-06 16:40:53 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-05-10 07:30:31 +0200
commitd78838414b8362a7aa7c27abacee1f6ca036199c (patch)
tree5685c2949db1ed148c3df2bb42952c0d8e7274e8 /libavformat/apetag.c
parent533836b8e0e5693b3d3e8403666ce216687d51b3 (diff)
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/apetag.c')
-rw-r--r--libavformat/apetag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/apetag.c b/libavformat/apetag.c
index 6f82fbe202..cc6becc182 100644
--- a/libavformat/apetag.c
+++ b/libavformat/apetag.c
@@ -22,12 +22,12 @@
#include <inttypes.h>
-#include "libavutil/intreadwrite.h"
#include "libavutil/dict.h"
#include "avformat.h"
#include "avio_internal.h"
#include "apetag.h"
#include "internal.h"
+#include "mux.h"
#define APE_TAG_FLAG_CONTAINS_HEADER (1U << 31)
#define APE_TAG_FLAG_LACKS_FOOTER (1 << 30)