Browse Source

swscale: remove misplaced comment.

The comment should have been placed only in
yuv2rgb48_X_c_template, not yuv2rgb48_1_c_template.
tags/n0.8
Ronald S. Bultje 14 years ago
parent
commit
4e05830205
1 changed files with 0 additions and 1 deletions
  1. +0
    -1
      libswscale/swscale.c

+ 0
- 1
libswscale/swscale.c View File

@@ -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];


Loading…
Cancel
Save