summaryrefslogtreecommitdiffstats
path: root/sub/sd_ass.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-01-06 16:49:53 +0100
committerwm4 <wm4@nowhere>2015-01-06 16:51:06 +0100
commitd42d60bc1e0a1c3b472b21d3cd203279879f7d95 (patch)
tree5e3cc92bc64309acae00dc67312b56cc5873822c /sub/sd_ass.c
parent5410a5b2c55b5c7d9889451c1d6e56c697325a2c (diff)
downloadmpv-d42d60bc1e0a1c3b472b21d3cd203279879f7d95.tar.bz2
mpv-d42d60bc1e0a1c3b472b21d3cd203279879f7d95.tar.xz
csputils: replace float[3][4] with a struct
Not being able to use the 3x3 part of the matrix was annoying, so split it into a float[3][3] matrix and a separate float[3] constant vector.
Diffstat (limited to 'sub/sd_ass.c')
-rw-r--r--sub/sd_ass.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sub/sd_ass.c b/sub/sd_ass.c
index 8f5b02c842..8bfefb35cb 100644
--- a/sub/sd_ass.c
+++ b/sub/sd_ass.c
@@ -400,9 +400,9 @@ static void mangle_colors(struct sd *sd, struct sub_bitmaps *parts)
vs_params.levels_in = levels;
vs_params.int_bits_in = 8;
vs_params.int_bits_out = 8;
- float vs_yuv2rgb[3][4], vs_rgb2yuv[3][4];
- mp_get_yuv2rgb_coeffs(&vs_params, vs_yuv2rgb);
- mp_invert_yuv2rgb(vs_rgb2yuv, vs_yuv2rgb);
+ struct mp_cmat vs_yuv2rgb, vs_rgb2yuv;
+ mp_get_yuv2rgb_coeffs(&vs_params, &vs_yuv2rgb);
+ mp_invert_yuv2rgb(&vs_rgb2yuv, &vs_yuv2rgb);
// Proper conversion to RGB
struct mp_csp_params rgb_params = MP_CSP_PARAMS_DEFAULTS;
@@ -410,8 +410,8 @@ static void mangle_colors(struct sd *sd, struct sub_bitmaps *parts)
rgb_params.levels_in = params.colorlevels;
rgb_params.int_bits_in = 8;
rgb_params.int_bits_out = 8;
- float vs2rgb[3][4];
- mp_get_yuv2rgb_coeffs(&rgb_params, vs2rgb);
+ struct mp_cmat vs2rgb;
+ mp_get_yuv2rgb_coeffs(&rgb_params, &vs2rgb);
for (int n = 0; n < parts->num_parts; n++) {
struct sub_bitmap *sb = &parts->parts[n];
@@ -421,8 +421,8 @@ static void mangle_colors(struct sd *sd, struct sub_bitmaps *parts)
int b = (color >> 8u) & 0xff;
int a = 0xff - (color & 0xff);
int c[3] = {r, g, b};
- mp_map_int_color(vs_rgb2yuv, 8, c);
- mp_map_int_color(vs2rgb, 8, c);
+ mp_map_int_color(&vs_rgb2yuv, 8, c);
+ mp_map_int_color(&vs2rgb, 8, c);
sb->libass.color = MP_ASS_RGBA(c[0], c[1], c[2], a);
}
}