mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
Cosmetics: fix vertical alignment.
Originally committed as revision 30842 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
parent
8eafa0b488
commit
124cb45137
@ -740,9 +740,9 @@ av_cold int ff_yuv2rgb_c_init_tables(SwsContext *c, const int inv_table[4], int
|
||||
yb = -(384<<16) - oy;
|
||||
for (i = 0; i < 1024; i++) {
|
||||
uint8_t yval = av_clip_uint8((yb + 0x8000) >> 16);
|
||||
y_table16[i ] = (yval >> 4) << rbase;
|
||||
y_table16[i ] = (yval >> 4) << rbase;
|
||||
y_table16[i+1024] = (yval >> 4) << gbase;
|
||||
y_table16[i+2048] = (yval >> 4) << bbase;
|
||||
y_table16[i+2048] = (yval >> 4) << bbase;
|
||||
yb += cy;
|
||||
}
|
||||
fill_table(c->table_rV, 2, crv, y_table16 + yoffs);
|
||||
|
Loading…
Reference in New Issue
Block a user