summaryrefslogtreecommitdiff
path: root/libavformat/nutdec.c
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2010-05-20 22:46:11 +0000
committerReinhard Tartler <siretart@tauware.de>2010-05-20 22:46:11 +0000
commitd1026ab5063a3e4ed2259ea68ab6d6f2ecfb4435 (patch)
treed861d1e7fa4a77646a540a05b9eae7297f2bb950 /libavformat/nutdec.c
parent08a441d4ad378be0cfee231621f0f4ee121ed091 (diff)
Make the nut demuxer issue a more meaningful error message if it
cannot recognize the provided codec tag. backport r23071 by stefano Originally committed as revision 23205 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6
Diffstat (limited to 'libavformat/nutdec.c')
-rw-r--r--libavformat/nutdec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c
index 522affbb57..5d5cd557b3 100644
--- a/libavformat/nutdec.c
+++ b/libavformat/nutdec.c
@@ -334,7 +334,8 @@ static int decode_stream_header(NUTContext *nut){
return -1;
}
if(class<3 && st->codec->codec_id == CODEC_ID_NONE)
- av_log(s, AV_LOG_ERROR, "Unknown codec?!\n");
+ av_log(s, AV_LOG_ERROR, "Unknown codec tag '0x%04x' for stream number %d\n",
+ (unsigned int)tmp, stream_id);
GET_V(stc->time_base_id , tmp < nut->time_base_count);
GET_V(stc->msb_pts_shift , tmp < 16);