]> git.sesse.net Git - vlc/blob - modules/audio_output/hd1000a.cpp
Improvements to preferences
[vlc] / modules / audio_output / hd1000a.cpp
1 /*****************************************************************************
2  * hd1000a.cpp : Roku HD1000 audio output
3  *****************************************************************************
4  * Copyright (C) 2004 VideoLAN
5  * $Id$
6  *
7  * Author: Jon Lech Johansen <jon-vl@nanocrew.net>
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 extern "C"
28 {
29 #include <string.h>
30 #include <stdlib.h>
31 #include <errno.h>
32
33 #include <vlc/vlc.h>
34 #include <vlc/aout.h>
35
36 #include "aout_internal.h"
37 }
38
39 #include <deschutes/libraries/hdmachinex225/PCMAudioPlayer.h>
40
41 #define FRAME_SIZE 4096
42
43 /*****************************************************************************
44  * aout_sys_t: audio output method descriptor
45  *****************************************************************************
46  * This structure is part of the audio output thread descriptor.
47  * It describes the direct sound specific properties of an audio device.
48  *****************************************************************************/
49 struct aout_sys_t
50 {
51     u32 nAlignment;
52     u32 nSizeMultiple;
53     u32 nBuffers;
54     u32 nBufferSize;
55     void ** ppBuffers;
56     u32 nNextBufferIndex;
57     PCMAudioPlayer * pPlayer;
58 };
59
60 /*****************************************************************************
61  * Local prototypes.
62  *****************************************************************************/
63 static int     Open        ( vlc_object_t * );
64 static void    Close       ( vlc_object_t * );
65
66 static void    Play        ( aout_instance_t * );
67 static int     Thread      ( aout_instance_t * );
68
69 static void    InterleaveS16( int16_t *, int16_t * );
70
71 /*****************************************************************************
72  * Module descriptor
73  *****************************************************************************/
74 vlc_module_begin();
75     set_description( N_("HD1000 audio output") );
76     set_capability( "audio output", 100 );
77     set_category( CAT_AUDIO );
78     set_subcategory( SUBCAT_AUDIO_AOUT );
79     set_callbacks( Open, Close );
80 vlc_module_end();
81
82 /*****************************************************************************
83  * Open: open a dummy audio device
84  *****************************************************************************/
85 static int Open( vlc_object_t * p_this )
86 {
87     aout_instance_t * p_aout = (aout_instance_t *)p_this;
88     struct aout_sys_t * p_sys;
89     PCMAudioPlayer * pPlayer;
90     int i_volume;
91
92     /* Allocate structure */
93     p_aout->output.p_sys = p_sys =
94         (aout_sys_t *)malloc( sizeof( aout_sys_t ) );
95     if( p_aout->output.p_sys == NULL )
96     {
97         msg_Err( p_aout, "out of memory" );
98         return VLC_EGENERIC;
99     }
100
101     /* New PCMAudioPlayer */
102     p_sys->pPlayer = pPlayer = new PCMAudioPlayer();
103     if( p_sys->pPlayer == NULL )
104     {
105         msg_Err( p_aout, "out of memory" );
106         free( p_sys );
107         return VLC_EGENERIC;
108     }
109
110     /* Get Buffer Requirements */
111     if( !pPlayer->GetBufferRequirements( p_sys->nAlignment,
112                                          p_sys->nSizeMultiple,
113                                          p_sys->nBuffers ) )
114     {
115         msg_Err( p_aout, "GetBufferRequirements failed" );
116         delete pPlayer;
117         free( p_sys );
118         return VLC_EGENERIC;
119     } 
120
121     p_sys->nBuffers = __MIN( p_sys->nBuffers, 4 );
122
123     p_sys->ppBuffers = (void **)malloc( p_sys->nBuffers * sizeof( void * ) );
124     if( p_sys->ppBuffers == NULL )
125     {
126         msg_Err( p_aout, "out of memory" );
127         delete pPlayer;
128         free( p_sys );
129         return VLC_EGENERIC;
130     }
131
132     /* Open PCMAudioPlayer */
133     p_sys->nBufferSize = FRAME_SIZE * 4;
134     if( !pPlayer->Open( p_sys->nBuffers, p_sys->nBufferSize,
135                         p_sys->ppBuffers ) )
136     {
137         msg_Err( p_aout, "Open failed" );
138         delete pPlayer;
139         free( p_sys->ppBuffers );
140         free( p_sys );
141         return VLC_EGENERIC;
142     }
143
144     p_sys->nNextBufferIndex = 0;
145
146     if( !pPlayer->SetSampleRate( p_aout->output.output.i_rate ) )
147     {
148         p_aout->output.output.i_rate = 44100;
149         if( !pPlayer->SetSampleRate( p_aout->output.output.i_rate ) )
150         {
151             msg_Err( p_aout, "SetSampleRate failed" );
152             pPlayer->Close();
153             delete pPlayer;
154             free( p_sys->ppBuffers );
155             free( p_sys );
156             return VLC_EGENERIC;
157         }
158     }
159
160     p_aout->output.output.i_format = AOUT_FMT_S16_NE;
161     p_aout->output.i_nb_samples = FRAME_SIZE;
162     p_aout->output.output.i_physical_channels
163             = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
164     p_aout->output.pf_play = Play;
165     aout_VolumeSoftInit( p_aout );
166
167     i_volume = config_GetInt( p_aout->p_vlc, "volume" );
168     pPlayer->SetVolume( (u32)__MIN( i_volume * 64, 0xFFFF ) );
169
170     /* Create thread and wait for its readiness. */
171     if( vlc_thread_create( p_aout, "aout", Thread,
172                            VLC_THREAD_PRIORITY_OUTPUT, VLC_FALSE ) )
173     {
174         msg_Err( p_aout, "cannot create OSS thread (%s)", strerror(errno) );
175         pPlayer->Close();
176         delete pPlayer;
177         free( p_sys->ppBuffers );
178         free( p_sys );
179         return VLC_ETHREAD;
180     }
181
182     return VLC_SUCCESS;
183 }
184
185 /*****************************************************************************
186  * Close: close our file
187  *****************************************************************************/
188 static void Close( vlc_object_t * p_this )
189 {
190     u32 i;
191     aout_instance_t * p_aout = (aout_instance_t *)p_this;
192     struct aout_sys_t * p_sys = p_aout->output.p_sys;
193
194     p_aout->b_die = VLC_TRUE;
195     vlc_thread_join( p_aout );
196     p_aout->b_die = VLC_FALSE;
197
198     do
199     {
200         i = p_sys->pPlayer->WaitForBuffer();
201     } while( i != 0 && i != p_sys->nBuffers );
202
203     p_sys->pPlayer->Close();
204     delete p_sys->pPlayer;
205
206     free( p_sys->ppBuffers );
207     free( p_sys );
208 }
209
210 /*****************************************************************************
211  * Play: do nothing
212  *****************************************************************************/
213 static void Play( aout_instance_t * p_aout )
214 {
215 }
216
217 /*****************************************************************************
218  * Thread: thread used to DMA the data to the device
219  *****************************************************************************/
220 static int Thread( aout_instance_t * p_aout )
221 {
222     aout_buffer_t * p_buffer;
223     struct aout_sys_t * p_sys = p_aout->output.p_sys;
224     PCMAudioPlayer * pPlayer = p_sys->pPlayer;
225
226     while( !p_aout->b_die )
227     {
228         pPlayer->WaitForBuffer();
229
230         vlc_mutex_lock( &p_aout->output_fifo_lock );
231         p_buffer = aout_FifoPop( p_aout, &p_aout->output.fifo );
232         vlc_mutex_unlock( &p_aout->output_fifo_lock );
233
234 #define i p_sys->nNextBufferIndex
235         if( p_buffer == NULL )
236         {
237             p_aout->p_vlc->pf_memset( p_sys->ppBuffers[ i ], 0,
238                                       p_sys->nBufferSize ); 
239         }
240         else
241         {
242             InterleaveS16( (int16_t *)p_buffer->p_buffer,
243                            (int16_t *)p_sys->ppBuffers[ i ] );
244             aout_BufferFree( p_buffer );
245         }
246
247         if( !pPlayer->QueueBuffer( (s16 *)p_sys->ppBuffers[ i ],
248                                    p_sys->nBufferSize / 2 ) )
249         {
250             msg_Err( p_aout, "QueueBuffer failed" );
251         } 
252
253         i = (i + 1) % p_sys->nBuffers;
254 #undef i
255     }
256
257     return VLC_SUCCESS;
258 }
259
260 /*****************************************************************************
261  * InterleaveS16: interleave samples
262  *****************************************************************************/
263 static void InterleaveS16( int16_t * p_in, int16_t * p_out )
264 {
265     for( int i = 0; i < FRAME_SIZE; i++ )
266     {
267         p_out[ i * 2 + 0 ] = p_in[ i * 2 + 1 ];
268         p_out[ i * 2 + 1 ] = p_in[ i * 2 + 0 ];
269     }
270 }