diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-04-27 15:14:32 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-04-27 15:14:32 +0200 |
commit | 466988ab7536aeec10a79c79f38124c773a16f90 (patch) | |
tree | 1bc738cd7bf9bbcfe326ec860c9d34e923b27f1d /libavformat/avidec.c | |
parent | e2a5557cbb7fbcdf38a3240112cbc452930fe8b1 (diff) | |
download | ffmpeg-466988ab7536aeec10a79c79f38124c773a16f90.tar.gz |
Fix dont and doesnt typos
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/avidec.c')
-rw-r--r-- | libavformat/avidec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avidec.c b/libavformat/avidec.c index d9a82d6259..91b9c89925 100644 --- a/libavformat/avidec.c +++ b/libavformat/avidec.c @@ -438,7 +438,7 @@ static int calculate_bitrate(AVFormatContext *s) maxpos = FFMAX(maxpos, st->index_entries[j-1].pos); lensum += len; } - if (maxpos < avi->io_fsize*9/10) // index doesnt cover the whole file + if (maxpos < avi->io_fsize*9/10) // index does not cover the whole file return 0; if (lensum*9/10 > maxpos || lensum < maxpos*9/10) // frame sum and filesize mismatch return 0; |