mirror of
https://github.com/mpv-player/mpv
synced 2024-12-24 15:52:25 +00:00
Fix chroma yuv->rgb tables for jpeg style yuv, this was missed as it
only affects the C code while mmx uses different tables. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27576 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
d351b78abd
commit
fd6cd1c95c
@ -880,10 +880,10 @@ int yuv2rgb_c_init_tables (SwsContext *c, const int inv_table[4], int fullRange,
|
||||
}
|
||||
|
||||
for (i = 0; i < 256; i++) {
|
||||
c->table_rV[i] = (uint8_t *)table_r + entry_size * div_round (crv * (i-128), 76309);
|
||||
c->table_gU[i] = (uint8_t *)table_g + entry_size * div_round (cgu * (i-128), 76309);
|
||||
c->table_gV[i] = entry_size * div_round (cgv * (i-128), 76309);
|
||||
c->table_bU[i] = (uint8_t *)table_b + entry_size * div_round (cbu * (i-128), 76309);
|
||||
c->table_rV[i] = (uint8_t *)table_r + entry_size * div_round (crv * (i-128), cy);
|
||||
c->table_gU[i] = (uint8_t *)table_g + entry_size * div_round (cgu * (i-128), cy);
|
||||
c->table_gV[i] = entry_size * div_round (cgv * (i-128), cy);
|
||||
c->table_bU[i] = (uint8_t *)table_b + entry_size * div_round (cbu * (i-128), cy);
|
||||
}
|
||||
|
||||
av_free(c->yuvTable);
|
||||
|
Loading…
Reference in New Issue
Block a user