Browse code

fix typos and grammar

Originally committed as revision 32370 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale

Ramiro Polla authored on 2010/09/27 05:31:04
Showing 1 changed files
... ...
@@ -144,13 +144,14 @@ int sws_isSupportedInput(enum PixelFormat pix_fmt);
144 144
 int sws_isSupportedOutput(enum PixelFormat pix_fmt);
145 145
 
146 146
 /**
147
- * Alloctaes an empty SwsContext, this must be filled and passed to sws_init_context().
148
- * For filling see AVOptions, options.c and sws_setColorspaceDetails().
147
+ * Allocates an empty SwsContext. This must be filled and passed to
148
+ * sws_init_context(). For filling see AVOptions, options.c and
149
+ * sws_setColorspaceDetails().
149 150
  */
150 151
 struct SwsContext *sws_alloc_context(void);
151 152
 
152 153
 /**
153
- * Initializs the swscaler context sws_context.
154
+ * Initializes the swscaler context sws_context.
154 155
  */
155 156
 int sws_init_context(struct SwsContext *sws_context, SwsFilter *srcFilter, SwsFilter *dstFilter);
156 157