소스 검색

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

Jean-Baptiste Kempf 13 년 전
부모
커밋
4014e9e326
2개의 변경된 파일0개의 추가작업 그리고 13개의 파일을 삭제
  1. 0 6
      Headers/Public/VLCMedia.h
  2. 0 7
      Sources/VLCMedia.m

+ 0 - 6
Headers/Public/VLCMedia.h

@@ -235,12 +235,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
  */
 

+ 0 - 7
Sources/VLCMedia.m

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