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