diff options
author | Gwenole Beauchesne <gwenole.beauchesne@intel.com> | 2011-06-27 21:19:51 -0700 |
---|---|---|
committer | Xiang, Haihao <haihao.xiang@intel.com> | 2011-06-29 09:54:14 +0800 |
commit | 6b7f6b5e8bb850428e3c86a3ca14d5c688d0a3ff (patch) | |
tree | 9413c1c040fdd13f0c5e293e541d920c7e834d7d | |
parent | 3179d67e02b5d40b44450ed95b7dea4c784067c9 (diff) |
i965_drv_video: fix subpicture scale factor for Y axis.
-rw-r--r-- | i965_drv_video/i965_render.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i965_drv_video/i965_render.c b/i965_drv_video/i965_render.c index 1742fe5..d387cb9 100644 --- a/i965_drv_video/i965_render.c +++ b/i965_drv_video/i965_render.c @@ -891,7 +891,7 @@ i965_subpic_render_upload_vertex(VADriverContextP ctx, VARectangle dst_rect; dst_rect.x = output_rect->x + sx * (float)obj_subpic->dst_rect.x; - dst_rect.y = output_rect->y + sx * (float)obj_subpic->dst_rect.y; + dst_rect.y = output_rect->y + sy * (float)obj_subpic->dst_rect.y; dst_rect.width = sx * (float)obj_subpic->dst_rect.width; dst_rect.height = sy * (float)obj_subpic->dst_rect.height; |