Mercurial > mplayer.hg
changeset 19622:31dbf5ebd7bb
Make \fr* parameter a floating point value.
author | eugeni |
---|---|
date | Fri, 01 Sep 2006 20:36:38 +0000 |
parents | a0105ea61f2d |
children | 67fdea3551e1 |
files | libass/ass_render.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/libass/ass_render.c Fri Sep 01 19:47:39 2006 +0000 +++ b/libass/ass_render.c Fri Sep 01 20:36:38 2006 +0000 @@ -726,13 +726,13 @@ render_context.detect_collisions = 0; render_context.evt_type = EVENT_POSITIONED; } else if (mystrcmp(&p, "frx") || mystrcmp(&p, "fry")) { - int val; - mystrtoi(&p, 10, &val); + double val; + mystrtod(&p, &val); mp_msg(MSGT_GLOBAL, MSGL_V, "frx/fry unimplemented \n"); } else if (mystrcmp(&p, "frz") || mystrcmp(&p, "fr")) { double angle; - int val; - val = strtol(p, &p, 10); + double val; + mystrtod(&p, &val); mp_msg(MSGT_GLOBAL, MSGL_DBG2, "setting rotation to %.2f\n", val * pwr); angle = M_PI * val / 180; render_context.rotation = angle * pwr;