diff options
author | Graeme Gregory <dp@xora.org.uk> | 2007-03-02 12:45:26 +0000 |
---|---|---|
committer | Graeme Gregory <dp@xora.org.uk> | 2007-03-02 12:45:26 +0000 |
commit | d7e1c4cc66e8f03cae9901290f6982bf4486b29f (patch) | |
tree | 0ce9f96b55ab82fba93b2934697533058b7694d9 /packages/mplayer/files/pxa-video_out.patch | |
parent | 6e097fdb8f668ed6578f013951aec742b29cff61 (diff) |
mplayer_0.0+1.0rc1.bb : add start of the pxafb overlay driver from Tim Chick
This is a good start to fully working overlay video.
Diffstat (limited to 'packages/mplayer/files/pxa-video_out.patch')
-rw-r--r-- | packages/mplayer/files/pxa-video_out.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/packages/mplayer/files/pxa-video_out.patch b/packages/mplayer/files/pxa-video_out.patch new file mode 100644 index 0000000000..0c4c4feb8c --- /dev/null +++ b/packages/mplayer/files/pxa-video_out.patch @@ -0,0 +1,22 @@ +Index: MPlayer-1.0rc1/libvo/video_out.c +=================================================================== +--- MPlayer-1.0rc1.orig/libvo/video_out.c ++++ MPlayer-1.0rc1/libvo/video_out.c +@@ -87,6 +87,7 @@ 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_imageon; ++extern vo_functions_t video_out_pxa; + extern vo_functions_t video_out_svga; + extern vo_functions_t video_out_png; + extern vo_functions_t video_out_ggi; +@@ -206,6 +207,9 @@ vo_functions_t* video_out_drivers[] = + #ifdef HAVE_IMAGEON + &video_out_imageon, + #endif ++#ifdef HAVE_PXA ++ &video_out_pxa, ++#endif + #ifdef HAVE_SVGALIB + &video_out_svga, + #endif |