You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Merge remote-tracking branch 'qatar/master'
* qatar/master: lavf: don't abort if both encoder and muxer aspect ratios are not set Conflicts: libavformat/mux.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -273,13 +273,18 @@ static int init_muxer(AVFormatContext *s, AVDictionary **options)
|
|||||||
if (av_cmp_q(st->sample_aspect_ratio, codec->sample_aspect_ratio)
|
if (av_cmp_q(st->sample_aspect_ratio, codec->sample_aspect_ratio)
|
||||||
&& FFABS(av_q2d(st->sample_aspect_ratio) - av_q2d(codec->sample_aspect_ratio)) > 0.004*av_q2d(st->sample_aspect_ratio)
|
&& FFABS(av_q2d(st->sample_aspect_ratio) - av_q2d(codec->sample_aspect_ratio)) > 0.004*av_q2d(st->sample_aspect_ratio)
|
||||||
) {
|
) {
|
||||||
av_log(s, AV_LOG_ERROR, "Aspect ratio mismatch between muxer "
|
if (st->sample_aspect_ratio.num != 0 &&
|
||||||
"(%d/%d) and encoder layer (%d/%d)\n",
|
st->sample_aspect_ratio.den != 0 &&
|
||||||
st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
|
codec->sample_aspect_ratio.den != 0 &&
|
||||||
codec->sample_aspect_ratio.num,
|
codec->sample_aspect_ratio.den != 0) {
|
||||||
codec->sample_aspect_ratio.den);
|
av_log(s, AV_LOG_ERROR, "Aspect ratio mismatch between muxer "
|
||||||
ret = AVERROR(EINVAL);
|
"(%d/%d) and encoder layer (%d/%d)\n",
|
||||||
goto fail;
|
st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
|
||||||
|
codec->sample_aspect_ratio.num,
|
||||||
|
codec->sample_aspect_ratio.den);
|
||||||
|
ret = AVERROR(EINVAL);
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user