Commit 56b69633 authored by Diego Biurrun's avatar Diego Biurrun

comment typo fixes

Originally committed as revision 25485 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
parent b7d8f6e0
...@@ -2521,7 +2521,7 @@ SwsContext *sws_getContext(int srcW, int srcH, int srcFormat, int dstW, int dstH ...@@ -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 * assumes planar YUV to be in YUV order instead of YVU
*/ */
int sws_scale(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, 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, ...@@ -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 sws_scale_ordered(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY,
int srcSliceH, uint8_t* dst[], int dstStride[]){ int srcSliceH, uint8_t* dst[], int dstStride[]){
......
...@@ -42,8 +42,8 @@ typedef struct SwsContext{ ...@@ -42,8 +42,8 @@ typedef struct SwsContext{
AVClass *av_class; AVClass *av_class;
/** /**
* * Note that src, dst, srcStride, dstStride will be copied in the
* Note the src,dst,srcStride,dstStride will be copied, in the sws_scale() warper so they can freely be modified here * sws_scale() wrapper so they can be freely modified here.
*/ */
SwsFunc swScale; SwsFunc swScale;
int srcW, srcH, dstH; int srcW, srcH, dstH;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment