diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-06-05 11:09:50 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-06-05 11:09:50 +0000 |
commit | 69d93a13442b18d8b2326c1466931dc84fa866e6 (patch) | |
tree | db1bf7f8d4fc5cd21777b378e4fb0adc0c2ccbf5 /libavformat/utils.c | |
parent | fb3ca6ba3e3e67e1efa549ba28f11f899787f15b (diff) | |
download | ffmpeg-69d93a13442b18d8b2326c1466931dc84fa866e6.tar.gz |
typo fix by (lists: kenneth aafloy net)
Originally committed as revision 4354 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index db58c05935..8fa014313e 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -1447,7 +1447,7 @@ static void av_update_stream_timings(AVFormatContext *ic) } if (start_time != MAXINT64) { ic->start_time = start_time; - if (end_time != MAXINT64) { + if (end_time != MININT64) { ic->duration = end_time - start_time; if (ic->file_size > 0) { /* compute the bit rate */ |