diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/xine-engine/alphablend.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -12,6 +12,7 @@ xine-lib (1.1.2) * Add an image decoder based on gdk-pixbuf * Add browseable capability to smb input plugin * Enable AMD64 mmx/sse support in some plugins (tvtime, libmpeg2, goom...) + * Fix xxmc subpictures (broken since 1.1.1) xine-lib (1.1.1) * Improve sound quality when using alsa 1.0.9 or above. diff --git a/src/xine-engine/alphablend.c b/src/xine-engine/alphablend.c index 9733ca6b3..8be28ccdb 100644 --- a/src/xine-engine/alphablend.c +++ b/src/xine-engine/alphablend.c @@ -2019,7 +2019,7 @@ void _x_blend_xx44 (uint8_t *dst_img, vo_overlay_t *img_overl, dst = dst_y; for (x = 0; x < src_width;) { - int len = (x + rle->len > hili_right) ? hili_right - x : rle->len; + int len = (x + rle->len > clip_right) ? clip_right - x : rle->len; int clipped = (y < clip_top); if (len > 0) { |