changeset 3596:1b3a50077124 libavformat

cosmetics: Fix two common typos: wont --> will not, lets --> let us.
author diego
date Thu, 24 Jul 2008 17:09:28 +0000
parents 84584d6d4d77
children cfa94f80be53
files dvenc.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/dvenc.c	Thu Jul 24 07:55:11 2008 +0000
+++ b/dvenc.c	Thu Jul 24 17:09:28 2008 +0000
@@ -255,7 +255,7 @@
             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 @@
         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;