]> git.sesse.net Git - vlc/blobdiff - include/vlc/libvlc_media.h
Use var_InheritString for --decklink-video-connection.
[vlc] / include / vlc / libvlc_media.h
index 9fe438d67dbd02dda382624ae012a7fdfcdd8471..b64ec7f127244dbe8834dbbe304a16d7b6737102 100644 (file)
@@ -401,7 +401,7 @@ libvlc_media_parse( libvlc_media_t *p_md );
  * Parse a media.
  *
  * This fetches (local) meta data and tracks information.
- * The method is the asynchronous of libvlc_media_parse_async().
+ * The method is the asynchronous of libvlc_media_parse().
  *
  * To track when this is over you can listen to libvlc_MediaParsedChanged
  * event. However if the media was already parsed you will not receive this
@@ -457,7 +457,7 @@ VLC_PUBLIC_API void *libvlc_media_get_user_data( libvlc_media_t *p_md );
  *
  * @begincode
  * libvlc_media_player_t *player = libvlc_media_player_new_from_media(media);
- * libvlc_media_add_option_flag(media, "sout=\"#description\"");
+ * libvlc_media_add_option_flag(media, "sout=#description");
  * libvlc_media_player_play(player);
  * // ... wait until playing
  * libvlc_media_player_release(player);