Selaa lähdekoodia

VLCKit: remove the prefix from the parameter value and take into account null values for options that do not require a value.

Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
Sebastien Zwickert 15 vuotta sitten
vanhempi
commit
78692d431b
1 muutettua tiedostoa jossa 5 lisäystä ja 1 poistoa
  1. 5 1
      Sources/VLCMedia.m

+ 5 - 1
Sources/VLCMedia.m

@@ -357,7 +357,11 @@ static void HandleMediaSubItemAdded(const libvlc_event_t * event, void * self)
 
     for( NSString * key in [options allKeys] )
     {
-        libvlc_media_add_option(p_md, [[NSString stringWithFormat:@"%@=#%@", key, [options objectForKey:key]] UTF8String]);
+        if ( [options objectForKey:key] != [NSNull null] )
+            libvlc_media_add_option(p_md, [[NSString stringWithFormat:@"%@=%@", key, [options objectForKey:key]] UTF8String]);
+        else
+            libvlc_media_add_option(p_md, [[NSString stringWithFormat:@"%@", key] UTF8String]);
+
     }
     return [VLCMedia mediaWithLibVLCMediaDescriptor:p_md];
 }