diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-07-24 17:09:28 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-07-24 17:09:28 +0000 |
commit | ca74c0a180d715f0af685bbd9f4bf01501d38325 (patch) | |
tree | f433a79ce2f1d698dc94407a00074d8a7c158acb /libavformat/dvenc.c | |
parent | cc8de8e8a5789963fe6bbccae0411f2acc278c57 (diff) | |
download | ffmpeg-ca74c0a180d715f0af685bbd9f4bf01501d38325.tar.gz |
cosmetics: Fix two common typos: wont --> will not, lets --> let us.
Originally committed as revision 14372 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/dvenc.c')
-rw-r--r-- | libavformat/dvenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/dvenc.c b/libavformat/dvenc.c index 845b851292..6d495e3998 100644 --- a/libavformat/dvenc.c +++ b/libavformat/dvenc.c @@ -255,7 +255,7 @@ int dv_assemble_frame(DVMuxContext *c, AVStream* st, av_log(st->codec, AV_LOG_ERROR, "Can't process DV frame #%d. Insufficient video data or severe sync problem.\n", c->frames); av_fifo_generic_write(&c->audio_data[i], data, data_size, NULL); - /* Lets see if we've got enough audio for one DV frame */ + /* Let us see if we've got enough audio for one DV frame. */ c->has_audio |= ((reqasize <= av_fifo_size(&c->audio_data[i])) << i); break; @@ -263,7 +263,7 @@ int dv_assemble_frame(DVMuxContext *c, AVStream* st, break; } - /* Lets see if we have enough data to construct one DV frame */ + /* Let us see if we have enough data to construct one DV frame. */ if (c->has_video == 1 && c->has_audio + 1 == 1<<c->n_ast) { dv_inject_metadata(c, *frame); c->has_audio = 0; |