Commit 7bdcff97 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

MacOSX/Framework: Forgot that in previous commit.

parent 3144520a
...@@ -155,6 +155,11 @@ extern NSString * VLCMediaPlayerStateToString(VLCMediaPlayerState state); ...@@ -155,6 +155,11 @@ extern NSString * VLCMediaPlayerStateToString(VLCMediaPlayerState state);
*/ */
- (void)pause; - (void)pause;
/**
* Stop the playing.
*/
- (void)stop;
/** /**
* Fast forwards through the feed at the standard 1x rate. * Fast forwards through the feed at the standard 1x rate.
*/ */
......
...@@ -22,5 +22,8 @@ extern NSString * VLCDefaultStreamOutputRTP; ...@@ -22,5 +22,8 @@ extern NSString * VLCDefaultStreamOutputRTP;
+ (id)rtpBroadcastStreamOutputWithSAPAnnounce:(NSString *)announceName; + (id)rtpBroadcastStreamOutputWithSAPAnnounce:(NSString *)announceName;
+ (id)rtpBroadcastStreamOutput; + (id)rtpBroadcastStreamOutput;
+ (id)ipodStreamOutputWithFilePath:(NSString *)filePath; + (id)ipodStreamOutputWithFilePath:(NSString *)filePath;
+ (id)streamOutputWithFilePath:(NSString *)filePath;
+ (id)mpeg2StreamOutputWithFilePath:(NSString *)filePath;
+ (id)mpeg4StreamOutputWithFilePath:(NSString *)filePath;
@end @end
...@@ -15,6 +15,8 @@ ...@@ -15,6 +15,8 @@
@interface VLCStreamSession : VLCMediaPlayer { @interface VLCStreamSession : VLCMediaPlayer {
VLCStreamOutput * streamOutput; VLCStreamOutput * streamOutput;
VLCMedia * originalMedia; VLCMedia * originalMedia;
int reattemptedConnections;
BOOL isComplete;
} }
+ (id)streamSession; + (id)streamSession;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment