summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
authorgpoirier <gpoirier@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-05-17 20:56:49 +0000
committergpoirier <gpoirier@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-05-17 20:56:49 +0000
commit47e525833dafe0b3761cf5dbf62a4a39b9057d99 (patch)
treeb421a236f8df574ee6bb742e98d2a152cc533156 /libvo/video_out.c
parentfb1abd6b3bbd89f9d7d37c0421ebdec8bee1d1f7 (diff)
downloadmpv-47e525833dafe0b3761cf5dbf62a4a39b9057d99.tar.bz2
mpv-47e525833dafe0b3761cf5dbf62a4a39b9057d99.tar.xz
Add YUY2 and back end scaling on S3 Virge chips in combination with fbdev.
Patch by Mark Sanderson < mmp AH kiora POIS ath POIS cx> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18536 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r--libvo/video_out.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index e4fa21f5ba..f4ff125d51 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -77,6 +77,7 @@ extern vo_functions_t video_out_fsdga;
extern vo_functions_t video_out_sdl;
extern vo_functions_t video_out_3dfx;
extern vo_functions_t video_out_tdfxfb;
+extern vo_functions_t video_out_s3fb;
extern vo_functions_t video_out_null;
//extern vo_functions_t video_out_odivx;
extern vo_functions_t video_out_zr;
@@ -164,6 +165,9 @@ vo_functions_t* video_out_drivers[] =
#ifdef HAVE_TDFXFB
&video_out_tdfxfb,
#endif
+#ifdef HAVE_S3FB
+ &video_out_s3fb,
+#endif
#ifdef HAVE_3DFX
&video_out_3dfx,
#endif