From 4ef22807018d16b507cd4683d2f1a70a6e2e5c3d Mon Sep 17 00:00:00 2001 From: vpeter4 Date: Sun, 14 Oct 2012 18:16:12 +0200 Subject: [PATCH] libvdpau: fix for blue faces in flash video with opera addon --- .../patches/libvdpau-0.5-opera_flash_blue.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/multimedia/libvdpau/patches/libvdpau-0.5-opera_flash_blue.patch diff --git a/packages/multimedia/libvdpau/patches/libvdpau-0.5-opera_flash_blue.patch b/packages/multimedia/libvdpau/patches/libvdpau-0.5-opera_flash_blue.patch new file mode 100644 index 0000000000..f455f6e2cc --- /dev/null +++ b/packages/multimedia/libvdpau/patches/libvdpau-0.5-opera_flash_blue.patch @@ -0,0 +1,12 @@ +diff -uNr libvdpau-0.5-orig/src/vdpau_wrapper.c libvdpau-0.5/src/vdpau_wrapper.c +--- libvdpau-0.5-orig/src/vdpau_wrapper.c 2012-09-04 19:26:33.000000000 +0200 ++++ libvdpau-0.5/src/vdpau_wrapper.c 2012-10-14 17:05:52.000000000 +0200 +@@ -320,7 +320,7 @@ + } + buffer[ret] = '\0'; + +- if (strstr(buffer, "libflashplayer") != NULL) { ++ if (strstr(buffer, "libflashplayer") != NULL || strstr(buffer, "operapluginwrapper") != NULL) { + _running_under_flash = 1; + } + }