changeset 3135:cf8df6a00eb5 libavformat

misc spelling fixes
author diego
date Mon, 10 Mar 2008 18:42:09 +0000
parents 8207e7600a4b
children e38d5357f0d0
files mov.c nutenc.c
diffstat 2 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/mov.c	Mon Mar 10 00:48:36 2008 +0000
+++ b/mov.c	Mon Mar 10 18:42:09 2008 +0000
@@ -665,9 +665,9 @@
             (c->fc->video_codec_id ? codec_get_id(codec_movvideo_tags, format) != c->fc->video_codec_id
                                    : st->codec->codec_tag != MKTAG('j', 'p', 'e', 'g'))
            ){
-            /* multiple fourcc, we skip jpeg, this isnt correct, we should export it as
-               seperate AVStream but this needs a few changes in the mov demuxer, patch
-               welcome */
+            /* Multiple fourcc, we skip JPEG. This is not correct, we should
+             * export it as a separate AVStream but this needs a few changes
+             * in the MOV demuxer, patch welcome. */
             url_fskip(pb, size - (url_ftell(pb) - start_pos));
             continue;
         }
--- a/nutenc.c	Mon Mar 10 00:48:36 2008 +0000
+++ b/nutenc.c	Mon Mar 10 18:42:09 2008 +0000
@@ -69,7 +69,7 @@
         header |= 1<<16; //no crc
         AV_WB32(out, header);
         if(size <= 0)
-            return 2; //we guess theres no crc, if there is one the user clearly doesnt care about overhead
+            return 2; //we guess there is no crc, if there is one the user clearly does not care about overhead
         if(bitrate_index == 30)
             return -1; //something is wrong ...
 
@@ -78,8 +78,8 @@
         header |= (bitrate_index&1)<<9;
 
         return 2; //FIXME actually put the needed ones in build_elision_headers()
-        return 3; //we guess that the private bit isnt set
-//FIXME the above asumtations should be checked, if these turn out false too often something should be done
+        return 3; //we guess that the private bit is not set
+//FIXME the above assumptions should be checked, if these turn out false too often something should be done
     }
     return 0;
 }