diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2010-09-26 20:31:04 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2010-09-26 20:31:04 +0000 |
commit | 33ce384688ffbd5d782368f6b5998d770ddd6e17 (patch) | |
tree | 3ba72b7288059f7f1b7021935ed0ad1b6b7f7341 /libswscale | |
parent | 8c26d83edbddf70dda49adda14d88217a313e436 (diff) | |
download | ffmpeg-33ce384688ffbd5d782368f6b5998d770ddd6e17.tar.gz |
fix typos and grammar
Originally committed as revision 32370 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/swscale.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h index fb5b6deaa7..13e8072fe9 100644 --- a/libswscale/swscale.h +++ b/libswscale/swscale.h @@ -144,13 +144,14 @@ int sws_isSupportedInput(enum PixelFormat pix_fmt); int sws_isSupportedOutput(enum PixelFormat pix_fmt); /** - * Alloctaes an empty SwsContext, this must be filled and passed to sws_init_context(). - * For filling see AVOptions, options.c and sws_setColorspaceDetails(). + * Allocates an empty SwsContext. This must be filled and passed to + * sws_init_context(). For filling see AVOptions, options.c and + * sws_setColorspaceDetails(). */ struct SwsContext *sws_alloc_context(void); /** - * Initializs the swscaler context sws_context. + * Initializes the swscaler context sws_context. */ int sws_init_context(struct SwsContext *sws_context, SwsFilter *srcFilter, SwsFilter *dstFilter); |