Page 1 of 1

Explain me libvlc_media_add_option_flag(..) API with example in libVlc

Posted: 13 Jun 2018 13:58
by ChandruVlc
Hello,

Can any one explain me what are all the parameteres we can pass to the following API in libVlc.

LIBVLC_API void libvlc_media_add_option_flag(
libvlc_media_t *p_md,
const char * psz_options,
unsigned i_flags );

I don't know what each of these arguments meaning. Please explain me ? possible with example ?

Re: Explain me libvlc_media_add_option_flag(..) API with example in libVlc

Posted: 10 Jul 2018 05:12
by mfkl
Hi,

Have a look at the doc https://www.videolan.org/developers/vlc ... 796160fd3a

And also the code/comments: https://github.com/videolan/vlc/blob/07 ... dia.c#L532

From there you can find code using that function with a search ;)