Browse code

Fix "ouput" typo and add a check.

Clément Bœsch authored on 2012/01/27 07:03:35
Showing 6 changed files
... ...
@@ -744,7 +744,7 @@ version 0.4.5:
744 744
 - MPEG-4 vol header fixes (Jonathan Marsden <snmjbm at pacbell.net>)
745 745
 - ARM optimizations (Lionel Ulmer <lionel.ulmer at free.fr>).
746 746
 - Windows porting of file converter
747
-- added MJPEG raw format (input/ouput)
747
+- added MJPEG raw format (input/output)
748 748
 - added JPEG image format support (input/output)
749 749
 
750 750
 
... ...
@@ -29,7 +29,7 @@
29 29
                                                                           \                        /                                   :
30 30
                                                                     +======\======================/======+      ^                      :
31 31
                                                           ------> 0 |   : source_index  : st-:---        |      :                      :
32
-                    OuputFile output_files[]            /           +------------------------------------+      :                      :
32
+                    OutputFile output_files[]           /           +------------------------------------+      :                      :
33 33
                                                        /          1 |   :               :    :           |      :                      :
34 34
                  ^  +------+------------+-----+       /             +------------------------------------+      :                      :
35 35
                  :  |      : ost_index -:-----:------/            2 |   :               :    :           |      :                      :
... ...
@@ -205,7 +205,7 @@ static void qtrle_encode_line(QtrleEncContext *s, AVFrame *p, int line, uint8_t
205 205
         prev_line -= s->pixel_size;
206 206
     }
207 207
 
208
-    /* Good ! Now we have the best sequence for this line, let's ouput it */
208
+    /* Good ! Now we have the best sequence for this line, let's output it */
209 209
 
210 210
     /* We do a special case for the first pixel so that we avoid testing it in
211 211
      * the whole loop */
... ...
@@ -51,7 +51,7 @@ typedef struct Rl2Context {
51 51
  * @param s rl2 context
52 52
  * @param in input buffer
53 53
  * @param size input buffer size
54
- * @param out ouput buffer
54
+ * @param out output buffer
55 55
  * @param stride stride of the output buffer
56 56
  * @param video_base offset of the rle data inside the frame
57 57
  */
... ...
@@ -1,5 +1,5 @@
1 1
 /*
2
- * filter to ouput only 1 every n frame, or only the I (key)frame
2
+ * filter to output only 1 every n frame, or only the I (key)frame
3 3
  *
4 4
  * The parameters are:
5 5
  *
... ...
@@ -67,7 +67,7 @@ $EGREP $OPT '^\+ *(const *|)static' $*| $EGREP --color=always '[^=]= *(0|NULL)[^
67 67
 cat $TMP
68 68
 hiegrep '# *ifdef * (HAVE|CONFIG)_' 'ifdefs that should be #if' $*
69 69
 
70
-hiegrep '\b(awnser|cant|dont|wont|usefull|successfull|occured|teh|alot|wether|skiped|heigth|informations|colums|loosy|loosing|seperate|preceed|upto|paket|posible)\b' 'common typos' $*
70
+hiegrep '\b(awnser|cant|dont|wont|usefull|successfull|occured|teh|alot|wether|skiped|heigth|informations|colums|loosy|loosing|ouput|seperate|preceed|upto|paket|posible)\b' 'common typos' $*
71 71
 
72 72
 hiegrep 'av_log\( *NULL' 'Missing context in av_log' $*
73 73
 hiegrep '[^sn]printf' 'Please use av_log' $*