summaryrefslogtreecommitdiff
path: root/libavformat/utils.c
diff options
context:
space:
mode:
authorMichael Bradshaw <mbradshaw@sorensonmedia.com>2012-06-14 10:54:09 -0600
committerMichael Niedermayer <michaelni@gmx.at>2012-06-15 19:44:42 +0200
commit67703d64d70ba3f072b27bb94ad73d597b4f45d4 (patch)
treef84696cf6a8ce91ca62796d4156df0ccb6871ea8 /libavformat/utils.c
parentb678daf05cbe45abceb5cec6592ae96fa6f0c983 (diff)
lavf: cosmetic: format else with indentation
Signed-off-by: Michael Bradshaw <mbradshaw@sorensonmedia.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r--libavformat/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 0567ec2cc2..c0574e521d 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2049,7 +2049,7 @@ static void update_stream_timings(AVFormatContext *ic)
if (start_time1 < start_time_text)
start_time_text = start_time1;
} else
- start_time = FFMIN(start_time, start_time1);
+ start_time = FFMIN(start_time, start_time1);
if (st->duration != AV_NOPTS_VALUE) {
end_time1 = start_time1
+ av_rescale_q(st->duration, st->time_base, AV_TIME_BASE_Q);