You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
3.6 KiB
99 lines
3.6 KiB
/*****************************************************************************
|
|
* VLCInputItem.h: MacOS X interface module
|
|
*****************************************************************************
|
|
* Copyright (C) 2019 VLC authors and VideoLAN
|
|
*
|
|
* Authors: Felix Paul Kühne <fkuehne # videolan -dot- org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
|
*****************************************************************************/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "library/VLCLibraryDataTypes.h"
|
|
|
|
#import <vlc_common.h>
|
|
#import <vlc_input_item.h>
|
|
#import <vlc_tick.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
extern NSString *VLCInputItemParsingSucceeded;
|
|
extern NSString *VLCInputItemParsingFailed;
|
|
extern NSString *VLCInputItemSubtreeAdded;
|
|
extern NSString *VLCInputItemPreparsingSkipped;
|
|
extern NSString *VLCInputItemPreparsingFailed;
|
|
extern NSString *VLCInputItemPreparsingTimeOut;
|
|
extern NSString *VLCInputItemPreparsingSucceeded;
|
|
|
|
@interface VLCInputItem : NSObject<VLCLocallyManipulableItemProtocol>
|
|
|
|
- (instancetype)initWithInputItem:(struct input_item_t *)p_inputItem;
|
|
|
|
@property (readonly) struct input_item_t *vlcInputItem;
|
|
@property (readonly) NSString *MRL;
|
|
@property (readonly) NSString *decodedMRL;
|
|
@property (readonly) NSString *path;
|
|
@property (readwrite) NSString *name;
|
|
@property (readwrite) NSString *title;
|
|
@property (readwrite) NSString *artist;
|
|
@property (readwrite) NSString *albumName;
|
|
@property (readwrite) NSString *trackNumber;
|
|
@property (readwrite) NSString *genre;
|
|
@property (readwrite) NSString *copyright;
|
|
@property (readwrite) NSString *publisher;
|
|
@property (readonly) NSString *nowPlaying;
|
|
@property (readwrite) NSString *language;
|
|
@property (readwrite) NSString *date;
|
|
@property (readwrite) NSString *contentDescription;
|
|
@property (readonly) NSString *encodedBy;
|
|
@property (readonly) NSString *trackID;
|
|
@property (readonly) NSString *trackTotal;
|
|
@property (readwrite) NSString *director;
|
|
@property (readonly) NSString *season;
|
|
@property (readonly) NSString *episode;
|
|
@property (readwrite) NSString *showName;
|
|
@property (readwrite) NSString *actors;
|
|
@property (readonly) NSString *discNumber;
|
|
@property (readonly) NSString *totalNumberOfDiscs;
|
|
@property (readonly) vlc_tick_t duration;
|
|
@property (readonly) enum input_item_type_e inputType;
|
|
@property (readonly) struct input_item_node_t *subTree;
|
|
@property (readonly) NSURL *artworkURL;
|
|
@property (readonly) BOOL preparsed;
|
|
@property (readonly) BOOL isStream;
|
|
|
|
- (void)parseInputItem;
|
|
- (void)cancelParsing;
|
|
|
|
- (int)preparseInputItem;
|
|
- (int)writeMetadataToFile;
|
|
|
|
- (NSImage*)thumbnailWithSize:(NSSize)size;
|
|
|
|
@end
|
|
|
|
@interface VLCInputNode : NSObject
|
|
|
|
- (instancetype)initWithInputNode:(struct input_item_node_t *)p_inputNode;
|
|
|
|
@property (readonly) struct input_item_node_t *vlcInputItemNode;
|
|
@property (readonly, nullable) VLCInputItem *inputItem;
|
|
@property (readonly) int numberOfChildren;
|
|
@property (readonly) NSArray <VLCInputNode *> *children;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|