mirror of https://github.com/mpv-player/mpv
comment typo fixes
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25485 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
64b88a4139
commit
5efcab64a5
|
@ -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[]){
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue