sys/osxvideo/: Disable the cocoa event loop since it's a huge memory leak. Should...
[platform/upstream/gst-plugins-good.git] / sys / osxvideo / cocoawindow.h
1 /* GStreamer
2  * Copyright (C) 2004 Zaheer Abbas Merali <zaheerabbas at merali dot org>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /* inspiration gained from looking at source of osx video out of xine and vlc 
21  * and is reflected in the code
22  */
23
24 #import <Cocoa/Cocoa.h>
25 #import <QuickTime/QuickTime.h>
26 #import <glib.h>
27
28 struct _GstOSXImage;
29
30 @interface GstGLView : NSOpenGLView
31 {
32     int i_effect;
33     unsigned long pi_texture;
34     float f_x;
35     float f_y;
36     int initDone;
37     char* data;
38     int width, height;
39     BOOL fullscreen;
40     NSOpenGLContext* fullScreenContext; 
41 }
42 - (void) drawQuad;
43 - (void) drawRect: (NSRect) rect;
44 - (id) initWithFrame: (NSRect) frame;
45 - (void) initTextures;
46 - (void) reloadTexture;
47 - (void) cleanUp;
48 - (void) displayTexture;
49 - (char*) getTextureBuffer;
50 - (void) setFullScreen: (BOOL) flag;
51 - (void) reshape;
52 - (void) setVideoSize: (int) w: (int) h;
53
54 @end
55
56 @interface GstOSXVideoSinkWindow: NSWindow {
57    int width, height;
58    GstGLView *gstview;
59 }
60
61 - (void) setContentSize: (NSSize) size;
62 - (GstGLView *) gstView;
63 - (id)initWithContentRect:(NSRect)contentRect styleMask:(unsigned int)styleMask backing:(NSBackingStoreType)bufferingType defer:(BOOL)flag screen:(NSScreen *)aScreen;
64 @end