Update theme submodule
[platform/upstream/gstreamer.git] / tutorials / xcode iOS / Tutorial 3 / GStreamerBackend.h
1 #import <Foundation/Foundation.h>
2 #import "GStreamerBackendDelegate.h"
3
4 @interface GStreamerBackend : NSObject
5
6 /* Initialization method. Pass the delegate that will take care of the UI.
7  * This delegate must implement the GStreamerBackendDelegate protocol.
8  * Pass also the UIView object that will hold the video window. */
9 -(id) init:(id) uiDelegate videoView:(UIView*) video_view;
10
11 /* Set the pipeline to PLAYING */
12 -(void) play;
13
14 /* Set the pipeline to PAUSED */
15 -(void) pause;
16
17 @end