summaryrefslogtreecommitdiffstats
path: root/libswscale
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-21 11:47:09 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-21 11:47:09 +0000
commit5efcab64a5c85850450ef17af90be36787a6e1cb (patch)
tree47c54fd58d91d23276cd479777fed72ebf539e3f /libswscale
parent64b88a41392c706710cc130e1e1e56821a209305 (diff)
downloadmpv-5efcab64a5c85850450ef17af90be36787a6e1cb.tar.bz2
mpv-5efcab64a5c85850450ef17af90be36787a6e1cb.tar.xz
comment typo fixes
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25485 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libswscale')
-rw-r--r--libswscale/swscale.c4
-rw-r--r--libswscale/swscale_internal.h4
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;