VLCStreamOutput.h 682 B

123456789101112131415161718192021222324252627
  1. //
  2. // VLCStreamOutput.h
  3. // VLCKit
  4. //
  5. // Created by Pierre d'Herbemont on 1/12/08.
  6. // Copyright 2008 __MyCompanyName__. All rights reserved.
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. extern NSString * VLCDefaultStreamOutputRTSP;
  10. extern NSString * VLCDefaultStreamOutputRTP;
  11. extern NSString * VLCDefaultStreamOutputRTP;
  12. @interface VLCStreamOutput : NSObject {
  13. NSMutableDictionary * options;
  14. }
  15. - (id)initWithOptionDictionary:(NSDictionary *)dictionary;
  16. + (id)streamOutputWithOptionDictionary:(NSDictionary *)dictionary;
  17. + (id)rtpBroadcastStreamOutputWithSAPAnnounce:(NSString *)announceName;
  18. + (id)rtpBroadcastStreamOutput;
  19. + (id)ipodStreamOutputWithFilePath:(NSString *)filePath;
  20. @end