]> git.sesse.net Git - vlc/blob - modules/audio_output/auhal.c
* Fix several problems with the auhal module. only the problem with the changing...
[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      Probe                   ( 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", 101 );
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         Probe( p_aout );
135         /*if( Probe( p_aout ) != VLC_SUCCESS );
136         {
137             msg_Err( p_aout, "Probe 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     aout_VolumeSoftInit( p_aout );
343
344     /* Let's pray for the following operation to be atomic... */
345     p_sys->clock_diff = - (mtime_t)
346         AudioConvertHostTimeToNanos( AudioGetCurrentHostTime() ) / 1000; 
347     p_sys->clock_diff += mdate();
348
349     /* set the IOproc callback */
350     AURenderCallbackStruct input;
351     input.inputProc = (AURenderCallback) RenderCallbackAnalog;
352     input.inputProcRefCon = p_aout;
353     
354     verify_noerr( AudioUnitSetProperty( p_sys->au_unit,
355                             kAudioUnitProperty_SetRenderCallback,
356                             kAudioUnitScope_Input,
357                             0, &input, sizeof( input ) ) );
358
359     input.inputProc = (AURenderCallback) RenderCallbackAnalog;
360     input.inputProcRefCon = p_aout;
361     
362     /* AU initiliaze */
363     verify_noerr( AudioUnitInitialize(p_sys->au_unit) );
364
365     verify_noerr( AudioOutputUnitStart(p_sys->au_unit) );
366     return( VLC_SUCCESS );
367 }
368
369 /*****************************************************************************
370  * Close: Close HAL AudioUnit
371  *****************************************************************************/
372 static void Close( vlc_object_t * p_this )
373 {
374     aout_instance_t     *p_aout = (aout_instance_t *)p_this;
375     struct aout_sys_t   *p_sys = p_aout->output.p_sys;
376     
377     if( p_sys->au_unit )
378     {
379         verify_noerr( AudioOutputUnitStop( p_sys->au_unit ) );
380         verify_noerr( AudioUnitUninitialize( p_sys->au_unit ) );
381         verify_noerr( CloseComponent( p_sys->au_unit ) );
382     }
383     free( p_sys );
384 }
385
386 /*****************************************************************************
387  * Play: nothing to do
388  *****************************************************************************/
389 static void Play( aout_instance_t * p_aout )
390 {
391 }
392
393
394 /*****************************************************************************
395  * Probe
396  *****************************************************************************/
397 static int Probe( aout_instance_t * p_aout )
398 {
399     OSStatus            err = noErr;
400     UInt32              i, i_param_size;
401     AudioDeviceID       devid_def;
402     AudioDeviceID       *p_devices = NULL;
403     vlc_value_t         val, text;
404
405     struct aout_sys_t   *p_sys = p_aout->output.p_sys;
406
407     /* Get number of devices */
408     err = AudioHardwareGetPropertyInfo( kAudioHardwarePropertyDevices,
409                                         &i_param_size, NULL );
410     if( err != noErr )
411     {
412         msg_Err( p_aout, "could not get number of devices: [%4.4s]", (char *)&err );
413         goto error;
414     }
415
416     p_sys->i_devices = i_param_size / sizeof( AudioDeviceID );
417
418     if( p_sys->i_devices < 1 )
419     {
420         msg_Err( p_aout, "no devices found" );
421         goto error;
422     }
423
424     msg_Dbg( p_aout, "system has [%ld] device(s)", p_sys->i_devices );
425
426     /* Allocate DeviceID array */
427     p_devices = (AudioDeviceID *)malloc( i_param_size );
428     if( p_devices == NULL )
429     {
430         msg_Err( p_aout, "out of memory" );
431         goto error;
432     }
433
434     /* Populate DeviceID array */
435     err = AudioHardwareGetProperty( kAudioHardwarePropertyDevices,
436                                     &i_param_size, (void *)p_devices );
437     if( err != noErr )
438     {
439         msg_Err( p_aout, "could not get the device ID's: [%4.4s]", (char *)&err );
440         goto error;
441     }
442
443     /* Find the ID of the default Device */
444     i_param_size = sizeof( AudioDeviceID );
445     err = AudioHardwareGetProperty( kAudioHardwarePropertyDefaultOutputDevice,
446                                     &i_param_size, (void *)&devid_def );
447     if( err != noErr )
448     {
449         msg_Err( p_aout, "could not get default audio device: [%4.4s]", (char *)&err );
450         goto error;
451     }
452     p_sys->i_default_dev = devid_def;
453     
454     var_Create( p_aout, "audio-device", VLC_VAR_INTEGER|VLC_VAR_HASCHOICE );
455     text.psz_string = _("Audio Device");
456     var_Change( p_aout, "audio-device", VLC_VAR_SETTEXT, &text, NULL );
457     
458     for( i = 0; i < p_sys->i_devices; i++ )
459     {
460         char psz_devuid[1024];
461         char psz_name[1024];
462         CFStringRef devUID;
463             
464         i_param_size = sizeof psz_name;
465         err = AudioDeviceGetProperty(
466                     p_devices[i], 0, VLC_FALSE,
467                     kAudioDevicePropertyDeviceName,
468                     &i_param_size, psz_name);
469         if( err )
470             goto error;
471
472         i_param_size = sizeof(CFStringRef);    
473         err = AudioDeviceGetProperty(
474                     p_devices[i], 0, VLC_FALSE,
475                     kAudioDevicePropertyDeviceUID,
476                     &i_param_size, &devUID);
477         if( err )
478             goto error;
479
480         CFStringGetCString( devUID, psz_devuid, sizeof psz_devuid, CFStringGetSystemEncoding() );
481         msg_Dbg( p_aout, "DevID: %lu  DevName: %s  DevUID: %s", p_devices[i], psz_name, psz_devuid );
482         CFRelease( devUID );
483
484         val.i_int = (int) p_devices[i];
485         text.psz_string = psz_name;
486         var_Change( p_aout, "audio-device", VLC_VAR_ADDCHOICE, &val, &text );
487         if( devid_def == p_devices[i] )
488         {
489             var_Change( p_aout, "audio-device", VLC_VAR_SETDEFAULT, &val, NULL );
490             var_Set( p_aout, "audio-device", val );
491         }
492     }
493     var_AddCallback( p_aout, "audio-device", aout_ChannelsRestart, NULL );
494     
495     /* attach a Listener so that we are notified of a change in the Device setup */
496     /*err = AudioHardwareAddPropertyListener( kAudioHardwarePropertyDevices,
497                                             HardwareListener, 
498                                             (void *)p_aout );
499     if( err )
500         goto error;*/
501     
502     msg_Dbg( p_aout, "succesful finish of deviceslist" );
503     if( p_devices ) free( p_devices );
504     return (VLC_SUCCESS);
505
506 error:
507     var_Destroy( p_aout, "audio-device" );
508     if( p_devices ) free( p_devices );
509     return VLC_EGENERIC;
510 }
511
512 /*****************************************************************************
513  * DeviceDigitalMode: Check i_dev_id for digital stream support.
514  *****************************************************************************/
515 static int DeviceDigitalMode( aout_instance_t *p_aout, AudioDeviceID i_dev_id )
516 {
517     OSStatus                    err = noErr;
518     UInt32                      i_param_size;
519     AudioStreamBasicDescription *p_format_list;
520     int                         i, i_formats;
521     struct aout_sys_t           *p_sys = p_aout->output.p_sys;
522     
523     p_sys->b_supports_digital = VLC_FALSE;
524     
525     err = AudioDeviceGetPropertyInfo( i_dev_id, 0, FALSE,
526                                       kAudioDevicePropertyStreamFormats,
527                                       &i_param_size, NULL );
528     if( err != noErr )
529     {
530         msg_Err( p_aout, "could not get number of streamsformats: [%4.4s]", (char *)&err );
531         return( VLC_EGENERIC );
532     }
533     
534     i_formats = i_param_size / sizeof( AudioStreamBasicDescription );
535     p_format_list = (AudioStreamBasicDescription *)malloc( i_param_size );
536     if( p_format_list == NULL )
537     {
538         return( VLC_ENOMEM );
539     }
540     
541     err = AudioDeviceGetProperty( i_dev_id, 0, FALSE,
542                                       kAudioDevicePropertyStreamFormats,
543                                       &i_param_size, (void *)p_format_list );
544     if( err != noErr )
545     {
546         msg_Err( p_aout, "could not get the list of formats: [%4.4s]", (char *)&err );
547         return( VLC_EGENERIC );
548     }
549
550     for( i = 0; i < i_formats; i++ )
551     {
552         msg_Dbg( p_aout, STREAM_FORMAT_MSG( "supported format", p_format_list[i] ) );
553         
554         if( p_format_list[i].mFormatID == 'IAC3' ||
555                   p_format_list[i].mFormatID == kAudioFormat60958AC3 )
556         {
557             p_sys->b_supports_digital = VLC_TRUE;
558             msg_Dbg( p_aout, "this device supports a digital stream" );
559             break;
560         }
561     }
562     
563     free( (void *)p_format_list );
564     return VLC_SUCCESS;
565 }
566
567 /*****************************************************************************
568  * RenderCallbackAnalog: This function is called everytime the AudioUnit wants
569  * us to provide some more audio data.
570  * Don't print anything during normal playback, calling blocking function from
571  * this callback is not allowed.
572  *****************************************************************************/
573 static OSStatus RenderCallbackAnalog( vlc_object_t *_p_aout,
574                                       AudioUnitRenderActionFlags *ioActionFlags,
575                                       const AudioTimeStamp *inTimeStamp,
576                                       unsigned int inBusNummer,
577                                       unsigned int inNumberFrames,
578                                       AudioBufferList *ioData )
579 {
580     aout_buffer_t * p_buffer;
581     AudioTimeStamp  host_time;
582     mtime_t         current_date = 0;
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
587     host_time.mFlags = kAudioTimeStampHostTimeValid;
588     AudioDeviceTranslateTime( p_sys->i_selected_dev, inTimeStamp, &host_time );
589
590     p_sys->clock_diff = - (mtime_t)
591         AudioConvertHostTimeToNanos( AudioGetCurrentHostTime() ) / 1000; 
592     p_sys->clock_diff += mdate();
593
594     current_date = p_sys->clock_diff +
595                    AudioConvertHostTimeToNanos( host_time.mHostTime ) / 1000;
596
597     p_aout->output.i_nb_samples = inNumberFrames;
598
599     if( ioData == NULL && ioData->mNumberBuffers < 1 )
600     {
601         msg_Err( p_aout, "no iodata or buffers");
602         return 0;
603     }
604     if( ioData->mNumberBuffers > 1 )
605         msg_Err( p_aout, "well this is weird. seems like there is more than one buffer..." );
606
607     
608     p_buffer = aout_OutputNextBuffer( p_aout, current_date , VLC_FALSE );
609     if( p_buffer != NULL )
610     {
611         p_aout->p_vlc->pf_memcpy(ioData->mBuffers[0].mData, p_buffer->p_buffer, __MIN( p_buffer->i_nb_bytes, ioData->mBuffers[0].mDataByteSize ) );
612
613         if( p_buffer->i_nb_bytes != ioData->mBuffers[0].mDataByteSize )
614         {
615             /* FIXME */
616             //msg_Err( p_aout, "byte sizes don't match %d:%d\nframes: %d, nb_samples: %d", p_buffer->i_nb_bytes, ioData->mBuffers[0].mDataByteSize, inNumberFrames, p_aout->output.i_nb_samples);
617         }
618         aout_BufferFree( p_buffer );
619     }
620     else
621     {
622          p_aout->p_vlc->pf_memset(ioData->mBuffers[0].mData, 0, ioData->mBuffers[0].mDataByteSize);
623     }
624     return( noErr );     
625 }
626
627
628 /*****************************************************************************
629  * Setup a digital stream
630  *****************************************************************************/
631 static int DigitalInit( aout_instance_t * p_aout )
632 {
633     OSStatus            err = noErr;
634     UInt32              i, i_param_size;
635     AudioDeviceID       devid_def;
636     AudioDeviceID       *p_devices = NULL;
637     vlc_value_t         val, text;
638
639     struct aout_sys_t   *p_sys = p_aout->output.p_sys;
640
641     
642     
643     return (VLC_SUCCESS);
644
645 error:
646     return VLC_EGENERIC;
647 }
648
649
650 /*****************************************************************************
651  * HardwareListener: Warns us of changes in the list of registered devices
652  *****************************************************************************/
653 static OSStatus HardwareListener( AudioHardwarePropertyID inPropertyID,
654                                   void * inClientData )
655 {
656     OSStatus err = noErr;
657
658     aout_instance_t     *p_aout = (aout_instance_t *)inClientData;
659     /* struct aout_sys_t   *p_sys = p_aout->output.p_sys; */
660
661     switch( inPropertyID )
662     {
663         case kAudioHardwarePropertyDevices:
664         {
665             /* something changed in the list of devices */
666             /* We trigger the audio-device's aout_ChannelsRestart callback */
667             var_Change( p_aout, "audio-device", VLC_VAR_TRIGGER_CALLBACKS, NULL, NULL );
668         }
669         break;
670     }
671
672     return( err );
673 }