Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
143f92ab
Commit
143f92ab
authored
Feb 23, 2006
by
Filippo Carone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Header modified to include libvlc audio control functions
parent
39190a25
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
0 deletions
+44
-0
include/vlc/libvlc.h
include/vlc/libvlc.h
+44
-0
No files found.
include/vlc/libvlc.h
View file @
143f92ab
...
@@ -308,6 +308,50 @@ int libvlc_get_fullscreen( libvlc_input_t *, libvlc_exception_t * );
...
@@ -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
* 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