mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-01 01:17:47 +00:00
lavf: add functions for accessing the fourcc<->CodecID mapping tables.
Fixes bug 212.
This commit is contained in:
parent
bc90199848
commit
dd6d3b0e02
4 changed files with 63 additions and 27 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue