diff options
author | wm4 | 2014-01-19 21:50:58 +0100 |
---|---|---|
committer | Michael Niedermayer | 2014-01-19 22:15:32 +0100 |
commit | 1a193c438c9bde825dbe7965e3543cb5ad14309e (patch) | |
tree | a247d93887585f6128485311dc9e24b2c837a428 /libavformat/isom.c | |
parent | fde2afd9fb6e8645ccb4d3610403ce95af51a16b (diff) |
lavf: add avformat_get_mov_video_tags() and avformat_get_mov_audio_tags()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/isom.c')
-rw-r--r-- | libavformat/isom.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c index f6a4646f7a..3aeb231ace 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -574,3 +574,12 @@ void ff_mov_write_chan(AVIOContext *pb, int64_t channel_layout) avio_wb32(pb, 0); // mNumberChannelDescriptions } +const struct AVCodecTag *avformat_get_mov_video_tags(void) +{ + return ff_codec_movvideo_tags; +} + +const struct AVCodecTag *avformat_get_mov_audio_tags(void) +{ + return ff_codec_movaudio_tags; +} |