summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Pang <athp@users.sourceforge.net>2004-11-12 06:38:36 +0000
committerAndre Pang <athp@users.sourceforge.net>2004-11-12 06:38:36 +0000
commit0d7b8de026a67315e838fffddb9db16a6c21c17b (patch)
tree1653f0a46871b30d245f7442014add1b104f7f60
parentfa5e8e802837f2b9fc5a284094b10474a477f0d6 (diff)
downloadxine-lib-0d7b8de026a67315e838fffddb9db16a6c21c17b.tar.gz
xine-lib-0d7b8de026a67315e838fffddb9db16a6c21c17b.tar.bz2
If a video driver supports overlays, it should probably say so in its capabilities ...
CVS patchset: 7115 CVS date: 2004/11/12 06:38:36
-rw-r--r--src/video_out/video_out_macosx.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_out/video_out_macosx.m b/src/video_out/video_out_macosx.m
index 004e878cb..5e4be53e2 100644
--- a/src/video_out/video_out_macosx.m
+++ b/src/video_out/video_out_macosx.m
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: video_out_macosx.m,v 1.9 2004/10/20 04:58:13 athp Exp $
+ * $Id: video_out_macosx.m,v 1.10 2004/11/12 06:38:36 athp Exp $
*
* This output driver makes use of xine's objective-c video_output
* classes located in the macosx folder.
@@ -92,7 +92,7 @@ static void macosx_frame_field(vo_frame_t *vo_frame, int which_field) {
static uint32_t macosx_get_capabilities(vo_driver_t *vo_driver) {
/* both styles, country and western */
- return VO_CAP_YV12 | VO_CAP_YUY2;
+ return VO_CAP_YV12 | VO_CAP_YUY2 | VO_CAP_UNSCALED_OVERLAY;
}
static vo_frame_t *macosx_alloc_frame(vo_driver_t *vo_driver) {