mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Print extradata in case of failure. I had this in my local tree and it
might be usefull for others ... Originally committed as revision 20828 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
c3d1532944
commit
005d9b57ad
@ -332,7 +332,9 @@ ff_rm_read_mdpr_codecdata (AVFormatContext *s, ByteIOContext *pb,
|
||||
case 2: st->codec->codec_id = CODEC_ID_RV20; break;
|
||||
case 3: st->codec->codec_id = CODEC_ID_RV30; break;
|
||||
case 4: st->codec->codec_id = CODEC_ID_RV40; break;
|
||||
default: goto fail1;
|
||||
default:
|
||||
av_log(st->codec, AV_LOG_ERROR, "extra:%02X %02X %02X %02X %02X\n", ((uint8_t*)st->codec->extradata)[0], ((uint8_t*)st->codec->extradata)[1], ((uint8_t*)st->codec->extradata)[2], ((uint8_t*)st->codec->extradata)[3], ((uint8_t*)st->codec->extradata)[4]);
|
||||
goto fail1;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user