summaryrefslogtreecommitdiff
path: root/libre/mplayer-vaapi-libre/patch-fixes.patch
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2011-01-28 12:03:23 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2011-01-28 12:03:23 -0300
commitca7c217f85721d8f12e237d9d5c8dcf148adc5aa (patch)
treed2859ed8aab59dc1f4449f40c9d1f67cf4dca410 /libre/mplayer-vaapi-libre/patch-fixes.patch
parent5e3df826584c6dbde610119dfdcb687fd0b8d316 (diff)
downloadabslibre-ca7c217f85721d8f12e237d9d5c8dcf148adc5aa.tar.gz
abslibre-ca7c217f85721d8f12e237d9d5c8dcf148adc5aa.tar.bz2
abslibre-ca7c217f85721d8f12e237d9d5c8dcf148adc5aa.zip
mplayer-vaapi-32825-1
Diffstat (limited to 'libre/mplayer-vaapi-libre/patch-fixes.patch')
-rw-r--r--libre/mplayer-vaapi-libre/patch-fixes.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/libre/mplayer-vaapi-libre/patch-fixes.patch b/libre/mplayer-vaapi-libre/patch-fixes.patch
new file mode 100644
index 000000000..99df9e267
--- /dev/null
+++ b/libre/mplayer-vaapi-libre/patch-fixes.patch
@@ -0,0 +1,26 @@
+diff -upr mplayer-vaapi-20101115.orig/patches/mplayer-vaapi.patch mplayer-vaapi-20101115/patches/mplayer-vaapi.patch
+--- mplayer-vaapi-20101115.orig/patches/mplayer-vaapi.patch 2010-11-15 11:14:06.000000000 +0200
++++ mplayer-vaapi-20101115/patches/mplayer-vaapi.patch 2010-11-18 05:14:41.000000000 +0200
+@@ -3688,10 +3688,10 @@ index 0000000..f920d91
+ + enable_osd();
+ +}
+ +
+-+static void draw_eosd(EOSD_ImageList *imgs)
+++static void draw_eosd(struct mp_eosd_image_list *imgs)
+ +{
+-+ ASS_Image *img = imgs->imgs;
+-+ ASS_Image *i;
+++ struct mp_eosd_image_list *img = eosd_image_first(imgs);
+++ struct mp_eosd_image *i;
+ + VAStatus status;
+ +
+ + if (!va_eosd_draw_alpha)
+@@ -3717,7 +3717,7 @@ index 0000000..f920d91
+ +
+ + memset(va_eosd_image_data, 0, va_eosd_image.data_size);
+ +
+-+ for (i = img; i; i = i->next)
+++ for (i = img; i; i = eosd_image_next(imgs))
+ + va_eosd_draw_alpha(i->bitmap, i->w, i->h, i->stride,
+ + i->dst_x, i->dst_y, i->color);
+ +