Mercurial > mplayer.hg
changeset 31594:8f8d3775d564
Handle and print a warning about invalid values in the function
calculating the bounding box.
author | reimar |
---|---|
date | Sat, 10 Jul 2010 10:23:40 +0000 |
parents | 22272cbfaf28 |
children | 1026cf3f3e7b |
files | spudec.c |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/spudec.c Sat Jul 10 10:22:28 2010 +0000 +++ b/spudec.c Sat Jul 10 10:23:40 2010 +0000 @@ -706,6 +706,9 @@ 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 */