summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
authorStefano Pigozzi <stefano.pigozzi@gmail.com>2012-03-04 20:12:57 +0100
committerUoti Urpala <uau@mplayer2.org>2012-03-25 22:30:37 +0300
commitd0f0bf7fd2b021c17432de5108fd7fa3534a2a10 (patch)
tree156a679e9c58d329068672215e093f02b156a268 /libvo/video_out.c
parent24e08eb5f2e54fce46a6ff504276aa8da4bf2fa2 (diff)
downloadmpv-d0f0bf7fd2b021c17432de5108fd7fa3534a2a10.tar.bz2
mpv-d0f0bf7fd2b021c17432de5108fd7fa3534a2a10.tar.xz
vo_quartz: remove this video output
This video output is not useful anymore. It is based on Carbon to draw the mplayer window and this has been deprecated by Apple in 10.5. The upcoming 10.8 OSX release should deprecate most of Carbon, so it doesn't make sense to keep vo_quartz in the codebase when there are modern and better alternatives (vo_gl and vo_corevideo).
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r--libvo/video_out.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index 18ca3e99e9..1ac5164ada 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -117,7 +117,6 @@ extern struct vo_driver video_out_tdfx_vid;
extern struct vo_driver video_out_xvr100;
extern struct vo_driver video_out_tga;
extern struct vo_driver video_out_corevideo;
-extern struct vo_driver video_out_quartz;
extern struct vo_driver video_out_pnm;
extern struct vo_driver video_out_md5sum;
@@ -141,9 +140,6 @@ const struct vo_driver *video_out_drivers[] =
#ifdef CONFIG_COREVIDEO
&video_out_corevideo,
#endif
-#ifdef CONFIG_QUARTZ
- &video_out_quartz,
-#endif
#ifdef CONFIG_XMGA
&video_out_xmga,
#endif