diff options
author | Dominik Mierzejewski <dominik@rangers.eu.org> | 2009-03-01 11:43:56 +0000 |
---|---|---|
committer | Dominik Mierzejewski <dominik@rangers.eu.org> | 2009-03-01 11:43:56 +0000 |
commit | 9c36693924e5bcd0870b4db690f1f88bf4d646c1 (patch) | |
tree | b2787160f80241118195170639e8258a17fc95c5 /libswscale | |
parent | b62bb661edafd936a8bb2ea4a6e61530919af658 (diff) | |
download | ffmpeg-9c36693924e5bcd0870b4db690f1f88bf4d646c1.tar.gz |
Fix typo in comments.
Originally committed as revision 28777 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/yuv2rgb_vis.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/yuv2rgb_vis.c b/libswscale/yuv2rgb_vis.c index ecfa11f836..2e2737aa9f 100644 --- a/libswscale/yuv2rgb_vis.c +++ b/libswscale/yuv2rgb_vis.c @@ -80,7 +80,7 @@ -// FIXME: must be changed to ste alpha to 255 instead of 0 +// FIXME: must be changed to set alpha to 255 instead of 0 static int vis_420P_ARGB32(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, int srcSliceH, uint8_t* dst[], int dstStride[]){ int y, out1, out2, out3, out4, out5, out6; @@ -132,7 +132,7 @@ static int vis_420P_ARGB32(SwsContext *c, uint8_t* src[], int srcStride[], int s return srcSliceH; } -// FIXME: must be changed to ste alpha to 255 instead of 0 +// FIXME: must be changed to set alpha to 255 instead of 0 static int vis_422P_ARGB32(SwsContext *c, uint8_t* src[], int srcStride[], int srcSliceY, int srcSliceH, uint8_t* dst[], int dstStride[]){ int y, out1, out2, out3, out4, out5, out6; |