]> git.sesse.net Git - vlc/blob - src/audio_output/aout_internal.h
Remove unused mutex
[vlc] / src / audio_output / aout_internal.h
1 /*****************************************************************************
2  * aout_internal.h : internal defines for audio output
3  *****************************************************************************
4  * Copyright (C) 2002 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Christophe Massiot <massiot@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef LIBVLC_AOUT_INTERNAL_H
25 # define LIBVLC_AOUT_INTERNAL_H 1
26
27 /* Max input rate factor (1/4 -> 4) */
28 # define AOUT_MAX_INPUT_RATE (4)
29
30 enum {
31     AOUT_RESAMPLING_NONE=0,
32     AOUT_RESAMPLING_UP,
33     AOUT_RESAMPLING_DOWN
34 };
35
36 # include <vlc_aout_mixer.h>
37
38 typedef struct
39 {
40     struct vout_thread_t  *(*pf_request_vout)( void *, struct vout_thread_t *,
41                                                video_format_t *, bool );
42     void *p_private;
43 } aout_request_vout_t;
44
45 struct filter_owner_sys_t
46 {
47     audio_output_t *p_aout;
48     aout_input_t    *p_input;
49 };
50
51 block_t *aout_FilterBufferNew( filter_t *, int );
52
53 /** an input stream for the audio output */
54 struct aout_input_t
55 {
56     audio_sample_format_t   input;
57
58     /* pre-filters */
59     filter_t *              pp_filters[AOUT_MAX_FILTERS];
60     int                     i_nb_filters;
61
62     filter_t *              p_playback_rate_filter;
63
64     /* resamplers */
65     filter_t *              pp_resamplers[AOUT_MAX_FILTERS];
66     int                     i_nb_resamplers;
67     int                     i_resampling_type;
68     mtime_t                 i_resamp_start_date;
69     int                     i_resamp_start_drift;
70
71     /* Mixer information */
72     audio_replay_gain_t     replay_gain;
73
74     /* If b_restart == 1, the input pipeline will be re-created. */
75     bool              b_restart;
76
77     /* If b_error == 1, there is no input pipeline. */
78     bool              b_error;
79
80     /* last rate from input */
81     int               i_last_input_rate;
82
83     /* */
84     int               i_buffer_lost;
85
86     /* */
87     bool              b_paused;
88     mtime_t           i_pause_date;
89
90     /* */
91     bool                b_recycle_vout;
92     aout_request_vout_t request_vout;
93
94     /* */
95     aout_mixer_input_t mixer;
96  };
97
98 /****************************************************************************
99  * Prototypes
100  *****************************************************************************/
101
102 /* From input.c : */
103 int aout_InputNew( audio_output_t * p_aout, aout_input_t * p_input, const aout_request_vout_t * );
104 int aout_InputDelete( audio_output_t * p_aout, aout_input_t * p_input );
105 void aout_InputPlay( audio_output_t * p_aout, aout_input_t * p_input,
106                      aout_buffer_t * p_buffer, int i_input_rate );
107 void aout_InputCheckAndRestart( audio_output_t * p_aout, aout_input_t * p_input );
108
109 /* From filters.c : */
110 int aout_FiltersCreatePipeline( audio_output_t *, filter_t **, int *,
111     const audio_sample_format_t *, const audio_sample_format_t * );
112 void aout_FiltersDestroyPipeline( filter_t *const *, unsigned );
113 void aout_FiltersPlay( filter_t *const *, unsigned, aout_buffer_t ** );
114
115 /* From mixer.c : */
116 int aout_MixerNew( audio_output_t * p_aout );
117 void aout_MixerDelete( audio_output_t * p_aout );
118 void aout_MixerRun( audio_output_t * p_aout, float );
119
120 /* From output.c : */
121 int aout_OutputNew( audio_output_t * p_aout,
122                     const audio_sample_format_t * p_format );
123 void aout_OutputPlay( audio_output_t * p_aout, aout_buffer_t * p_buffer );
124 void aout_OutputPause( audio_output_t * p_aout, bool, mtime_t );
125 void aout_OutputDelete( audio_output_t * p_aout );
126
127
128 /* From common.c : */
129 /* Release with vlc_object_release() */
130 audio_output_t *aout_New ( vlc_object_t * );
131 #define aout_New(a) aout_New(VLC_OBJECT(a))
132
133 void aout_FifoInit( vlc_object_t *, aout_fifo_t *, uint32_t );
134 #define aout_FifoInit(o, f, r) aout_FifoInit(VLC_OBJECT(o), f, r)
135 mtime_t aout_FifoNextStart( const aout_fifo_t * ) VLC_USED;
136 void aout_FifoPush( aout_fifo_t *, aout_buffer_t * );
137 void aout_FifoSet( aout_fifo_t *, mtime_t );
138 void aout_FifoMoveDates( aout_fifo_t *, mtime_t );
139 void aout_FifoDestroy( aout_fifo_t * p_fifo );
140 void aout_FormatsPrint( audio_output_t * p_aout, const char * psz_text, const audio_sample_format_t * p_format1, const audio_sample_format_t * p_format2 );
141 bool aout_ChangeFilterString( vlc_object_t *, audio_output_t *, const char *psz_variable, const char *psz_name, bool b_add );
142
143 /* From dec.c */
144 aout_input_t *aout_DecNew( audio_output_t *, audio_sample_format_t *,
145                    const audio_replay_gain_t *, const aout_request_vout_t * );
146 void aout_DecDelete ( audio_output_t *, aout_input_t * );
147 aout_buffer_t * aout_DecNewBuffer( aout_input_t *, size_t );
148 void aout_DecDeleteBuffer( audio_output_t *, aout_input_t *, aout_buffer_t * );
149 int aout_DecPlay( audio_output_t *, aout_input_t *, aout_buffer_t *, int i_input_rate );
150 int aout_DecGetResetLost( audio_output_t *, aout_input_t * );
151 void aout_DecChangePause( audio_output_t *, aout_input_t *, bool b_paused, mtime_t i_date );
152 void aout_DecFlush( audio_output_t *, aout_input_t * );
153 bool aout_DecIsEmpty( audio_output_t * p_aout, aout_input_t * p_input );
154
155 /* Audio output locking */
156
157 #if !defined (NDEBUG) \
158  && defined __linux__ && (defined (__i386__) || defined (__x86_64__))
159 # define AOUT_DEBUG 1
160 #endif
161
162 #ifdef AOUT_DEBUG
163 enum
164 {
165     OUTPUT_LOCK=1,
166     VOLUME_LOCK=2,
167 };
168
169 void aout_lock_check (unsigned);
170 void aout_unlock_check (unsigned);
171
172 #else
173 # define aout_lock_check( i )   (void)0
174 # define aout_unlock_check( i ) (void)0
175 #endif
176
177 static inline void aout_lock( audio_output_t *p_aout )
178 {
179     aout_lock_check( OUTPUT_LOCK );
180     vlc_mutex_lock( &p_aout->lock );
181 }
182
183 static inline void aout_unlock( audio_output_t *p_aout )
184 {
185     aout_unlock_check( OUTPUT_LOCK );
186     vlc_mutex_unlock( &p_aout->lock );
187 }
188
189 static inline void aout_lock_volume( audio_output_t *p_aout )
190 {
191     aout_lock_check( VOLUME_LOCK );
192     vlc_mutex_lock( &p_aout->volume_lock );
193 }
194
195 static inline void aout_unlock_volume( audio_output_t *p_aout )
196 {
197     aout_unlock_check( VOLUME_LOCK );
198     vlc_mutex_unlock( &p_aout->volume_lock );
199 }
200
201 /* Helpers */
202
203 /**
204  * This function will safely mark aout input to be restarted as soon as
205  * possible to take configuration changes into account */
206 static inline void AoutInputsMarkToRestart( audio_output_t *p_aout )
207 {
208     aout_lock( p_aout );
209     if( p_aout->p_input != NULL )
210         p_aout->p_input->b_restart = true;
211     aout_unlock( p_aout );
212 }
213
214 #endif /* !LIBVLC_AOUT_INTERNAL_H */