Commit d9ab1c71 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

VLCKit: preparsed->parsed.

parent 17e117d8
...@@ -112,8 +112,8 @@ typedef enum VLCMediaState ...@@ -112,8 +112,8 @@ typedef enum VLCMediaState
VLCTime * length; //< Cached duration of the media VLCTime * length; //< Cached duration of the media
NSMutableDictionary * metaDictionary; //< Meta data storage NSMutableDictionary * metaDictionary; //< Meta data storage
id delegate; //< Delegate object id delegate; //< Delegate object
BOOL isArtFetched; //< Value used to determine of the artwork has been preparsed BOOL isArtFetched; //< Value used to determine of the artwork has been parsed
BOOL areOthersMetaFetched; //< Value used to determine of the other meta has been preparsed BOOL areOthersMetaFetched; //< Value used to determine of the other meta has been parsed
BOOL isArtURLFetched; //< Value used to determine of the other meta has been preparsed BOOL isArtURLFetched; //< Value used to determine of the other meta has been preparsed
VLCMediaState state; //< Current state of the media VLCMediaState state; //< Current state of the media
} }
...@@ -203,7 +203,7 @@ typedef enum VLCMediaState ...@@ -203,7 +203,7 @@ typedef enum VLCMediaState
/** /**
* Determines if the media has already been preparsed. * Determines if the media has already been preparsed.
*/ */
@property (readonly) BOOL isPreparsed; @property (readonly) BOOL isParsed;
/** /**
* The URL for the receiver's media resource. * The URL for the receiver's media resource.
......
...@@ -310,9 +310,9 @@ static void HandleMediaSubItemAdded(const libvlc_event_t * event, void * self) ...@@ -310,9 +310,9 @@ static void HandleMediaSubItemAdded(const libvlc_event_t * event, void * self)
return [[length retain] autorelease]; return [[length retain] autorelease];
} }
- (BOOL)isPreparsed - (BOOL)isParsed
{ {
return libvlc_media_is_preparsed( p_md ); return libvlc_media_is_parsed( p_md );
} }
@synthesize url; @synthesize url;
......
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