From f6a68063ba0e59a214d3d17d75f9005de14f5eb0 Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 28 Mar 2013 20:35:36 +0100 Subject: sub: don't crash on GBRP video mp_get_yuv2rgb_coeffs() will crash if the colorspace is explicitly set to RGB. --- sub/draw_bmp.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'sub') diff --git a/sub/draw_bmp.c b/sub/draw_bmp.c index 09068dba89..4057500f01 100644 --- a/sub/draw_bmp.c +++ b/sub/draw_bmp.c @@ -287,8 +287,10 @@ static void draw_ass(struct mp_draw_sub_cache *cache, struct mp_rect bb, cspar.int_bits_out = 8; float yuv2rgb[3][4], rgb2yuv[3][4]; - mp_get_yuv2rgb_coeffs(&cspar, yuv2rgb); - mp_invert_yuv2rgb(rgb2yuv, yuv2rgb); + if (temp->flags & MP_IMGFLAG_YUV) { + mp_get_yuv2rgb_coeffs(&cspar, yuv2rgb); + mp_invert_yuv2rgb(rgb2yuv, yuv2rgb); + } for (int i = 0; i < sbs->num_parts; ++i) { struct sub_bitmap *sb = &sbs->parts[i]; -- cgit v1.2.3