|
|
|
@ -648,6 +648,8 @@ LIBVLC_API libvlc_time_t |
|
|
|
* these flags can be combined. By default, media is parsed if it's a local |
|
|
|
* file. |
|
|
|
* |
|
|
|
* \note Parsing can be aborted with libvlc_media_parse_stop(). |
|
|
|
* |
|
|
|
* \see libvlc_MediaParsedChanged |
|
|
|
* \see libvlc_media_get_meta |
|
|
|
* \see libvlc_media_tracks_get |
|
|
|
@ -667,6 +669,20 @@ libvlc_media_parse_with_options( libvlc_media_t *p_md, |
|
|
|
libvlc_media_parse_flag_t parse_flag, |
|
|
|
int timeout ); |
|
|
|
|
|
|
|
/**
|
|
|
|
* Stop the parsing of the media |
|
|
|
* |
|
|
|
* When the media parsing is stopped, the libvlc_MediaParsedChanged event will |
|
|
|
* be sent with the libvlc_media_parsed_status_timeout status. |
|
|
|
* |
|
|
|
* \see libvlc_media_parse_with_options |
|
|
|
* |
|
|
|
* \param p_md media descriptor object |
|
|
|
* \version LibVLC 3.0.0 or later |
|
|
|
*/ |
|
|
|
LIBVLC_API void |
|
|
|
libvlc_media_parse_stop( libvlc_media_t *p_md ); |
|
|
|
|
|
|
|
/**
|
|
|
|
* Get Parsed status for media descriptor object. |
|
|
|
* |
|
|
|
|