summaryrefslogtreecommitdiffstats
path: root/sub/spudec.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-10-25 21:23:18 +0200
committerwm4 <wm4@nowhere>2012-10-28 15:31:32 +0100
commitd072e857d71150508f308168953753b6c7441009 (patch)
treee0c2263b183cedce7a7e2532122c4025f012963c /sub/spudec.c
parent65b313a8b0b1a97f7d51f1fec4517adaa9334aa3 (diff)
downloadmpv-d072e857d71150508f308168953753b6c7441009.tar.bz2
mpv-d072e857d71150508f308168953753b6c7441009.tar.xz
csputils: better support for integer color values
Diffstat (limited to 'sub/spudec.c')
-rw-r--r--sub/spudec.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sub/spudec.c b/sub/spudec.c
index 3f9e5d701a..2dd030f54a 100644
--- a/sub/spudec.c
+++ b/sub/spudec.c
@@ -188,6 +188,8 @@ static void setup_palette(spudec_handle_t *spu, uint32_t palette[256])
{
memset(palette, 0, sizeof(palette));
struct mp_csp_params csp = MP_CSP_PARAMS_DEFAULTS;
+ csp.int_bits_in = 8;
+ csp.int_bits_out = 8;
float cmatrix[3][4];
mp_get_yuv2rgb_coeffs(&csp, cmatrix);
for (int i = 0; i < 4; ++i) {
@@ -199,7 +201,7 @@ static void setup_palette(spudec_handle_t *spu, uint32_t palette[256])
int color = spu->custom ? spu->cuspal[i] :
spu->global_palette[spu->palette[i]];
int c[3] = {(color >> 16) & 0xff, (color >> 8) & 0xff, color & 0xff};
- mp_map_color(cmatrix, 8, c);
+ mp_map_int_color(cmatrix, 8, c);
// R and G swapped, possibly due to vobsub_palette_to_yuv()
palette[i] = (alpha << 24u) | (c[2] << 16) | (c[1] << 8) | c[0];
}