Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
da82f3f1
Commit
da82f3f1
authored
Aug 02, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove useless #include
parent
74d6bb34
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
src/audio_output/aout_internal.h
src/audio_output/aout_internal.h
+3
-5
No files found.
src/audio_output/aout_internal.h
View file @
da82f3f1
...
...
@@ -33,8 +33,6 @@ enum {
AOUT_RESAMPLING_DOWN
};
# include <vlc_aout_mixer.h>
typedef
struct
{
struct
vout_thread_t
*
(
*
pf_request_vout
)(
void
*
,
struct
vout_thread_t
*
,
...
...
@@ -113,10 +111,10 @@ void aout_FiltersDestroyPipeline( filter_t *const *, unsigned );
void
aout_FiltersPlay
(
filter_t
*
const
*
,
unsigned
,
aout_buffer_t
**
);
/* From mixer.c : */
audio_mixer_t
*
aout_MixerNew
(
vlc_object_t
*
,
const
audio_sample_format_t
*
);
struct
audio_mixer
*
aout_MixerNew
(
vlc_object_t
*
,
const
audio_sample_format_t
*
);
#define aout_MixerNew(o, f) aout_MixerNew(VLC_OBJECT(o), f)
void
aout_MixerDelete
(
audio_mixer_t
*
);
void
aout_MixerRun
(
audio_mixer_t
*
,
block_t
*
,
float
);
void
aout_MixerDelete
(
struct
audio_mixer
*
);
void
aout_MixerRun
(
struct
audio_mixer
*
,
block_t
*
,
float
);
/* From output.c : */
int
aout_OutputNew
(
audio_output_t
*
p_aout
,
...
...
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