Commit 69d93a13 authored by Michael Niedermayer's avatar Michael Niedermayer

typo fix by (lists: kenneth aafloy net)

Originally committed as revision 4354 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent fb3ca6ba
...@@ -1447,7 +1447,7 @@ static void av_update_stream_timings(AVFormatContext *ic) ...@@ -1447,7 +1447,7 @@ static void av_update_stream_timings(AVFormatContext *ic)
} }
if (start_time != MAXINT64) { if (start_time != MAXINT64) {
ic->start_time = start_time; ic->start_time = start_time;
if (end_time != MAXINT64) { if (end_time != MININT64) {
ic->duration = end_time - start_time; ic->duration = end_time - start_time;
if (ic->file_size > 0) { if (ic->file_size > 0) {
/* compute the bit rate */ /* compute the bit rate */
......
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