Browse Source

MacOSX/Framework: Forgot that in previous commit.

Pierre d'Herbemont 17 years ago
parent
commit
09078f4787

+ 5 - 0
Headers/Public/VLCMediaPlayer.h

@@ -156,6 +156,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.
  */
  */
 - (void)fastForward;
 - (void)fastForward;

+ 3 - 0
Headers/Public/VLCStreamOutput.h

@@ -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

+ 2 - 0
Headers/Public/VLCStreamSession.h

@@ -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;