Commit b6892c38 authored by Laurent Aimar's avatar Laurent Aimar

Print codec_id on unsupported track in avformat demuxer.

parent 88564ace
......@@ -379,7 +379,7 @@ int OpenDemux( vlc_object_t *p_this )
if( cc->codec_type == AVMEDIA_TYPE_DATA )
psz_type = "data";
msg_Warn( p_demux, "unsupported track type (%u) in avformat demux", cc->codec_type );
msg_Warn( p_demux, "unsupported track type (%u:%u) in avformat demux", cc->codec_type, cc->codec_id );
}
break;
}
......
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