summaryrefslogtreecommitdiff
path: root/libavformat/riff.c
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2013-06-15 11:44:07 +0200
committerLuca Barbato <lu_zero@gentoo.org>2013-06-16 14:41:07 +0200
commit508998f7d5cc61c7ac7b049813b47adc24c6e282 (patch)
treeec5f5b8a8900ff1b199d965082a13d1667beb024 /libavformat/riff.c
parentec7c51c7868d3ccc66b5cc38bf126258b94f086c (diff)
avf: move riff tags accessors where they belong
Diffstat (limited to 'libavformat/riff.c')
-rw-r--r--libavformat/riff.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c
index b436a122d0..3f1790e9d0 100644
--- a/libavformat/riff.c
+++ b/libavformat/riff.c
@@ -411,6 +411,16 @@ enum AVCodecID ff_codec_guid_get_id(const AVCodecGuid *guids, ff_asf_guid guid)
return AV_CODEC_ID_NONE;
}
+const struct AVCodecTag *avformat_get_riff_video_tags(void)
+{
+ return ff_codec_bmp_tags;
+}
+
+const struct AVCodecTag *avformat_get_riff_audio_tags(void)
+{
+ return ff_codec_wav_tags;
+}
+
#if CONFIG_MUXERS
int64_t ff_start_tag(AVIOContext *pb, const char *tag)
{