summaryrefslogtreecommitdiffstats
path: root/common/tags.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/tags.h')
-rw-r--r--common/tags.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/common/tags.h b/common/tags.h
index 3e538e7b76..beb8388df1 100644
--- a/common/tags.h
+++ b/common/tags.h
@@ -1,6 +1,8 @@
#ifndef MP_TAGS_H
#define MP_TAGS_H
+#include <stdint.h>
+
#include "misc/bstr.h"
struct mp_tags {
@@ -17,6 +19,7 @@ char *mp_tags_get_str(struct mp_tags *tags, const char *key);
char *mp_tags_get_bstr(struct mp_tags *tags, bstr key);
void mp_tags_clear(struct mp_tags *tags);
struct mp_tags *mp_tags_dup(void *tparent, struct mp_tags *tags);
+void mp_tags_replace(struct mp_tags *dst, struct mp_tags *src);
struct mp_tags *mp_tags_filtered(void *tparent, struct mp_tags *tags, char **list);
void mp_tags_merge(struct mp_tags *tags, struct mp_tags *src);
struct AVDictionary;