X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=include%2Fvlc%2Fmediacontrol.h;h=c7e698a9dedb8419ba310f44d48c82e0bf33153f;hb=6ee1e193fd896ab9a4729fde14f009d9ce629815;hp=1768dfc015692d3c24e9a86b3f682259b32c9655;hpb=3305b049e7f587b23359a1c9047fb5763d19c1dc;p=vlc diff --git a/include/vlc/mediacontrol.h b/include/vlc/mediacontrol.h index 1768dfc015..c7e698a9de 100644 --- a/include/vlc/mediacontrol.h +++ b/include/vlc/mediacontrol.h @@ -22,7 +22,7 @@ *****************************************************************************/ /** - * \defgroup mediacontrol MediaControl + * \defgroup mediacontrol MediaControl * This is the MediaControl API, * intended to provide a generic API to movie players. * * @{ @@ -48,7 +48,7 @@ extern "C" { /** * mediacontrol_Instance is an opaque structure, defined in - * mediacontrol_internal.h. API users do not have to mess with it. + * mediacontrol_internal.h. API users do not have to mess with it. */ typedef struct mediacontrol_Instance mediacontrol_Instance; @@ -113,7 +113,7 @@ mediacontrol_new( int argc, char **argv, mediacontrol_Exception *exception ); */ VLC_PUBLIC_API mediacontrol_Instance * mediacontrol_new_from_instance( libvlc_instance_t* p_instance, - mediacontrol_Exception *exception ); + mediacontrol_Exception *exception ); /** * Get the associated libvlc instance @@ -316,7 +316,7 @@ VLC_PUBLIC_API vlc_bool_t mediacontrol_set_visual( mediacontrol_Instance *self, * \return the rate */ VLC_PUBLIC_API int mediacontrol_get_rate( mediacontrol_Instance *self, - mediacontrol_Exception *exception ); + mediacontrol_Exception *exception ); /** * Set the playing rate, in percent @@ -325,8 +325,8 @@ VLC_PUBLIC_API int mediacontrol_get_rate( mediacontrol_Instance *self, * \param exception an initialized exception pointer */ VLC_PUBLIC_API void mediacontrol_set_rate( mediacontrol_Instance *self, - const int rate, - mediacontrol_Exception *exception ); + const int rate, + mediacontrol_Exception *exception ); /** * Get current fullscreen status @@ -335,7 +335,7 @@ VLC_PUBLIC_API void mediacontrol_set_rate( mediacontrol_Instance *self, * \return the fullscreen status */ VLC_PUBLIC_API int mediacontrol_get_fullscreen( mediacontrol_Instance *self, - mediacontrol_Exception *exception ); + mediacontrol_Exception *exception ); /** * Set fullscreen status @@ -344,8 +344,8 @@ VLC_PUBLIC_API int mediacontrol_get_fullscreen( mediacontrol_Instance *self, * \param exception an initialized exception pointer */ VLC_PUBLIC_API void mediacontrol_set_fullscreen( mediacontrol_Instance *self, - const int b_fullscreen, - mediacontrol_Exception *exception ); + const int b_fullscreen, + mediacontrol_Exception *exception ); # ifdef __cplusplus }