Browse code

fix spelling errors

opttimizations -> optimizations
grabing -> grabbing
many resource -> many resources
isnt -> isn't
silcense -> silence

Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

Andreas Cadhalpun authored on 2015/03/07 04:26:32
Showing 6 changed files
... ...
@@ -39,7 +39,7 @@ version 2.6:
39 39
 - Canopus HQX decoder
40 40
 - RTP depacketization of T.140 text (RFC 4103)
41 41
 - VP9 RTP payload format (draft 0) experimental depacketizer
42
-- Port MIPS opttimizations to 64-bit
42
+- Port MIPS optimizations to 64-bit
43 43
 
44 44
 
45 45
 version 2.5:
... ...
@@ -1109,7 +1109,7 @@ The syntax is:
1109 1109
 -grab_x @var{x_offset} -grab_y @var{y_offset}
1110 1110
 @end example
1111 1111
 
1112
-Set the grabing region coordinates. The are expressed as offset from the top left
1112
+Set the grabbing region coordinates. They are expressed as offset from the top left
1113 1113
 corner of the X11 window. The default value is 0.
1114 1114
 
1115 1115
 @section decklink
... ...
@@ -63,7 +63,7 @@ cache:@var{URL}
63 63
 
64 64
 Physical concatenation protocol.
65 65
 
66
-Allow to read and seek from many resource in sequence as if they were
66
+Read and seek from many resources in sequence as if they were
67 67
 a unique resource.
68 68
 
69 69
 A URL accepted by this protocol has the syntax:
... ...
@@ -117,7 +117,7 @@ ffmpeg -i "data:image/gif;base64,R0lGODdhCAAIAMIEAAAAAAAA//8AAP//AP/////////////
117 117
 
118 118
 File access protocol.
119 119
 
120
-Allow to read from or write to a file.
120
+Read from or write to a file.
121 121
 
122 122
 A file URL can have the form:
123 123
 @example
... ...
@@ -155,7 +155,7 @@ time, which is valuable for files on slow medium.
155 155
 
156 156
 FTP (File Transfer Protocol).
157 157
 
158
-Allow to read from or write to remote resources using FTP protocol.
158
+Read from or write to remote resources using FTP protocol.
159 159
 
160 160
 Following syntax is required.
161 161
 @example
... ...
@@ -374,7 +374,7 @@ be seekable, so they will fail with the MD5 output protocol.
374 374
 
375 375
 UNIX pipe access protocol.
376 376
 
377
-Allow to read and write from UNIX pipes.
377
+Read and write from UNIX pipes.
378 378
 
379 379
 The accepted syntax is:
380 380
 @example
... ...
@@ -614,7 +614,7 @@ For more information see: @url{http://www.samba.org/}.
614 614
 
615 615
 Secure File Transfer Protocol via libssh
616 616
 
617
-Allow to read from or write to remote resources using SFTP protocol.
617
+Read from or write to remote resources using SFTP protocol.
618 618
 
619 619
 Following syntax is required.
620 620
 
... ...
@@ -747,7 +747,7 @@ static int v4l2_set_parameters(AVFormatContext *ctx)
747 747
             }
748 748
         } else {
749 749
             av_log(ctx, AV_LOG_WARNING,
750
-                   "The driver does not allow to change time per frame\n");
750
+                   "The driver does not permit changing the time per frame\n");
751 751
         }
752 752
     }
753 753
     if (tpf->denominator > 0 && tpf->numerator > 0) {
... ...
@@ -145,7 +145,7 @@ static int add_entry(URLContext *h, const unsigned char *buf, int size)
145 145
 
146 146
     return 0;
147 147
 fail:
148
-    //we could truncate the file to pos here if pos >=0 but ftruncate isnt available in VS so
148
+    //we could truncate the file to pos here if pos >=0 but ftruncate isn't available in VS so
149 149
     //for simplicty we just leave the file a bit larger
150 150
     av_free(entry);
151 151
     av_free(node);
... ...
@@ -300,7 +300,7 @@ static int cache_close(URLContext *h)
300 300
 #define D AV_OPT_FLAG_DECODING_PARAM
301 301
 
302 302
 static const AVOption options[] = {
303
-    { "read_ahead_limit", "Amount in bytes that may be read ahead when seeking isnt supported, -1 for unlimited", OFFSET(read_ahead_limit), AV_OPT_TYPE_INT, { .i64 = 65536 }, -1, INT_MAX, D },
303
+    { "read_ahead_limit", "Amount in bytes that may be read ahead when seeking isn't supported, -1 for unlimited", OFFSET(read_ahead_limit), AV_OPT_TYPE_INT, { .i64 = 65536 }, -1, INT_MAX, D },
304 304
     {NULL},
305 305
 };
306 306
 
... ...
@@ -708,7 +708,7 @@ static int rm_assemble_video_frame(AVFormatContext *s, AVIOContext *pb,
708 708
                                    int64_t *timestamp)
709 709
 {
710 710
     int hdr;
711
-    int seq = 0, pic_num = 0, len2 = 0, pos = 0; //init to silcense compiler warning
711
+    int seq = 0, pic_num = 0, len2 = 0, pos = 0; //init to silence compiler warning
712 712
     int type;
713 713
     int ret;
714 714