Commit 65708116 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

VLCKit: remove (void)setValue:(id)value forMeta:(NSString *)VLCMetaInformation;

parent 5f9c8363
......@@ -234,12 +234,6 @@ typedef enum VLCMediaState
*/
@property (readonly) VLCMediaState state;
/**
* Sets a value of the metaDictionary
*/
- (void)setValue:(id)value forMeta:(NSString *)VLCMetaInformation;
/**
* Tracks information NSDictionary Possible Keys
*/
......
......@@ -226,13 +226,6 @@ static void HandleMediaParsedChanged(const libvlc_event_t * event, void * self)
return self;
}
- (void)setValue:(NSString *)value forMeta:(NSString *)meta
{
libvlc_meta_t metaName = [VLCMedia stringToMetaType:meta];
NSAssert(metaName >= 0, @"Invalid meta");
libvlc_media_set_meta(p_md, metaName, [value UTF8String]);
}
- (void)dealloc
{
libvlc_event_manager_t * p_em = libvlc_media_event_manager(p_md);
......
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