Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
89d0dfc8
Commit
89d0dfc8
authored
Mar 28, 2012
by
Ludovic Fauvet
Committed by
Rémi Denis-Courmont
Mar 29, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Export aout_Mixer functions to modules
Signed-off-by:
Rémi Denis-Courmont
<
remi@remlab.net
>
parent
02293a09
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
3 deletions
+9
-3
include/vlc_aout_mixer.h
include/vlc_aout_mixer.h
+4
-0
src/audio_output/aout_internal.h
src/audio_output/aout_internal.h
+1
-3
src/audio_output/dec.c
src/audio_output/dec.c
+1
-0
src/libvlccore.sym
src/libvlccore.sym
+3
-0
No files found.
include/vlc_aout_mixer.h
View file @
89d0dfc8
...
@@ -48,6 +48,10 @@ struct audio_mixer
...
@@ -48,6 +48,10 @@ struct audio_mixer
void
(
*
mix
)(
audio_mixer_t
*
,
block_t
*
,
float
);
/**< Amplifier */
void
(
*
mix
)(
audio_mixer_t
*
,
block_t
*
,
float
);
/**< Amplifier */
};
};
VLC_API
audio_mixer_t
*
aout_MixerNew
(
vlc_object_t
*
,
vlc_fourcc_t
)
VLC_USED
;
VLC_API
void
aout_MixerDelete
(
audio_mixer_t
*
);
VLC_API
void
aout_MixerRun
(
audio_mixer_t
*
,
block_t
*
,
float
);
#ifdef __cplusplus
#ifdef __cplusplus
}
}
#endif
#endif
...
...
src/audio_output/aout_internal.h
View file @
89d0dfc8
...
@@ -141,10 +141,8 @@ void aout_FiltersDestroyPipeline( filter_t *const *, unsigned );
...
@@ -141,10 +141,8 @@ void aout_FiltersDestroyPipeline( filter_t *const *, unsigned );
void
aout_FiltersPlay
(
filter_t
*
const
*
,
unsigned
,
aout_buffer_t
**
);
void
aout_FiltersPlay
(
filter_t
*
const
*
,
unsigned
,
aout_buffer_t
**
);
/* From mixer.c : */
/* From mixer.c : */
struct
audio_mixer
*
aout_MixerNew
(
vlc_object_t
*
,
vlc_fourcc_t
);
#define aout_MixerNew(o, f) aout_MixerNew(VLC_OBJECT(o), f)
#define aout_MixerNew(o, f) aout_MixerNew(VLC_OBJECT(o), f)
void
aout_MixerDelete
(
struct
audio_mixer
*
);
void
aout_MixerRun
(
struct
audio_mixer
*
,
block_t
*
,
float
);
float
aout_ReplayGainSelect
(
vlc_object_t
*
,
const
char
*
,
float
aout_ReplayGainSelect
(
vlc_object_t
*
,
const
char
*
,
const
audio_replay_gain_t
*
);
const
audio_replay_gain_t
*
);
#define aout_ReplayGainSelect(o, s, g) \
#define aout_ReplayGainSelect(o, s, g) \
...
...
src/audio_output/dec.c
View file @
89d0dfc8
...
@@ -32,6 +32,7 @@
...
@@ -32,6 +32,7 @@
#include <vlc_common.h>
#include <vlc_common.h>
#include <vlc_aout.h>
#include <vlc_aout.h>
#include <vlc_aout_mixer.h>
#include <vlc_input.h>
#include <vlc_input.h>
#include <vlc_atomic.h>
#include <vlc_atomic.h>
...
...
src/libvlccore.sym
View file @
89d0dfc8
...
@@ -17,6 +17,9 @@ aout_filter_RequestVout
...
@@ -17,6 +17,9 @@ aout_filter_RequestVout
aout_FormatPrepare
aout_FormatPrepare
aout_FormatPrint
aout_FormatPrint
aout_FormatPrintChannels
aout_FormatPrintChannels
aout_MixerDelete
aout_MixerNew
aout_MixerRun
aout_PacketInit
aout_PacketInit
aout_PacketDestroy
aout_PacketDestroy
aout_PacketPlay
aout_PacketPlay
...
...
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