diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2011-06-14 16:55:24 -0400 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-06-14 16:55:24 -0400 |
commit | 4e0583020567dd2062a908fe59aacba484e68049 (patch) | |
tree | dc8066b47811ad61e194167d6bc8680a614b57b2 | |
parent | 0be3736796b1651ad785c9ba68d26c2276cc074c (diff) | |
download | ffmpeg-4e0583020567dd2062a908fe59aacba484e68049.tar.gz |
swscale: remove misplaced comment.
The comment should have been placed only in
yuv2rgb48_X_c_template, not yuv2rgb48_1_c_template.
-rw-r--r-- | libswscale/swscale.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c index 07f2145062..f729c117a7 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -862,7 +862,6 @@ yuv2rgb48_1_c_template(SwsContext *c, const uint16_t *buf0, int Y2 = buf0[i * 2 + 1] >> 7; int U = (ubuf0[i] + ubuf1[i]) >> 8; int V = (vbuf0[i] + vbuf1[i]) >> 8; - /* FIXME fix tables so that clipping is not needed and then use _NOCLIP*/ const uint8_t *r = (const uint8_t *) c->table_rV[V], *g = (const uint8_t *)(c->table_gU[U] + c->table_gV[V]), *b = (const uint8_t *) c->table_bU[U]; |