blob: 2356d80960afccc845ccbfbbf4b3ae9c503353f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
--- /tmp/video_out.c 2009-01-14 16:39:38.000000000 +0100
+++ trunk/libvo/video_out.c 2009-01-14 16:40:11.000000000 +0100
@@ -86,6 +86,7 @@
extern vo_functions_t video_out_bl;
extern vo_functions_t video_out_fbdev;
extern vo_functions_t video_out_fbdev2;
+extern vo_functions_t video_out_omapfb;
extern vo_functions_t video_out_svga;
extern vo_functions_t video_out_png;
extern vo_functions_t video_out_ggi;
@@ -177,6 +178,7 @@
#ifdef CONFIG_FBDEV
&video_out_fbdev,
&video_out_fbdev2,
+ &video_out_omapfb,
#endif
#ifdef CONFIG_SVGALIB
&video_out_svga,
--- a/Makefile 2009-02-03 13:45:48.000000000 -0800
+++ b/Makefile 2009-02-03 13:45:50.000000000 -0800
@@ -551,7 +551,7 @@
SRCS_MPLAYER-$(DXR2) += libao2/ao_dxr2.c libvo/vo_dxr2.c
SRCS_MPLAYER-$(DXR3) += libvo/vo_dxr3.c
SRCS_MPLAYER-$(ESD) += libao2/ao_esd.c
-SRCS_MPLAYER-$(FBDEV) += libvo/vo_fbdev.c libvo/vo_fbdev2.c
+SRCS_MPLAYER-$(FBDEV) += libvo/vo_fbdev.c libvo/vo_fbdev2.c libvo/vo_omapfb.c libvo/yuv.S
SRCS_MPLAYER-$(GGI) += libvo/vo_ggi.c
SRCS_MPLAYER-$(GIF) += libvo/vo_gif89a.c
SRCS_MPLAYER-$(GL) += libvo/gl_common.c libvo/vo_gl.c libvo/vo_gl2.c
|