summaryrefslogtreecommitdiff
path: root/packages/mplayer/mplayer-1.0pre7+cvs20060519/w100-video_out.patch
diff options
context:
space:
mode:
authorGraeme Gregory <dp@xora.org.uk>2006-05-30 12:49:51 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2006-05-30 12:49:51 +0000
commit3e70f1f55a14b23a43512452aae21c1ad1f219eb (patch)
tree89fad35b03533464260cb54dec869e31e27f05ae /packages/mplayer/mplayer-1.0pre7+cvs20060519/w100-video_out.patch
parent887011f6f665e04a84b2f25bb902c2196f928b6d (diff)
mplayer_1.0pre7+cvs20060519.bb : add a cvs snapshot of mplayer in prep for
a svn version when they get the repos open to public again. Is patched with the w100 driver from mplayer-atty so platforms with w100 can try --enable-w100.
Diffstat (limited to 'packages/mplayer/mplayer-1.0pre7+cvs20060519/w100-video_out.patch')
-rw-r--r--packages/mplayer/mplayer-1.0pre7+cvs20060519/w100-video_out.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/mplayer/mplayer-1.0pre7+cvs20060519/w100-video_out.patch b/packages/mplayer/mplayer-1.0pre7+cvs20060519/w100-video_out.patch
new file mode 100644
index 0000000000..9855853fe6
--- /dev/null
+++ b/packages/mplayer/mplayer-1.0pre7+cvs20060519/w100-video_out.patch
@@ -0,0 +1,20 @@
+--- mplayer_20060519/libvo/video_out.c.orig 2006-05-30 11:25:57.000000000 +0100
++++ mplayer_20060519/libvo/video_out.c 2006-05-30 11:26:49.000000000 +0100
+@@ -86,6 +86,7 @@
+ extern vo_functions_t video_out_syncfb;
+ extern vo_functions_t video_out_fbdev;
+ extern vo_functions_t video_out_fbdev2;
++extern vo_functions_t video_out_w100;
+ extern vo_functions_t video_out_svga;
+ extern vo_functions_t video_out_png;
+ extern vo_functions_t video_out_ggi;
+@@ -196,6 +197,9 @@
+ &video_out_fbdev,
+ &video_out_fbdev2,
+ #endif
++#ifdef HAVE_W100
++ &video_out_w100,
++#endif
+ #ifdef HAVE_SVGALIB
+ &video_out_svga,
+ #endif