]> git.sesse.net Git - vlc/blob - modules/audio_output/auhal.c
* Sometimes we get audio now, but the dating of the to be retrieved buffers needs...
[vlc] / modules / audio_output / auhal.c
1 /*****************************************************************************
2  * auhal.c: AUHAL output plugin
3  *****************************************************************************
4  * Copyright (C) 2005 VideoLAN
5  * $Id: coreaudio.c 10101 2005-03-02 16:47:31Z robux4 $
6  *
7  * Authors: Derk-Jan Hartman <hartman at videolan dot org>
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 #include <string.h>
28 #include <stdlib.h>
29
30 #include <vlc/vlc.h>
31 #include <vlc/aout.h>
32
33 #include "aout_internal.h"
34
35 #include <CoreAudio/CoreAudio.h>
36 #include <CoreAudio/CoreAudioTypes.h>
37 #include <AudioUnit/AudioUnitProperties.h>
38 #include <AudioUnit/AudioUnitParameters.h>
39 #include <AudioUnit/AudioOutputUnit.h>
40 #include <AudioToolbox/AudioFormat.h>
41
42 #define STREAM_FORMAT_MSG( pre, sfm ) \
43     pre ":\nsamplerate: [%ld]\nFormatID: [%4.4s]\nFormatFlags: [%ld]\nBypesPerPacket: [%ld]\nFramesPerPacket: [%ld]\nBytesPerFrame: [%ld]\nChannelsPerFrame: [%ld]\nBitsPerChannel[%ld]", \
44     (UInt32)sfm.mSampleRate, (char *)&sfm.mFormatID, \
45     sfm.mFormatFlags, sfm.mBytesPerPacket, \
46     sfm.mFramesPerPacket, sfm.mBytesPerFrame, \
47     sfm.mChannelsPerFrame, sfm.mBitsPerChannel
48
49
50 /*****************************************************************************
51  * aout_sys_t: private audio output method descriptor
52  *****************************************************************************
53  * This structure is part of the audio output thread descriptor.
54  * It describes the CoreAudio specific properties of an output thread.
55  *****************************************************************************/
56 struct aout_sys_t
57 {
58     AudioDeviceID               i_default_dev;  /* Keeps DeviceID of defaultOutputDevice */
59     AudioDeviceID               i_selected_dev; /* Keeps DeviceID of the selected device */
60     UInt32                      i_devices;      /* Number of CoreAudio Devices */
61     vlc_bool_t                  b_supports_digital;/* Does the currently selected device support digital mode? */
62     vlc_bool_t                  b_digital;      /* Are we running in digital mode? */
63     Component                   au_component;   /* The Audiocomponent we use */
64     AudioUnit                   au_unit;        /* The AudioUnit we use */
65     mtime_t                     clock_diff;
66 };
67
68 /*****************************************************************************
69  * Local prototypes.
70  *****************************************************************************/
71 static int      Open                    ( vlc_object_t * );
72 static void     Close                   ( vlc_object_t * );
73
74 static void     Play                    ( aout_instance_t *);
75
76 static int      DevicesList             ( aout_instance_t * );
77 static int      DeviceDigitalMode       ( aout_instance_t *, AudioDeviceID );
78 static int      DigitalInit             ( aout_instance_t * );
79
80 static OSStatus RenderCallbackAnalog    ( vlc_object_t *, AudioUnitRenderActionFlags *, const AudioTimeStamp *,
81                                           unsigned int, unsigned int, AudioBufferList *);
82 static OSStatus HardwareListener        ( AudioHardwarePropertyID, void *);
83
84 /*****************************************************************************
85  * Module descriptor
86  *****************************************************************************/
87 #define ADEV_TEXT N_("Audio Device")
88 #define ADEV_LONGTEXT N_("Choose a number corresponding to the number of an " \
89     "audio device, as listed in your 'Audio Device' menu. This device will " \
90     "then be used by default for audio playback.")
91
92 vlc_module_begin();
93     set_shortname( "auhal" );
94     set_description( _("HAL AudioUnit output") );
95     set_capability( "audio output", 50 );
96     set_category( CAT_AUDIO );
97     set_subcategory( SUBCAT_AUDIO_AOUT );
98     set_callbacks( Open, Close );
99     //add_integer( "coreaudio-dev", -1, NULL, ADEV_TEXT, ADEV_LONGTEXT, VLC_FALSE ); 
100 vlc_module_end();
101
102 /*****************************************************************************
103  * Open: open a HAL AudioUnit
104  *****************************************************************************/
105 static int Open( vlc_object_t * p_this )
106 {
107     OSStatus                err = noErr;
108     ComponentDescription    desc;
109     UInt32                  i_param_size,i;
110     struct aout_sys_t       *p_sys;
111     vlc_value_t             val;
112     aout_instance_t         *p_aout = (aout_instance_t *)p_this;
113
114     /* Allocate structure */
115     p_sys = (struct aout_sys_t *)malloc( sizeof( struct aout_sys_t ) );
116     if( p_sys == NULL )
117     {
118         msg_Err( p_aout, "out of memory" );
119         return( VLC_ENOMEM );
120     }
121
122     memset( p_sys, 0, sizeof( struct aout_sys_t ) );
123
124     p_sys->b_digital = VLC_FALSE; /* We assume we are not digital */
125
126     p_aout->output.p_sys = p_sys;
127     p_aout->output.pf_play = Play;
128     
129     aout_FormatPrint( p_aout, "VLC is looking for:\n", (audio_sample_format_t *)&p_aout->output.output );
130     
131     /* Build a list of devices */
132     if( var_Type( p_aout, "audio-device" ) == 0 )
133     {
134         DevicesList( p_aout );
135         /*if( DevicesList( p_aout ) != VLC_SUCCESS );
136         {
137             msg_Err( p_aout, "DevicesList failed" );
138             free( p_sys );
139             return VLC_EGENERIC;
140         }*/
141     }
142     
143     /* What device do we want? */
144     if( var_Get( p_aout, "audio-device", &val ) < 0 )
145     {
146         msg_Err( p_aout, "audio-device var does not exist" );
147         free( p_sys );
148         return( VLC_ENOVAR );
149     }
150     p_sys->i_selected_dev = val.i_int;
151
152     /* what is vlc format? if digital, take digital route else AUHAL route */
153     DeviceDigitalMode( p_aout, p_sys->i_selected_dev );
154     /*if( DeviceDigitalMode( p_aout, p_sys->i_selected_dev ) != VLC_SUCCESS );
155     {
156         msg_Err( p_aout, "DeviceDigitalMode failed" );
157         free( p_sys );
158         return VLC_EGENERIC;
159     }
160     */
161     if( AOUT_FMT_NON_LINEAR( &p_aout->output.output ) && p_sys->b_supports_digital )
162     {
163         p_sys->b_digital = VLC_TRUE;
164         p_aout->output.output.i_format = VLC_FOURCC('s','p','d','i');
165         msg_Dbg( p_aout, "we found a digital stream, and we WANT a digital stream" );
166     }
167     else if( AOUT_FMT_NON_LINEAR( &p_aout->output.output ) && !p_sys->b_supports_digital )
168     {
169         msg_Dbg( p_aout, "we had requested a digital stream, but it's not possible for this device" );
170     }
171  
172     /* If analog only start setting up AUHAL */
173
174     /* Lets go find our Component */
175     desc.componentType = kAudioUnitType_Output;
176     desc.componentSubType = kAudioUnitSubType_HALOutput;
177     desc.componentManufacturer = kAudioUnitManufacturer_Apple;
178     desc.componentFlags = 0;
179     desc.componentFlagsMask = 0;
180
181     p_sys->au_component = FindNextComponent( NULL, &desc );
182     if( p_sys->au_component == NULL )
183     {
184         msg_Err( p_aout, "we cannot find our HAL component" );
185         free( p_sys );
186         return VLC_EGENERIC;
187     }
188
189     err = OpenAComponent( p_sys->au_component, &p_sys->au_unit );
190     if( err )
191     {
192         
193         msg_Err( p_aout, "we cannot find our HAL component" );
194         free( p_sys );
195         return VLC_EGENERIC;
196     }
197     
198     /* Enable IO for the component */
199     
200     /* Set the device */
201     verify_noerr( AudioUnitSetProperty( p_sys->au_unit,
202                          kAudioOutputUnitProperty_CurrentDevice,
203                          kAudioUnitScope_Global,
204                          0,
205                          &p_sys->i_selected_dev,
206                          sizeof(p_sys->i_selected_dev)));
207                          
208     /* Get the current format */
209     AudioStreamBasicDescription DeviceFormat;
210     
211     i_param_size = sizeof(AudioStreamBasicDescription);
212
213     verify_noerr( AudioUnitGetProperty( p_sys->au_unit,
214                                    kAudioUnitProperty_StreamFormat,
215                                    kAudioUnitScope_Input,
216                                    0,
217                                    &DeviceFormat,
218                                    &i_param_size ));
219                                    
220     msg_Dbg( p_aout, STREAM_FORMAT_MSG( "current format is " , DeviceFormat ) );
221
222     /* Get the channel layout */
223     AudioChannelLayout *layout;
224     verify_noerr( AudioUnitGetPropertyInfo( p_sys->au_unit,
225                                    kAudioDevicePropertyPreferredChannelLayout,
226                                    kAudioUnitScope_Output,
227                                    0,
228                                    &i_param_size,
229                                    NULL ));
230
231     layout = (AudioChannelLayout *)malloc( i_param_size);
232
233     verify_noerr( AudioUnitGetProperty( p_sys->au_unit,
234                                    kAudioDevicePropertyPreferredChannelLayout,
235                                    kAudioUnitScope_Output,
236                                    0,
237                                    layout,
238                                    &i_param_size ));
239                                    
240     /* Lets fill out the ChannelLayout */
241     if( layout->mChannelLayoutTag == kAudioChannelLayoutTag_UseChannelBitmap)
242     {
243         msg_Dbg( p_aout, "bitmap defined channellayout" );
244         verify_noerr( AudioFormatGetProperty( kAudioFormatProperty_ChannelLayoutForBitmap,
245                                 sizeof( UInt32), &layout->mChannelBitmap,
246                                 &i_param_size,
247                                 layout ));
248     }
249     else if( layout->mChannelLayoutTag != kAudioChannelLayoutTag_UseChannelDescriptions )
250     {
251         msg_Dbg( p_aout, "layouttags defined channellayout" );
252         verify_noerr( AudioFormatGetProperty( kAudioFormatProperty_ChannelLayoutForTag,
253                                 sizeof( AudioChannelLayoutTag ), &layout->mChannelLayoutTag,
254                                 &i_param_size,
255                                 layout ));
256     }
257
258     msg_Dbg( p_aout, "Layout of AUHAL has %d channels" , (int)layout->mNumberChannelDescriptions );
259     
260     p_aout->output.output.i_physical_channels = 0;
261     for( i = 0; i < layout->mNumberChannelDescriptions; i++ )
262     {
263         msg_Dbg( p_aout, "This is channel: %d", (int)layout->mChannelDescriptions[i].mChannelLabel );
264
265         switch( layout->mChannelDescriptions[i].mChannelLabel )
266         {
267             case kAudioChannelLabel_Left:
268                 p_aout->output.output.i_physical_channels |= AOUT_CHAN_LEFT;
269                 continue;
270             case kAudioChannelLabel_Right:
271                 p_aout->output.output.i_physical_channels |= AOUT_CHAN_RIGHT;
272                 continue;
273             case kAudioChannelLabel_Center:
274                 p_aout->output.output.i_physical_channels |= AOUT_CHAN_CENTER;
275                 continue;
276             case kAudioChannelLabel_LFEScreen:
277                 p_aout->output.output.i_physical_channels |= AOUT_CHAN_LFE;
278                 continue;
279             case kAudioChannelLabel_LeftSurround:
280                 p_aout->output.output.i_physical_channels |= AOUT_CHAN_REARLEFT;
281                 continue;
282             case kAudioChannelLabel_RightSurround:
283                 p_aout->output.output.i_physical_channels |= AOUT_CHAN_REARRIGHT;
284                 continue;
285             case kAudioChannelLabel_LeftCenter:
286                 p_aout->output.output.i_physical_channels |= AOUT_CHAN_MIDDLELEFT;
287                 continue;
288             case kAudioChannelLabel_RightCenter:
289                 p_aout->output.output.i_physical_channels |= AOUT_CHAN_MIDDLERIGHT;
290                 continue;
291             case kAudioChannelLabel_CenterSurround:
292                 p_aout->output.output.i_physical_channels |= AOUT_CHAN_REARCENTER;
293                 continue;
294             default:
295                 msg_Warn( p_aout, "Unrecognized channel form provided by driver: %d", (int)layout->mChannelDescriptions[i].mChannelLabel );
296                 p_aout->output.output.i_physical_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
297                 break;
298         }
299     }
300     free( layout );
301
302     msg_Dbg( p_aout, "defined %d physical channels for vlc core", aout_FormatNbChannels( &p_aout->output.output ) );
303     msg_Dbg( p_aout, "%s", aout_FormatPrintChannels( &p_aout->output.output ));
304
305     /* Set up the format to be used */
306     DeviceFormat.mSampleRate = p_aout->output.output.i_rate;
307     DeviceFormat.mFormatID = kAudioFormatLinearPCM;
308
309     /* We use float 32. It's the best supported format by both VLC and Coreaudio */
310     p_aout->output.output.i_format = VLC_FOURCC( 'f','l','3','2');
311     DeviceFormat.mFormatFlags = kAudioFormatFlagsNativeFloatPacked;
312     DeviceFormat.mBitsPerChannel = 32;
313     DeviceFormat.mChannelsPerFrame = aout_FormatNbChannels( &p_aout->output.output );
314     
315     /* Calculate framesizes and stuff */
316     aout_FormatPrepare( &p_aout->output.output );
317     DeviceFormat.mFramesPerPacket = 1;
318     DeviceFormat.mBytesPerFrame = DeviceFormat.mBitsPerChannel * DeviceFormat.mChannelsPerFrame / 8;
319     DeviceFormat.mBytesPerPacket = DeviceFormat.mBytesPerFrame * DeviceFormat.mFramesPerPacket;
320  
321     i_param_size = sizeof(AudioStreamBasicDescription);
322     /* Set desired format (Use CAStreamBasicDescription )*/
323     verify_noerr( AudioUnitSetProperty( p_sys->au_unit,
324                                    kAudioUnitProperty_StreamFormat,
325                                    kAudioUnitScope_Input,
326                                    0,
327                                    &DeviceFormat,
328                                    i_param_size ));
329                                    
330     msg_Dbg( p_aout, STREAM_FORMAT_MSG( "we set the AU format: " , DeviceFormat ) );
331     
332     /* Retrieve actual format??? */
333     verify_noerr( AudioUnitGetProperty( p_sys->au_unit,
334                                    kAudioUnitProperty_StreamFormat,
335                                    kAudioUnitScope_Input,
336                                    0,
337                                    &DeviceFormat,
338                                    &i_param_size ));
339                                    
340     msg_Dbg( p_aout, STREAM_FORMAT_MSG( "the actual set AU format is " , DeviceFormat ) );
341     
342     
343     aout_VolumeSoftInit( p_aout );
344
345     /* Let's pray for the following operation to be atomic... */
346     p_sys->clock_diff = - (mtime_t)
347         AudioConvertHostTimeToNanos( AudioGetCurrentHostTime() ) / 1000; 
348     p_sys->clock_diff += mdate();
349
350     /* set the IOproc callback */
351     AURenderCallbackStruct input;
352     input.inputProc = (AURenderCallback) RenderCallbackAnalog;
353     input.inputProcRefCon = p_aout;
354     
355     verify_noerr( AudioUnitSetProperty( p_sys->au_unit,
356                             kAudioUnitProperty_SetRenderCallback,
357                             kAudioUnitScope_Input,
358                             0, &input, sizeof( input ) ) );
359
360     input.inputProc = (AURenderCallback) RenderCallbackAnalog;
361     input.inputProcRefCon = p_aout;
362     
363     /* AU initiliaze */
364     verify_noerr( AudioUnitInitialize(p_sys->au_unit) );
365
366     verify_noerr( AudioOutputUnitStart(p_sys->au_unit) );
367     return( VLC_SUCCESS );
368 }
369
370 /*****************************************************************************
371  * Close: Close HAL AudioUnit
372  *****************************************************************************/
373 static void Close( vlc_object_t * p_this )
374 {
375     aout_instance_t     *p_aout = (aout_instance_t *)p_this;
376     struct aout_sys_t   *p_sys = p_aout->output.p_sys;
377     
378     if( p_sys->au_unit )
379     {
380         verify_noerr( AudioOutputUnitStop( p_sys->au_unit ) );
381         verify_noerr( AudioUnitUninitialize( p_sys->au_unit ) );
382         verify_noerr( CloseComponent( p_sys->au_unit ) );
383     }
384     free( p_sys );
385 }
386
387 /*****************************************************************************
388  * Play: nothing to do
389  *****************************************************************************/
390 static void Play( aout_instance_t * p_aout )
391 {
392 }
393
394
395 /*****************************************************************************
396  * DevicesList
397  *****************************************************************************/
398 static int DevicesList( aout_instance_t * p_aout )
399 {
400     OSStatus            err = noErr;
401     UInt32              i, i_param_size;
402     AudioDeviceID       devid_def;
403     AudioDeviceID       *p_devices = NULL;
404     vlc_value_t         val, text;
405
406     struct aout_sys_t   *p_sys = p_aout->output.p_sys;
407
408     /* Get number of devices */
409     err = AudioHardwareGetPropertyInfo( kAudioHardwarePropertyDevices,
410                                         &i_param_size, NULL );
411     if( err != noErr )
412     {
413         msg_Err( p_aout, "could not get number of devices: [%4.4s]", (char *)&err );
414         goto error;
415     }
416
417     p_sys->i_devices = i_param_size / sizeof( AudioDeviceID );
418
419     if( p_sys->i_devices < 1 )
420     {
421         msg_Err( p_aout, "no devices found" );
422         goto error;
423     }
424
425     msg_Dbg( p_aout, "system has [%ld] device(s)", p_sys->i_devices );
426
427     /* Allocate DeviceID array */
428     p_devices = (AudioDeviceID *)malloc( i_param_size );
429     if( p_devices == NULL )
430     {
431         msg_Err( p_aout, "out of memory" );
432         goto error;
433     }
434
435     /* Populate DeviceID array */
436     err = AudioHardwareGetProperty( kAudioHardwarePropertyDevices,
437                                     &i_param_size, (void *)p_devices );
438     if( err != noErr )
439     {
440         msg_Err( p_aout, "could not get the device ID's: [%4.4s]", (char *)&err );
441         goto error;
442     }
443
444     /* Find the ID of the default Device */
445     i_param_size = sizeof( AudioDeviceID );
446     err = AudioHardwareGetProperty( kAudioHardwarePropertyDefaultOutputDevice,
447                                     &i_param_size, (void *)&devid_def );
448     if( err != noErr )
449     {
450         msg_Err( p_aout, "could not get default audio device: [%4.4s]", (char *)&err );
451         goto error;
452     }
453     p_sys->i_default_dev = devid_def;
454     
455     var_Create( p_aout, "audio-device", VLC_VAR_INTEGER|VLC_VAR_HASCHOICE );
456     text.psz_string = _("Audio Device");
457     var_Change( p_aout, "audio-device", VLC_VAR_SETTEXT, &text, NULL );
458     
459     for( i = 0; i < p_sys->i_devices; i++ )
460     {
461         char psz_devuid[1024];
462         char psz_name[1024];
463         CFStringRef devUID;
464             
465         i_param_size = sizeof psz_name;
466         err = AudioDeviceGetProperty(
467                     p_devices[i], 0, VLC_FALSE,
468                     kAudioDevicePropertyDeviceName,
469                     &i_param_size, psz_name);
470         if( err )
471             goto error;
472
473         i_param_size = sizeof(CFStringRef);    
474         err = AudioDeviceGetProperty(
475                     p_devices[i], 0, VLC_FALSE,
476                     kAudioDevicePropertyDeviceUID,
477                     &i_param_size, &devUID);
478         if( err )
479             goto error;
480
481         CFStringGetCString( devUID, psz_devuid, sizeof psz_devuid, CFStringGetSystemEncoding() );
482         msg_Dbg( p_aout, "DevID: %lu  DevName: %s  DevUID: %s", p_devices[i], psz_name, psz_devuid );
483         CFRelease( devUID );
484
485         val.i_int = (int) p_devices[i];
486         text.psz_string = psz_name;
487         var_Change( p_aout, "audio-device", VLC_VAR_ADDCHOICE, &val, &text );
488         if( devid_def == p_devices[i] )
489         {
490             var_Change( p_aout, "audio-device", VLC_VAR_SETDEFAULT, &val, NULL );
491             var_Set( p_aout, "audio-device", val );
492         }
493     }
494     var_AddCallback( p_aout, "audio-device", aout_ChannelsRestart, NULL );
495     
496     /* attach a Listener so that we are notified of a change in the Device setup */
497     /*err = AudioHardwareAddPropertyListener( kAudioHardwarePropertyDevices,
498                                             HardwareListener, 
499                                             (void *)p_aout );
500     if( err )
501         goto error;*/
502     
503     msg_Dbg( p_aout, "succesful finish of deviceslist" );
504     if( p_devices ) free( p_devices );
505     return (VLC_SUCCESS);
506
507 error:
508     var_Destroy( p_aout, "audio-device" );
509     if( p_devices ) free( p_devices );
510     return VLC_EGENERIC;
511 }
512
513 /*****************************************************************************
514  * DeviceDigitalMode: Check i_dev_id for digital stream support.
515  *****************************************************************************/
516 static int DeviceDigitalMode( aout_instance_t *p_aout, AudioDeviceID i_dev_id )
517 {
518     OSStatus                    err = noErr;
519     UInt32                      i_param_size;
520     AudioStreamBasicDescription *p_format_list;
521     int                         i, i_formats;
522     struct aout_sys_t           *p_sys = p_aout->output.p_sys;
523     
524     p_sys->b_supports_digital = VLC_FALSE;
525     
526     err = AudioDeviceGetPropertyInfo( i_dev_id, 0, FALSE,
527                                       kAudioDevicePropertyStreamFormats,
528                                       &i_param_size, NULL );
529     if( err != noErr )
530     {
531         msg_Err( p_aout, "could not get number of streamsformats: [%4.4s]", (char *)&err );
532         return( VLC_EGENERIC );
533     }
534     
535     i_formats = i_param_size / sizeof( AudioStreamBasicDescription );
536     p_format_list = (AudioStreamBasicDescription *)malloc( i_param_size );
537     if( p_format_list == NULL )
538     {
539         return( VLC_ENOMEM );
540     }
541     
542     err = AudioDeviceGetProperty( i_dev_id, 0, FALSE,
543                                       kAudioDevicePropertyStreamFormats,
544                                       &i_param_size, (void *)p_format_list );
545     if( err != noErr )
546     {
547         msg_Err( p_aout, "could not get the list of formats: [%4.4s]", (char *)&err );
548         return( VLC_EGENERIC );
549     }
550
551     for( i = 0; i < i_formats; i++ )
552     {
553         msg_Dbg( p_aout, STREAM_FORMAT_MSG( "supported format", p_format_list[i] ) );
554         
555         if( p_format_list[i].mFormatID == 'IAC3' ||
556                   p_format_list[i].mFormatID == kAudioFormat60958AC3 )
557         {
558             p_sys->b_supports_digital = VLC_TRUE;
559             msg_Dbg( p_aout, "this device supports a digital stream" );
560             break;
561         }
562     }
563     
564     free( (void *)p_format_list );
565     return VLC_SUCCESS;
566 }
567
568 /*****************************************************************************
569  * RenderCallbackAnalog: This function is called everytime the AudioUnit wants
570  * us to provide some more audio data.
571  *****************************************************************************/
572 static OSStatus RenderCallbackAnalog( vlc_object_t *_p_aout,
573                                       AudioUnitRenderActionFlags *ioActionFlags,
574                                       const AudioTimeStamp *inTimeStamp,
575                                       unsigned int inBusNummer,
576                                       unsigned int inNumberFrames,
577                                       AudioBufferList *ioData )
578 {
579     aout_buffer_t * p_buffer;
580     AudioTimeStamp  host_time;
581     mtime_t         current_date;
582     unsigned int    i_samples;
583
584     aout_instance_t * p_aout = (aout_instance_t *)_p_aout;
585     struct aout_sys_t * p_sys = p_aout->output.p_sys;
586 msg_Dbg( p_aout, "start audio packet");
587 msg_Dbg( p_aout, "inbusnummer: %d",inBusNummer );
588 msg_Dbg( p_aout, "inNumberFrames: %d", inNumberFrames);
589
590     host_time.mFlags = kAudioTimeStampHostTimeValid;
591     AudioDeviceTranslateTime( p_sys->i_selected_dev, inTimeStamp, &host_time );
592
593
594     p_sys->clock_diff = - (mtime_t)
595         AudioConvertHostTimeToNanos( AudioGetCurrentHostTime() ) / 1000; 
596     p_sys->clock_diff += mdate();
597
598
599     current_date = (mtime_t) p_sys->clock_diff + mdate();
600
601     p_aout->output.i_nb_samples = inNumberFrames;
602
603 msg_Dbg( p_aout, "start audio packet BADABOEM");
604 #define B_SPDI (p_aout->output.output.i_format == VLC_FOURCC('s','p','d','i'))
605     p_buffer = aout_OutputNextBuffer( p_aout, mdate(), VLC_FALSE );
606 #undef B_SPDI
607
608
609     if( p_buffer != NULL )
610     {
611         msg_Dbg( p_aout, "expected mDataByteSize:%d", ioData->mBuffers[0].mDataByteSize );
612         msg_Dbg( p_aout, "retrieved nb bytes:%d", p_buffer->i_nb_bytes );
613         
614         if( ioData != NULL && ioData->mNumberBuffers > 0 )
615         {
616             if( p_buffer->i_nb_bytes != ioData->mBuffers[0].mDataByteSize )
617             {
618                 msg_Dbg( p_aout, "byte sizes don't match %d:%d", p_buffer->i_nb_bytes, ioData->mBuffers[0].mDataByteSize);
619             }
620             else
621             {
622                 unsigned int i;
623                 /* move data into output data buffer */
624                 msg_Dbg( p_aout, "#buffers: %d", (int)ioData->mNumberBuffers );
625                 for( i = 0; i < ioData->mNumberBuffers; i++ )
626                 {
627                     p_aout->p_vlc->pf_memcpy( ioData->mBuffers[i].mData,
628                                       p_buffer->p_buffer, ioData->mBuffers[i].mDataByteSize );
629                 }
630                 msg_Dbg( p_aout, "yeah first:" );
631             }
632         }
633         else
634         {
635             msg_Dbg( p_aout, "no iodata or buffers");
636         }
637         aout_BufferFree( p_buffer );
638         msg_Dbg( p_aout, "yeah the buffer free thing :D" );
639     }
640     else
641     {
642         msg_Dbg( p_aout, "aout_OutputNextBuffer failed" ); 
643         if( p_aout->output.output.i_format == VLC_FOURCC('f','l','3','2') )
644         {
645             UInt32 i;
646             float * p = (float *)ioData->mBuffers[0].mData;
647
648             for( i = 0; i < ioData->mBuffers[0].mDataByteSize; i++ )
649             {
650                 *p++ = 0.0;
651             }
652         }
653         else
654         {
655             p_aout->p_vlc->pf_memset( ioData->mBuffers[0].mData, 0, ioData->mBuffers[0].mDataByteSize );
656         }
657     }
658 msg_Dbg( p_aout, "eof audio packet");
659     return( noErr );     
660 }
661
662
663 /*****************************************************************************
664  * Setup a digital stream
665  *****************************************************************************/
666 static int DigitalInit( aout_instance_t * p_aout )
667 {
668     OSStatus            err = noErr;
669     UInt32              i, i_param_size;
670     AudioDeviceID       devid_def;
671     AudioDeviceID       *p_devices = NULL;
672     vlc_value_t         val, text;
673
674     struct aout_sys_t   *p_sys = p_aout->output.p_sys;
675
676     
677     
678     return (VLC_SUCCESS);
679
680 error:
681     return VLC_EGENERIC;
682 }
683
684
685 /*****************************************************************************
686  * HardwareListener: Warns us of changes in the list of registered devices
687  *****************************************************************************/
688 static OSStatus HardwareListener( AudioHardwarePropertyID inPropertyID,
689                                   void * inClientData )
690 {
691     OSStatus err = noErr;
692
693     aout_instance_t     *p_aout = (aout_instance_t *)inClientData;
694     /* struct aout_sys_t   *p_sys = p_aout->output.p_sys; */
695
696     switch( inPropertyID )
697     {
698         case kAudioHardwarePropertyDevices:
699         {
700             /* something changed in the list of devices */
701             /* We trigger the audio-device's aout_ChannelsRestart callback */
702             var_Change( p_aout, "audio-device", VLC_VAR_TRIGGER_CALLBACKS, NULL, NULL );
703         }
704         break;
705     }
706
707     return( err );
708 }