diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-12-21 11:47:09 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-12-21 11:47:09 +0000 |
commit | 56b69633dd52bd2a2dd1a58207d505af41d2cd2f (patch) | |
tree | 6a7ce583f4ec0abe4e893c3379ced7a672a356f8 | |
parent | b7d8f6e0954d4d8838ae01e60728e428e67e4f66 (diff) | |
download | ffmpeg-56b69633dd52bd2a2dd1a58207d505af41d2cd2f.tar.gz |
comment typo fixes
Originally committed as revision 25485 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
-rw-r--r-- | libswscale/swscale.c | 4 | ||||
-rw-r--r-- | libswscale/swscale_internal.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c index 00d90a67e4..a68d2b881b 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -2521,7 +2521,7 @@ SwsContext *sws_getContext(int srcW, int srcH, int srcFormat, int dstW, int dstH } /** - * swscale warper, so we don't need to export the SwsContext. + * swscale wrapper, so we don't need to export the SwsContext. * assumes planar YUV to be in YUV order instead of YVU */ int sws_scale(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, @@ -2575,7 +2575,7 @@ int sws_scale(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, } /** - * swscale warper, so we don't need to export the SwsContext + * swscale wrapper, so we don't need to export the SwsContext */ int sws_scale_ordered(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, int srcSliceH, uint8_t* dst[], int dstStride[]){ diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h index 6f15fc133f..96ec78c48e 100644 --- a/libswscale/swscale_internal.h +++ b/libswscale/swscale_internal.h @@ -42,8 +42,8 @@ typedef struct SwsContext{ AVClass *av_class; /** - * - * Note the src,dst,srcStride,dstStride will be copied, in the sws_scale() warper so they can freely be modified here + * Note that src, dst, srcStride, dstStride will be copied in the + * sws_scale() wrapper so they can be freely modified here. */ SwsFunc swScale; int srcW, srcH, dstH; |