Commit 0b1d6819 authored by Olivier Aubert's avatar Olivier Aubert

Fix variable names.

They did not respect the naming convention (in the include files - the
implementation ones are already correct).
parent 7fa5b04a
......@@ -306,11 +306,11 @@ LIBVLC_API libvlc_media_t *libvlc_media_new_as_node(
* These options must be set through libvlc_new() instead.
*
* \param p_md the media descriptor
* \param ppsz_options the options (as a string)
* \param psz_options the options (as a string)
*/
LIBVLC_API void libvlc_media_add_option(
libvlc_media_t *p_md,
const char * ppsz_options );
const char * psz_options );
/**
* Add an option to the media with configurable flags.
......@@ -326,12 +326,12 @@ LIBVLC_API void libvlc_media_add_option(
* must be set on the whole libvlc instance instead.
*
* \param p_md the media descriptor
* \param ppsz_options the options (as a string)
* \param psz_options the options (as a string)
* \param i_flags the flags for this option
*/
LIBVLC_API void libvlc_media_add_option_flag(
libvlc_media_t *p_md,
const char * ppsz_options,
const char * psz_options,
unsigned i_flags );
......
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