~ubuntu-branches/ubuntu/lucid/psimedia/lucid-proposed

« back to all changes in this revision

Viewing changes to gstprovider/gstelements/osxvideo/cocoawindow.h

  • Committer: Bazaar Package Importer
  • Author(s): Ivan Borzenkov
  • Date: 2009-07-18 16:51:30 UTC
  • Revision ID: james.westby@ubuntu.com-20090718165130-7aetrkp6zivus4lk
Tags: upstream-1.0.3
ImportĀ upstreamĀ versionĀ 1.0.3

Show diffs side-by-side

added added

removed removed

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