From 5efcab64a5c85850450ef17af90be36787a6e1cb Mon Sep 17 00:00:00 2001 From: diego Date: Fri, 21 Dec 2007 11:47:09 +0000 Subject: [PATCH] comment typo fixes git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25485 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libswscale/swscale.c | 4 ++-- 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;