diff options
author | Timothy Gu <timothygu99@gmail.com> | 2013-06-28 17:24:26 -0700 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-06-29 02:31:16 +0200 |
commit | a9bbf59be73264ed63b08b67024cd04720dd1f43 (patch) | |
tree | 6f849d011c7a7b801b42dba60358cb5fae185398 /libavformat/utils.c | |
parent | fc736a99eae194c85fe344a4db895c1cd3493d45 (diff) | |
download | ffmpeg-a9bbf59be73264ed63b08b67024cd04720dd1f43.tar.gz |
cosmetics: Fix "dont" "wont" "doesnt" typos
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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 71fca24e6e..67fb97ce60 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -805,7 +805,7 @@ static int is_intra_only(AVCodecContext *enc){ static int has_decode_delay_been_guessed(AVStream *st) { if(st->codec->codec_id != AV_CODEC_ID_H264) return 1; - if(!st->info) // if we have left find_stream_info then nb_decoded_frames wont increase anymore for stream copy + if(!st->info) // if we have left find_stream_info then nb_decoded_frames won't increase anymore for stream copy return 1; #if CONFIG_H264_DECODER if(st->codec->has_b_frames && |