annotate libvo/vo_corevideo.h @ 35080:a10c7a7a9232

Move some code around to make splitting into vo-specific and generic code easier.
author reimar
date Thu, 13 Sep 2012 18:30:12 +0000
parents 90a2e4fedfab
children 8848682f4035
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15289
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
1 /*
29210
779281d8cd80 Rename macosx video output driver to corevideo.
diego
parents: 29207
diff changeset
2 * CoreVideo video output driver
28446
7681eab10aea Add standard license headers, unify header formatting.
diego
parents: 28010
diff changeset
3 *
7681eab10aea Add standard license headers, unify header formatting.
diego
parents: 28010
diff changeset
4 * Copyright (c) 2005 Nicolas Plourde <nicolasplourde@gmail.com>
7681eab10aea Add standard license headers, unify header formatting.
diego
parents: 28010
diff changeset
5 *
7681eab10aea Add standard license headers, unify header formatting.
diego
parents: 28010
diff changeset
6 * This file is part of MPlayer.
7681eab10aea Add standard license headers, unify header formatting.
diego
parents: 28010
diff changeset
7 *
7681eab10aea Add standard license headers, unify header formatting.
diego
parents: 28010
diff changeset
8 * MPlayer is free software; you can redistribute it and/or modify
7681eab10aea Add standard license headers, unify header formatting.
diego
parents: 28010
diff changeset
9 * it under the terms of the GNU General Public License as published by
7681eab10aea Add standard license headers, unify header formatting.
diego
parents: 28010
diff changeset
10 * the Free Software Foundation; either version 2 of the License, or
7681eab10aea Add standard license headers, unify header formatting.
diego
parents: 28010
diff changeset
11 * (at your option) any later version.
7681eab10aea Add standard license headers, unify header formatting.
diego
parents: 28010
diff changeset
12 *
7681eab10aea Add standard license headers, unify header formatting.
diego
parents: 28010
diff changeset
13 * MPlayer is distributed in the hope that it will be useful,
7681eab10aea Add standard license headers, unify header formatting.
diego
parents: 28010
diff changeset
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
7681eab10aea Add standard license headers, unify header formatting.
diego
parents: 28010
diff changeset
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
7681eab10aea Add standard license headers, unify header formatting.
diego
parents: 28010
diff changeset
16 * GNU General Public License for more details.
7681eab10aea Add standard license headers, unify header formatting.
diego
parents: 28010
diff changeset
17 *
7681eab10aea Add standard license headers, unify header formatting.
diego
parents: 28010
diff changeset
18 * You should have received a copy of the GNU General Public License along
7681eab10aea Add standard license headers, unify header formatting.
diego
parents: 28010
diff changeset
19 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
7681eab10aea Add standard license headers, unify header formatting.
diego
parents: 28010
diff changeset
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
7681eab10aea Add standard license headers, unify header formatting.
diego
parents: 28010
diff changeset
21 */
15289
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
22
32126
98f341e62270 Add standard multiple inclusion guards.
diego
parents: 31760
diff changeset
23 #ifndef MPLAYER_VO_COREVIDEO_H
98f341e62270 Add standard multiple inclusion guards.
diego
parents: 31760
diff changeset
24 #define MPLAYER_VO_COREVIDEO_H
98f341e62270 Add standard multiple inclusion guards.
diego
parents: 31760
diff changeset
25
15289
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
26 #import <Cocoa/Cocoa.h>
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
27 #import <QuartzCore/QuartzCore.h>
29207
5044f4496791 Replace QuickTime.h #include with Carbon.h, which is really needed.
diego
parents: 28446
diff changeset
28 #import <Carbon/Carbon.h>
15289
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
29
25157
cf3b6015735d Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents: 24077
diff changeset
30 // MPlayer OS X VO Protocol
cf3b6015735d Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents: 24077
diff changeset
31 @protocol MPlayerOSXVOProto
cf3b6015735d Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents: 24077
diff changeset
32 - (int) startWithWidth: (bycopy int)width
cf3b6015735d Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents: 24077
diff changeset
33 withHeight: (bycopy int)height
cf3b6015735d Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents: 24077
diff changeset
34 withBytes: (bycopy int)bytes
cf3b6015735d Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents: 24077
diff changeset
35 withAspect: (bycopy int)aspect;
cf3b6015735d Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents: 24077
diff changeset
36 - (void) stop;
cf3b6015735d Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents: 24077
diff changeset
37 - (void) render;
cf3b6015735d Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents: 24077
diff changeset
38 - (void) toggleFullscreen;
cf3b6015735d Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents: 24077
diff changeset
39 - (void) ontop;
cf3b6015735d Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents: 24077
diff changeset
40 @end
cf3b6015735d Set protocol for the vo proxy used in shared-buffer mode.
ulion
parents: 24077
diff changeset
41
35068
93f15b7e12c0 Fix compilation on OSX 10.5
reimar
parents: 35067
diff changeset
42 @interface MPlayerOpenGLView : NSOpenGLView
93f15b7e12c0 Fix compilation on OSX 10.5
reimar
parents: 35067
diff changeset
43 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1060
93f15b7e12c0 Fix compilation on OSX 10.5
reimar
parents: 35067
diff changeset
44 <NSWindowDelegate>
93f15b7e12c0 Fix compilation on OSX 10.5
reimar
parents: 35067
diff changeset
45 #endif
15289
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
46 {
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
47 //Cocoa
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
48 NSWindow *window;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29210
diff changeset
49
15289
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
50 //CoreVideo
25180
48fe4b6e3bab Support double buffering, fix osd flicker.
ulion
parents: 25157
diff changeset
51 CVPixelBufferRef frameBuffers[2];
15289
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
52 CVOpenGLTextureCacheRef textureCache;
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
53 CVOpenGLTextureRef texture;
15729
55aaeb7b6aae new texture frame
nplourde
parents: 15726
diff changeset
54 NSRect textureFrame;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29210
diff changeset
55
31744
e87d7a5949b1 Fix indentation.
reimar
parents: 29575
diff changeset
56 GLfloat lowerLeft[2];
e87d7a5949b1 Fix indentation.
reimar
parents: 29575
diff changeset
57 GLfloat lowerRight[2];
e87d7a5949b1 Fix indentation.
reimar
parents: 29575
diff changeset
58 GLfloat upperRight[2];
e87d7a5949b1 Fix indentation.
reimar
parents: 29575
diff changeset
59 GLfloat upperLeft[2];
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29210
diff changeset
60
15289
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
61 BOOL mouseHide;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29210
diff changeset
62
15570
f197f4a60b20 create menu
nplourde
parents: 15327
diff changeset
63 //menu command id
f197f4a60b20 create menu
nplourde
parents: 15327
diff changeset
64 NSMenuItem *kHalfScreenCmd;
f197f4a60b20 create menu
nplourde
parents: 15327
diff changeset
65 NSMenuItem *kNormalScreenCmd;
f197f4a60b20 create menu
nplourde
parents: 15327
diff changeset
66 NSMenuItem *kDoubleScreenCmd;
f197f4a60b20 create menu
nplourde
parents: 15327
diff changeset
67 NSMenuItem *kFullScreenCmd;
f197f4a60b20 create menu
nplourde
parents: 15327
diff changeset
68 NSMenuItem *kKeepAspectCmd;
f197f4a60b20 create menu
nplourde
parents: 15327
diff changeset
69 NSMenuItem *kAspectOrgCmd;
f197f4a60b20 create menu
nplourde
parents: 15327
diff changeset
70 NSMenuItem *kAspectFullCmd;
f197f4a60b20 create menu
nplourde
parents: 15327
diff changeset
71 NSMenuItem *kAspectWideCmd;
f197f4a60b20 create menu
nplourde
parents: 15327
diff changeset
72 NSMenuItem *kPanScanCmd;
29263
0f1b5b68af32 whitespace cosmetics: Remove all trailing whitespace.
diego
parents: 29210
diff changeset
73
28010
0a0f63090e60 factorize mouse hiding and screensaver disabling code
gpoirier
parents: 25180
diff changeset
74 //timestamps for disabling screensaver and mouse hiding
0a0f63090e60 factorize mouse hiding and screensaver disabling code
gpoirier
parents: 25180
diff changeset
75 int lastMouseHide;
0a0f63090e60 factorize mouse hiding and screensaver disabling code
gpoirier
parents: 25180
diff changeset
76 int lastScreensaverUpdate;
29564
4ae3d2d7946e Use MPlayer's standard aspect handling functions in corevideo
reimar
parents: 29263
diff changeset
77 @public
4ae3d2d7946e Use MPlayer's standard aspect handling functions in corevideo
reimar
parents: 29263
diff changeset
78 float winSizeMult;
15289
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
79 }
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
80
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
81 - (BOOL) acceptsFirstResponder;
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
82 - (BOOL) becomeFirstResponder;
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
83 - (BOOL) resignFirstResponder;
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
84
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
85 //window & rendering
24076
7ac48ed8c394 Functions that do not return a value must be void
reimar
parents: 24075
diff changeset
86 - (void) preinit;
35080
a10c7a7a9232 Move some code around to make splitting into vo-specific and generic code easier.
reimar
parents: 35069
diff changeset
87 - (void) config:(uint32_t)width:(uint32_t)height:(uint32_t)flags;
15289
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
88 - (void) prepareOpenGL;
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
89 - (void) render;
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
90 - (void) reshape;
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
91 - (void) setCurrentTexture;
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
92 - (void) drawRect: (NSRect *) bounds;
15611
2f77a2da1d82 Function name cleanup
nplourde
parents: 15570
diff changeset
93
2f77a2da1d82 Function name cleanup
nplourde
parents: 15570
diff changeset
94 //vo control
15289
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
95 - (void) fullscreen: (BOOL) animate;
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
96 - (void) ontop;
15327
8e21844c8a4c enable rootwin
nplourde
parents: 15289
diff changeset
97 - (void) rootwin;
15289
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
98
15611
2f77a2da1d82 Function name cleanup
nplourde
parents: 15570
diff changeset
99 //menu
2f77a2da1d82 Function name cleanup
nplourde
parents: 15570
diff changeset
100 - (void) initMenu;
2f77a2da1d82 Function name cleanup
nplourde
parents: 15570
diff changeset
101 - (void) menuAction:(id)sender;
2f77a2da1d82 Function name cleanup
nplourde
parents: 15570
diff changeset
102
15289
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
103 //event
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
104 - (void) keyDown: (NSEvent *) theEvent;
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
105 - (void) mouseMoved: (NSEvent *) theEvent;
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
106 - (void) mouseDown: (NSEvent *) theEvent;
24077
9ce03980ed0c added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents: 24076
diff changeset
107 - (void) mouseUp: (NSEvent *) theEvent;
15289
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
108 - (void) rightMouseDown: (NSEvent *) theEvent;
24077
9ce03980ed0c added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents: 24076
diff changeset
109 - (void) rightMouseUp: (NSEvent *) theEvent;
15289
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
110 - (void) otherMouseDown: (NSEvent *) theEvent;
24077
9ce03980ed0c added double click support in vo_macosx. Patch by Ulion <ulion2002@gmail.com>
nplourde
parents: 24076
diff changeset
111 - (void) otherMouseUp: (NSEvent *) theEvent;
15289
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
112 - (void) scrollWheel: (NSEvent *) theEvent;
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
113 - (void) mouseEvent: (NSEvent *) theEvent;
e985d786c5f1 macosx core video module
nplourde
parents:
diff changeset
114 - (void) check_events;
24075
8595d6dbd0ed Text files must end with a newline
reimar
parents: 15855
diff changeset
115 @end
32126
98f341e62270 Add standard multiple inclusion guards.
diego
parents: 31760
diff changeset
116
98f341e62270 Add standard multiple inclusion guards.
diego
parents: 31760
diff changeset
117 #endif /* MPLAYER_VO_COREVIDEO_H */