12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /*****************************************************************************
- * VLCNetworkServerBrowserUPnP.h
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2015 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Tobias Conradi <videolan # tobias-conradi.de>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import "VLCNetworkServerBrowser-Protocol.h"
- #define kVLCUPnPVideoProtocolKey @"http-get:*:video/"
- #define kVLCUPnPAudioProtocolKey @"http-get:*:audio/"
- NS_ASSUME_NONNULL_BEGIN
- @class MediaServer1Device;
- @interface VLCNetworkServerBrowserUPnP : NSObject <VLCNetworkServerBrowser>
- - (id)initWithUPNPDevice:(MediaServer1Device *)device header:(NSString *)header andRootID:(NSString *)rootID NS_DESIGNATED_INITIALIZER;
- - (instancetype)init NS_UNAVAILABLE;
- @end
- @class MediaServer1BasicObject;
- @interface VLCNetworkServerBrowserItemUPnP : NSObject <VLCNetworkServerBrowserItem>
- - (instancetype)initWithBasicObject:(MediaServer1BasicObject *)basicObject device:(MediaServer1Device *)device;
- @property (nonatomic, readonly, nullable) NSString *duration;
- @property (nonatomic, readonly, nullable) NSURL *subtitleURL;
- @property (nonatomic, readonly, nullable) NSURL *thumbnailURL;
- @property (nonatomic, getter=isDownloadable, readonly) BOOL downloadable;
- // UPnP specificis
- @property (nonatomic, readonly, nullable) UIImage *image;
- @end
- #pragma mark - Multi Ressource
- @class MediaServer1ItemObject;
- @interface VLCNetworkServerBrowserUPnPMultiRessource : NSObject <VLCNetworkServerBrowser>
- - (instancetype)initWithItem:(MediaServer1ItemObject *)itemObject device:(MediaServer1Device *)device;
- @end
- @interface VLCNetworkServerBrowserItemUPnPMultiRessource : NSObject <VLCNetworkServerBrowserItem>
- - (instancetype)initWithTitle:(NSString *)title url:(NSURL *)url;
- @end
- NS_ASSUME_NONNULL_END
|