mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-03 15:06:34 +00:00
17 lines
No EOL
487 B
Objective-C
17 lines
No EOL
487 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import "GStreamerBackendDelegate.h"
|
|
|
|
@interface GStreamerBackend : NSObject
|
|
|
|
/* Initialization method. Pass the delegate that will take care of the UI.
|
|
* This delegate must implement the GStreamerBackendDelegate protocol.
|
|
* Pass also the UIView object that will hold the video window. */
|
|
-(id) init:(id) uiDelegate videoView:(UIView*) video_view;
|
|
|
|
/* Set the pipeline to PLAYING */
|
|
-(void) play;
|
|
|
|
/* Set the pipeline to PAUSED */
|
|
-(void) pause;
|
|
|
|
@end |