diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-01-27 13:33:09 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-01-31 16:53:35 +0100 |
commit | dd6d3b0e025cb2a16022665dbb8ab1be18dc05e8 (patch) | |
tree | ad10c16b75add54758d96bc09a9350ce9f22b9cd /libavformat/utils.c | |
parent | bc901998487bf9b77a423961d9f961bcc28a9291 (diff) | |
download | ffmpeg-dd6d3b0e025cb2a16022665dbb8ab1be18dc05e8.tar.gz |
lavf: add functions for accessing the fourcc<->CodecID mapping tables.
Fixes bug 212.
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index cf7180b3cf..e10348df60 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -3874,3 +3874,12 @@ int ff_add_param_change(AVPacket *pkt, int32_t channels, } return 0; } + +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; +} |