Commit 3858a227 authored by Michael Niedermayer's avatar Michael Niedermayer

More verbose aspect ratio error msg.

Originally committed as revision 11362 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e640a5c4
......@@ -330,7 +330,7 @@ static int decode_stream_header(NUTContext *nut){
st->codec->sample_aspect_ratio.num= ff_get_v(bc);
st->codec->sample_aspect_ratio.den= ff_get_v(bc);
if((!st->codec->sample_aspect_ratio.num) != (!st->codec->sample_aspect_ratio.den)){
av_log(s, AV_LOG_ERROR, "invalid aspect ratio\n");
av_log(s, AV_LOG_ERROR, "invalid aspect ratio %d/%d\n", st->codec->sample_aspect_ratio.num, st->codec->sample_aspect_ratio.den);
return -1;
}
ff_get_v(bc); /* csp type */
......
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