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
3b4d57e9
Commit
3b4d57e9
authored
Aug 25, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved aout_input_t to aout_internal.h.
parent
b0936ef9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
53 additions
and
52 deletions
+53
-52
include/vlc_aout.h
include/vlc_aout.h
+0
-52
src/audio_output/aout_internal.h
src/audio_output/aout_internal.h
+53
-0
No files found.
include/vlc_aout.h
View file @
3b4d57e9
...
...
@@ -227,58 +227,6 @@ struct aout_filter_t
#define AOUT_RESAMPLING_NONE 0
#define AOUT_RESAMPLING_UP 1
#define AOUT_RESAMPLING_DOWN 2
/** an input stream for the audio output */
struct
aout_input_t
{
/* When this lock is taken, the pipeline cannot be changed by a
* third-party. */
vlc_mutex_t
lock
;
audio_sample_format_t
input
;
aout_alloc_t
input_alloc
;
/* pre-filters */
aout_filter_t
*
pp_filters
[
AOUT_MAX_FILTERS
];
int
i_nb_filters
;
aout_filter_t
*
p_playback_rate_filter
;
/* resamplers */
aout_filter_t
*
pp_resamplers
[
AOUT_MAX_FILTERS
];
int
i_nb_resamplers
;
int
i_resampling_type
;
mtime_t
i_resamp_start_date
;
int
i_resamp_start_drift
;
/* Mixer information */
audio_replay_gain_t
replay_gain
;
/* If b_restart == 1, the input pipeline will be re-created. */
bool
b_restart
;
/* If b_error == 1, there is no input pipeline. */
bool
b_error
;
/* Did we just change the output format? (expect buffer inconsistencies) */
bool
b_changed
;
/* last rate from input */
int
i_last_input_rate
;
/* */
int
i_buffer_lost
;
/* */
bool
b_paused
;
mtime_t
i_pause_date
;
/* */
bool
b_recycle_vout
;
aout_request_vout_t
request_vout
;
/* */
aout_mixer_input_t
mixer
;
};
/** an output stream for the audio output */
typedef
struct
aout_output_t
...
...
src/audio_output/aout_internal.h
View file @
3b4d57e9
...
...
@@ -87,6 +87,59 @@ struct aout_filter_owner_sys_t
aout_input_t
*
p_input
;
};
/** an input stream for the audio output */
struct
aout_input_t
{
/* When this lock is taken, the pipeline cannot be changed by a
* third-party. */
vlc_mutex_t
lock
;
audio_sample_format_t
input
;
aout_alloc_t
input_alloc
;
/* pre-filters */
aout_filter_t
*
pp_filters
[
AOUT_MAX_FILTERS
];
int
i_nb_filters
;
aout_filter_t
*
p_playback_rate_filter
;
/* resamplers */
aout_filter_t
*
pp_resamplers
[
AOUT_MAX_FILTERS
];
int
i_nb_resamplers
;
int
i_resampling_type
;
mtime_t
i_resamp_start_date
;
int
i_resamp_start_drift
;
/* Mixer information */
audio_replay_gain_t
replay_gain
;
/* If b_restart == 1, the input pipeline will be re-created. */
bool
b_restart
;
/* If b_error == 1, there is no input pipeline. */
bool
b_error
;
/* Did we just change the output format? (expect buffer inconsistencies) */
bool
b_changed
;
/* last rate from input */
int
i_last_input_rate
;
/* */
int
i_buffer_lost
;
/* */
bool
b_paused
;
mtime_t
i_pause_date
;
/* */
bool
b_recycle_vout
;
aout_request_vout_t
request_vout
;
/* */
aout_mixer_input_t
mixer
;
};
/****************************************************************************
* Prototypes
*****************************************************************************/
...
...
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