Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
143f92ab
Commit
143f92ab
authored
Feb 23, 2006
by
littlejohn
Browse files
Header modified to include libvlc audio control functions
parent
39190a25
Changes
1
Show whitespace changes
Inline
Side-by-side
include/vlc/libvlc.h
View file @
143f92ab
...
...
@@ -308,6 +308,50 @@ int libvlc_get_fullscreen( libvlc_input_t *, libvlc_exception_t * );
* @{
*/
/** defgroup libvlc_audio Audio
* \ingroup libvlc
* LibVLC Audio handling
* @{
*/
/**
* Get current mute status
* \param p_instance libvlc instance
* \param p_exception an initialized exception
* \return the mute status (boolean)
*/
vlc_bool_t
libvlc_audio_get_mute
(
libvlc_instance_t
*
,
libvlc_exception_t
*
);
/**
* Set mute status
* \param p_instance libvlc instance
* \param status If status is VLC_TRUE then mute, otherwise unmute
* \param p_exception an initialized exception
* \return void
*/
void
libvlc_audio_set_mute
(
libvlc_instance_t
*
,
vlc_bool_t
,
libvlc_exception_t
*
);
/**
* Get current audio level
* \param p_instance libvlc instance
* \param p_exception an initialized exception
* \return the audio level (int)
*/
int
libvlc_audio_volume_get
(
libvlc_instance_t
*
,
libvlc_exception_t
*
);
/**
* Set current audio level
* \param p_instance libvlc instance
* \param i_volume the volume (int)
* \param p_exception an initialized exception
* \return void
*/
void
libvlc_audio_volume_set
(
libvlc_instance_t
*
,
int
,
libvlc_exception_t
*
);
/** @} */
/**
* Add a broadcast, with one input
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment