Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
13700a22
Commit
13700a22
authored
May 30, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not #include <vlc_aout_mixer.h> from <vlc_aout.h>
parent
7eb6a150
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
2 deletions
+8
-2
include/vlc_aout.h
include/vlc_aout.h
+3
-2
modules/audio_mixer/float32.c
modules/audio_mixer/float32.c
+1
-0
modules/audio_mixer/spdif.c
modules/audio_mixer/spdif.c
+1
-0
modules/audio_mixer/trivial.c
modules/audio_mixer/trivial.c
+1
-0
src/audio_output/aout_internal.h
src/audio_output/aout_internal.h
+2
-0
No files found.
include/vlc_aout.h
View file @
13700a22
...
...
@@ -150,7 +150,6 @@ struct aout_fifo_t
};
/* FIXME to remove once aout.h is cleaned a bit more */
#include <vlc_aout_mixer.h>
#include <vlc_block.h>
/** audio output filter */
...
...
@@ -205,6 +204,8 @@ typedef struct aout_output_t
bool
b_error
;
}
aout_output_t
;
struct
aout_mixer_t
;
/** audio output thread descriptor */
struct
aout_instance_t
{
...
...
@@ -235,7 +236,7 @@ struct aout_instance_t
audio_sample_format_t
mixer_format
;
aout_alloc_t
mixer_allocation
;
float
mixer_multiplier
;
aout_mixer_t
*
p_mixer
;
struct
aout_mixer_t
*
p_mixer
;
/* Output plug-in */
aout_output_t
output
;
...
...
modules/audio_mixer/float32.c
View file @
13700a22
...
...
@@ -33,6 +33,7 @@
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_aout.h>
#include <vlc_aout_mixer.h>
/*****************************************************************************
* Local prototypes
...
...
modules/audio_mixer/spdif.c
View file @
13700a22
...
...
@@ -34,6 +34,7 @@
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_aout.h>
#include <vlc_aout_mixer.h>
/*****************************************************************************
* Local prototypes
...
...
modules/audio_mixer/trivial.c
View file @
13700a22
...
...
@@ -33,6 +33,7 @@
#include <vlc_common.h>
#include <vlc_plugin.h>
#include <vlc_aout.h>
#include <vlc_aout_mixer.h>
/*****************************************************************************
* Local prototypes
...
...
src/audio_output/aout_internal.h
View file @
13700a22
...
...
@@ -24,6 +24,8 @@
#ifndef LIBVLC_AOUT_INTERNAL_H
# define LIBVLC_AOUT_INTERNAL_H 1
# include <vlc_aout_mixer.h>
aout_buffer_t
*
aout_BufferAlloc
(
aout_alloc_t
*
allocation
,
mtime_t
microseconds
,
aout_buffer_t
*
old_buffer
);
...
...
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