summaryrefslogtreecommitdiffstats
path: root/sub/draw_bmp.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-12-09 00:22:12 +0100
committerwm4 <wm4@nowhere>2015-12-09 00:23:36 +0100
commit45ae0716be3319bac4585b8fedac529a0809a44c (patch)
tree3d0c79a7d5e5bb8778118e9551295cedf9ed3667 /sub/draw_bmp.c
parentc5c7b239b6386940a8063c6954db2a4705ce3251 (diff)
downloadmpv-45ae0716be3319bac4585b8fedac529a0809a44c.tar.bz2
mpv-45ae0716be3319bac4585b8fedac529a0809a44c.tar.xz
csputils: rename "yuv2rgb" functions
They're not necessarily restricted to YUV aka YCbCr. vo_direct3d.c and demux_disc.c (DVD specific code) changes untested.
Diffstat (limited to 'sub/draw_bmp.c')
-rw-r--r--sub/draw_bmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sub/draw_bmp.c b/sub/draw_bmp.c
index 0c12c7078a..da4760e105 100644
--- a/sub/draw_bmp.c
+++ b/sub/draw_bmp.c
@@ -296,8 +296,8 @@ static void draw_ass(struct mp_draw_sub_cache *cache, struct mp_rect bb,
struct mp_cmat yuv2rgb, rgb2yuv;
bool need_conv = temp->fmt.flags & MP_IMGFLAG_YUV;
if (need_conv) {
- mp_get_yuv2rgb_coeffs(&cspar, &yuv2rgb);
- mp_invert_yuv2rgb(&rgb2yuv, &yuv2rgb);
+ mp_get_csp_matrix(&cspar, &yuv2rgb);
+ mp_invert_cmat(&rgb2yuv, &yuv2rgb);
}
for (int i = 0; i < sbs->num_parts; ++i) {