Author: pebender
Date: Fri Jan 9 22:27:32 2009
New Revision: 4206
Added:
trunk/gar-minimyth/script/mediaplayers/mplayer-svn/files/MPlayer-28207.16380-vdpau_line_704_hack.patch
Modified:
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/script/mediaplayers/mplayer-svn/Makefile
trunk/gar-minimyth/script/mediaplayers/mplayer-svn/checksums
Log:
- Patched MPlayer SVN with the VDPAU 'line 704 hack' patch.
Modified: trunk/gar-minimyth/html/minimyth/document-changelog.txt
==============================================================================
--- trunk/gar-minimyth/html/minimyth/document-changelog.txt (original)
+++ trunk/gar-minimyth/html/minimyth/document-changelog.txt Fri Jan 9
22:27:32 2009
@@ -18,6 +18,9 @@
Modified kernel
- Added IVTV kernel drivers (minimyth.pm required to fetch firmware).
+Modified mediaplayers
+ - Patched MPlayer SVN with the VDPAU 'line 704 hack' patch.
+
Modified init
- Added detection of i2c lirc devices.
- Added support for loading firmware (as long as it is present in
Modified: trunk/gar-minimyth/script/mediaplayers/mplayer-svn/Makefile
==============================================================================
--- trunk/gar-minimyth/script/mediaplayers/mplayer-svn/Makefile (original)
+++ trunk/gar-minimyth/script/mediaplayers/mplayer-svn/Makefile Fri Jan 9
22:27:32 2009
@@ -3,7 +3,7 @@
CATEGORIES = mediaplayers
MASTER_SITES = svn://svn.mplayerhq.hu/
DISTFILES = $(DISTNAME).tar.bz2
-PATCHFILES = $(DISTNAME)-vdpau_libavcodec_3263604.patch
$(DISTNAME)-vdpau_libavutil_3263604.patch
$(DISTNAME)-vdpau_mplayer_3263604.patch $(DISTNAME)-libdvdread_udf.patch
$(DISTNAME)-x11_headers.patch
+PATCHFILES = $(DISTNAME)-vdpau_libavcodec_3263604.patch
$(DISTNAME)-vdpau_libavutil_3263604.patch
$(DISTNAME)-vdpau_mplayer_3263604.patch
$(DISTNAME)-vdpau_line_704_hack.patch $(DISTNAME)-libdvdread_udf.patch
$(DISTNAME)-x11_headers.patch
LICENSE = mplayer
mplayer_LICENSE_TEXT = $(WORKSRC)/Copyright
Modified: trunk/gar-minimyth/script/mediaplayers/mplayer-svn/checksums
==============================================================================
--- trunk/gar-minimyth/script/mediaplayers/mplayer-svn/checksums
(original)
+++ trunk/gar-minimyth/script/mediaplayers/mplayer-svn/checksums Fri Jan
9
22:27:32 2009
@@ -1,5 +1,6 @@
87012855630279f24303c98c8b3434fc
download/MPlayer-28207.16380-vdpau_libavcodec_3263604.patch
54f7a277a6fe9ecd554a9a3eb8bd57e7
download/MPlayer-28207.16380-vdpau_libavutil_3263604.patch
69cf8b5788dcdd5bc34431f76ce7e70b
download/MPlayer-28207.16380-vdpau_mplayer_3263604.patch
+b62493c295667323851c0bbb844b6cec
download/MPlayer-28207.16380-vdpau_line_704_hack.patch
5e222f71392005b3bf1576731d434753
download/MPlayer-28207.16380-libdvdread_udf.patch
6edd9af2fcb827101408d16c98326e1a
download/MPlayer-28207.16380-x11_headers.patch
Added:
trunk/gar-minimyth/script/mediaplayers/mplayer-svn/files/MPlayer-28207.16380-vdpau_line_704_hack.patch
==============================================================================
--- (empty file)
+++
trunk/gar-minimyth/script/mediaplayers/mplayer-svn/files/MPlayer-28207.16380-vdpau_line_704_hack.patch
Fri Jan 9 22:27:32 2009
@@ -0,0 +1,12 @@
+diff -Naur MPlayer-28207.16380-old/libvo/vo_vdpau.c
MPlayer-28207.16380-new/libvo/vo_vdpau.c
+--- MPlayer-28207.16380-old/libvo/vo_vdpau.c 2009-01-09 21:09:27.000000000
-0800
++++ MPlayer-28207.16380-new/libvo/vo_vdpau.c 2009-01-09 21:10:43.000000000
-0800
+@@ -701,7 +701,7 @@
+ uint32_t round_width = (vid_width + 15) & ~15;
+ uint32_t round_height = (vid_height + 15) & ~15;
+ uint32_t surf_size = (round_width * round_height * 3) / 2;
+- max_references = (12 * 1024 * 1024) / surf_size;
++ max_references = (12 * 1024 * 1024) / surf_size + 11;
+ if (max_references > 16) {
+ max_references = 16;
+ }
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"minimyth-commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/minimyth-commits?hl=en
-~----------~----~----~----~------~----~------~--~---