Commit 49837b8d authored by Stefano Sabatini's avatar Stefano Sabatini

Make the nut decoder read the ff_nut_video_tags to detect codec id of

the input file.

This is required as Nut codec tags are not contained in
ff_codec_bmp_tags.

Originally committed as revision 23260 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 2e01def0
......@@ -316,7 +316,9 @@ static int decode_stream_header(NUTContext *nut){
{
case 0:
st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
st->codec->codec_id = ff_codec_get_id(ff_codec_bmp_tags, tmp);
st->codec->codec_id = av_codec_get_id(
(const AVCodecTag * const []) { ff_codec_bmp_tags, ff_nut_video_tags, 0 },
tmp);
break;
case 1:
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment