diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2010-01-18 23:58:10 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2010-01-18 23:58:10 +0000 |
commit | 49c43fc278c7499d96575c61626cb244a53f76b3 (patch) | |
tree | 5a5aa0778be2c37731f0c5a70ac5bf61c26c7601 | |
parent | c3aeaa540d6ff7b9829c3af1ffec3c708ddc70f7 (diff) | |
download | ffmpeg-49c43fc278c7499d96575c61626cb244a53f76b3.tar.gz |
reindent
Originally committed as revision 21311 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/mov.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index aa66a01ec9..b8246204c9 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -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->width != sc->width || st->codec->height != sc->height) { - AVRational r = av_d2q(((double)st->codec->height * sc->width) / - ((double)st->codec->width * sc->height), INT_MAX); - if (st->sample_aspect_ratio.num) - st->sample_aspect_ratio = av_mul_q(st->sample_aspect_ratio, r); - else - st->sample_aspect_ratio = r; + AVRational r = av_d2q(((double)st->codec->height * sc->width) / + ((double)st->codec->width * sc->height), INT_MAX); + if (st->sample_aspect_ratio.num) + st->sample_aspect_ratio = av_mul_q(st->sample_aspect_ratio, r); + else + st->sample_aspect_ratio = r; } av_reduce(&st->avg_frame_rate.num, &st->avg_frame_rate.den, |