From 4a9c879ca7b72083b2049345500c41710b58e9c8 Mon Sep 17 00:00:00 2001 From: reimar Date: Sat, 10 Jul 2010 10:23:40 +0000 Subject: spudec: Add warning about bad values in bounding box handling git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31660 b3059339-0415-0410-9bf9-f77b7e298cf2 --- spudec.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'spudec.c') diff --git a/spudec.c b/spudec.c index 9748d85301..af1e9a37d6 100644 --- a/spudec.c +++ b/spudec.c @@ -706,6 +706,9 @@ void spudec_calc_bbox(void *me, unsigned int dxs, unsigned int dys, unsigned int bbox[3] = spu->start_row * scaley / 0x100 + spu->height * scaley / 0x100; break; } + } else { + mp_msg(MSGT_SPUDEC, MSGL_ERR, "Bad values in spudec_calc_bbox\n"); + bbox[0] = bbox[1] = bbox[2] = bbox[3] = 0; } } /* transform mplayer's alpha value into an opacity value that is linear */ -- cgit v1.2.3