lavf: add functions for accessing the fourcc<->CodecID mapping tables.

Fixes bug 212.
This commit is contained in:
Anton Khirnov 2012-01-27 13:33:09 +01:00
parent bc90199848
commit dd6d3b0e02
4 changed files with 63 additions and 27 deletions

View file

@ -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;
}