mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-29 20:36:47 +08:00
reindent
Originally committed as revision 21311 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -1654,12 +1654,12 @@ static int mov_read_trak(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
|
|||||||
|
|
||||||
if (st->codec->codec_type == CODEC_TYPE_VIDEO) {
|
if (st->codec->codec_type == CODEC_TYPE_VIDEO) {
|
||||||
if (st->codec->width != sc->width || st->codec->height != sc->height) {
|
if (st->codec->width != sc->width || st->codec->height != sc->height) {
|
||||||
AVRational r = av_d2q(((double)st->codec->height * sc->width) /
|
AVRational r = av_d2q(((double)st->codec->height * sc->width) /
|
||||||
((double)st->codec->width * sc->height), INT_MAX);
|
((double)st->codec->width * sc->height), INT_MAX);
|
||||||
if (st->sample_aspect_ratio.num)
|
if (st->sample_aspect_ratio.num)
|
||||||
st->sample_aspect_ratio = av_mul_q(st->sample_aspect_ratio, r);
|
st->sample_aspect_ratio = av_mul_q(st->sample_aspect_ratio, r);
|
||||||
else
|
else
|
||||||
st->sample_aspect_ratio = r;
|
st->sample_aspect_ratio = r;
|
||||||
}
|
}
|
||||||
|
|
||||||
av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den,
|
av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den,
|
||||||
|
Reference in New Issue
Block a user