]> git.sesse.net Git - vlc/blob - modules/audio_output/auhal.c
Fix PortAudio warnings
[vlc] / modules / audio_output / auhal.c
1 /*****************************************************************************
2  * auhal.c: AUHAL and Coreaudio output plugin
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  * $Id$
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <unistd.h>
32
33 #include <vlc_common.h>
34 #include <vlc_plugin.h>
35 #include <vlc_dialog.h>
36 #include <vlc_aout.h>
37
38 #include <CoreAudio/CoreAudio.h>
39 #include <AudioUnit/AudioUnitProperties.h>
40 #include <AudioUnit/AudioUnitParameters.h>
41 #include <AudioUnit/AudioOutputUnit.h>
42 #include <AudioToolbox/AudioFormat.h>
43
44 #define STREAM_FORMAT_MSG( pre, sfm ) \
45     pre "[%ld][%4.4s][%ld][%ld][%ld][%ld][%ld][%ld]", \
46     (UInt32)sfm.mSampleRate, (char *)&sfm.mFormatID, \
47     sfm.mFormatFlags, sfm.mBytesPerPacket, \
48     sfm.mFramesPerPacket, sfm.mBytesPerFrame, \
49     sfm.mChannelsPerFrame, sfm.mBitsPerChannel
50
51 #define STREAM_FORMAT_MSG_FULL( pre, sfm ) \
52     pre ":\nsamplerate: [%ld]\nFormatID: [%4.4s]\nFormatFlags: [%ld]\nBypesPerPacket: [%ld]\nFramesPerPacket: [%ld]\nBytesPerFrame: [%ld]\nChannelsPerFrame: [%ld]\nBitsPerChannel[%ld]", \
53     (UInt32)sfm.mSampleRate, (char *)&sfm.mFormatID, \
54     sfm.mFormatFlags, sfm.mBytesPerPacket, \
55     sfm.mFramesPerPacket, sfm.mBytesPerFrame, \
56     sfm.mChannelsPerFrame, sfm.mBitsPerChannel
57
58 #define BUFSIZE 0xffffff
59 #define AOUT_VAR_SPDIF_FLAG 0xf00000
60
61 /*
62  * TODO:
63  * - clean up the debug info
64  * - clean up C99'isms
65  * - be better at changing stream setup or devices setup changes while playing.
66  * - fix 6.1 and 7.1
67  */
68
69 /*****************************************************************************
70  * aout_sys_t: private audio output method descriptor
71  *****************************************************************************
72  * This structure is part of the audio output thread descriptor.
73  * It describes the CoreAudio specific properties of an output thread.
74  *****************************************************************************/
75 struct aout_sys_t
76 {
77     AudioDeviceID               i_default_dev;  /* Keeps DeviceID of defaultOutputDevice */
78     AudioDeviceID               i_selected_dev; /* Keeps DeviceID of the selected device */
79     UInt32                      i_devices;      /* Number of CoreAudio Devices */
80     bool                  b_supports_digital;/* Does the currently selected device support digital mode? */
81     bool                  b_digital;      /* Are we running in digital mode? */
82     mtime_t                     clock_diff;     /* Difference between VLC clock and Device clock */
83
84     /* AUHAL specific */
85     Component                   au_component;   /* The Audiocomponent we use */
86     AudioUnit                   au_unit;        /* The AudioUnit we use */
87     uint8_t                     p_remainder_buffer[BUFSIZE];
88     uint32_t                    i_read_bytes;
89     uint32_t                    i_total_bytes;
90
91     /* CoreAudio SPDIF mode specific */
92     pid_t                       i_hog_pid;      /* The keep the pid of our hog status */
93     AudioStreamID               i_stream_id;    /* The StreamID that has a cac3 streamformat */
94     int                         i_stream_index; /* The index of i_stream_id in an AudioBufferList */
95     AudioStreamBasicDescription stream_format;  /* The format we changed the stream to */
96     AudioStreamBasicDescription sfmt_revert;    /* The original format of the stream */
97     bool                  b_revert;       /* Wether we need to revert the stream format */
98     bool                  b_changed_mixing;/* Wether we need to set the mixing mode back */
99 };
100
101 /*****************************************************************************
102  * Local prototypes.
103  *****************************************************************************/
104 static int      Open                    ( vlc_object_t * );
105 static int      OpenAnalog              ( aout_instance_t * );
106 static int      OpenSPDIF               ( aout_instance_t * );
107 static void     Close                   ( vlc_object_t * );
108
109 static void     Play                    ( aout_instance_t * );
110 static void     Probe                   ( aout_instance_t * );
111
112 static int      AudioDeviceHasOutput    ( AudioDeviceID );
113 static int      AudioDeviceSupportsDigital( aout_instance_t *, AudioDeviceID );
114 static int      AudioStreamSupportsDigital( aout_instance_t *, AudioStreamID );
115 static int      AudioStreamChangeFormat ( aout_instance_t *, AudioStreamID, AudioStreamBasicDescription );
116
117 static OSStatus RenderCallbackAnalog    ( vlc_object_t *, AudioUnitRenderActionFlags *, const AudioTimeStamp *,
118                                           unsigned int, unsigned int, AudioBufferList *);
119 static OSStatus RenderCallbackSPDIF     ( AudioDeviceID, const AudioTimeStamp *, const void *, const AudioTimeStamp *,
120                                           AudioBufferList *, const AudioTimeStamp *, void * );
121 static OSStatus HardwareListener        ( AudioHardwarePropertyID, void *);
122 static OSStatus StreamListener          ( AudioStreamID, UInt32,
123                                           AudioDevicePropertyID, void * );
124 static int      AudioDeviceCallback     ( vlc_object_t *, const char *,
125                                           vlc_value_t, vlc_value_t, void * );
126
127
128 /*****************************************************************************
129  * Module descriptor
130  *****************************************************************************/
131 #define ADEV_TEXT N_("Audio Device")
132 #define ADEV_LONGTEXT N_("Choose a number corresponding to the number of an " \
133     "audio device, as listed in your 'Audio Device' menu. This device will " \
134     "then be used by default for audio playback.")
135
136 vlc_module_begin ()
137     set_shortname( "auhal" )
138     set_description( N_("HAL AudioUnit output") )
139     set_capability( "audio output", 101 )
140     set_category( CAT_AUDIO )
141     set_subcategory( SUBCAT_AUDIO_AOUT )
142     set_callbacks( Open, Close )
143     add_integer( "macosx-audio-device", 0, NULL, ADEV_TEXT, ADEV_LONGTEXT, false )
144 vlc_module_end ()
145
146 /*****************************************************************************
147  * Open: open macosx audio output
148  *****************************************************************************/
149 static int Open( vlc_object_t * p_this )
150 {
151     OSStatus                err = noErr;
152     UInt32                  i_param_size = 0;
153     struct aout_sys_t       *p_sys = NULL;
154     vlc_value_t             val;
155     aout_instance_t         *p_aout = (aout_instance_t *)p_this;
156
157     /* Use int here, to match kAudioDevicePropertyDeviceIsAlive
158      * property size */
159     int                     b_alive = false; 
160
161     /* Allocate structure */
162     p_aout->output.p_sys = malloc( sizeof( aout_sys_t ) );
163     if( p_aout->output.p_sys == NULL )
164         return VLC_ENOMEM;
165
166     p_sys = p_aout->output.p_sys;
167     p_sys->i_default_dev = 0;
168     p_sys->i_selected_dev = 0;
169     p_sys->i_devices = 0;
170     p_sys->b_supports_digital = false;
171     p_sys->b_digital = false;
172     p_sys->au_component = NULL;
173     p_sys->au_unit = NULL;
174     p_sys->clock_diff = (mtime_t) 0;
175     p_sys->i_read_bytes = 0;
176     p_sys->i_total_bytes = 0;
177     p_sys->i_hog_pid = -1;
178     p_sys->i_stream_id = 0;
179     p_sys->i_stream_index = -1;
180     p_sys->b_revert = false;
181     p_sys->b_changed_mixing = false;
182     memset( p_sys->p_remainder_buffer, 0, sizeof(uint8_t) * BUFSIZE );
183
184     p_aout->output.pf_play = Play;
185  
186     aout_FormatPrint( p_aout, "VLC is looking for:", (audio_sample_format_t *)&p_aout->output.output );
187  
188     /* Persistent device variable */
189     if( var_Type( p_aout->p_libvlc, "macosx-audio-device" ) == 0 )
190     {
191         var_Create( p_aout->p_libvlc, "macosx-audio-device", VLC_VAR_INTEGER | VLC_VAR_DOINHERIT );
192     }
193
194     /* Build a list of devices */
195     if( var_Type( p_aout, "audio-device" ) == 0 )
196     {
197         Probe( p_aout );
198     }
199
200     /* What device do we want? */
201     if( var_Get( p_aout, "audio-device", &val ) < 0 )
202     {
203         msg_Err( p_aout, "audio-device var does not exist. device probe failed." );
204         goto error;
205     }
206
207     p_sys->i_selected_dev = val.i_int & ~AOUT_VAR_SPDIF_FLAG; /* remove SPDIF flag to get the true DeviceID */
208     p_sys->b_supports_digital = ( val.i_int & AOUT_VAR_SPDIF_FLAG ) ? true : false;
209
210     /* Check if the desired device is alive and usable */
211     /* TODO: add a callback to the device to alert us if the device dies */
212     i_param_size = sizeof( b_alive );
213     err = AudioDeviceGetProperty( p_sys->i_selected_dev, 0, FALSE,
214                                   kAudioDevicePropertyDeviceIsAlive,
215                                   &i_param_size, &b_alive );
216
217     if( err != noErr )
218     {
219         /* Be tolerant, only give a warning here */
220         msg_Warn( p_aout, "could not check whether device [0x%x] is alive: %4.4s", (unsigned int)p_sys->i_selected_dev, (char *)&err );
221         b_alive = false;
222     }
223
224     if( b_alive == false )
225     {
226         msg_Warn( p_aout, "selected audio device is not alive, switching to default device" );
227         p_sys->i_selected_dev = p_sys->i_default_dev;
228     }
229
230     i_param_size = sizeof( p_sys->i_hog_pid );
231     err = AudioDeviceGetProperty( p_sys->i_selected_dev, 0, FALSE,
232                                   kAudioDevicePropertyHogMode,
233                                   &i_param_size, &p_sys->i_hog_pid );
234
235     if( err != noErr )
236     {
237         /* This is not a fatal error. Some drivers simply don't support this property */
238         msg_Warn( p_aout, "could not check whether device is hogged: %4.4s",
239                  (char *)&err );
240         p_sys->i_hog_pid = -1;
241     }
242
243     if( p_sys->i_hog_pid != -1 && p_sys->i_hog_pid != getpid() )
244     {
245         msg_Err( p_aout, "Selected audio device is exclusively in use by another program." );
246         dialog_Fatal( p_aout, _("Audio output failed"), "%s",
247                         _("The selected audio output device is exclusively in "
248                           "use by another program.") );
249         goto error;
250     }
251
252     /* Check for Digital mode or Analog output mode */
253     if( AOUT_FMT_NON_LINEAR( &p_aout->output.output ) && p_sys->b_supports_digital )
254     {
255         if( OpenSPDIF( p_aout ) )
256             return VLC_SUCCESS;
257     }
258     else
259     {
260         if( OpenAnalog( p_aout ) )
261             return VLC_SUCCESS;
262     }
263
264 error:
265     /* If we reach this, this aout has failed */
266     var_Destroy( p_aout, "audio-device" );
267     free( p_sys );
268     return VLC_EGENERIC;
269 }
270
271 /*****************************************************************************
272  * Open: open and setup a HAL AudioUnit to do analog (multichannel) audio output
273  *****************************************************************************/
274 static int OpenAnalog( aout_instance_t *p_aout )
275 {
276     struct aout_sys_t           *p_sys = p_aout->output.p_sys;
277     OSStatus                    err = noErr;
278     UInt32                      i_param_size = 0, i = 0;
279     int                         i_original;
280     ComponentDescription        desc;
281     AudioStreamBasicDescription DeviceFormat;
282     AudioChannelLayout          *layout;
283     AudioChannelLayout          new_layout;
284     AURenderCallbackStruct      input;
285
286     /* Lets go find our Component */
287     desc.componentType = kAudioUnitType_Output;
288     desc.componentSubType = kAudioUnitSubType_HALOutput;
289     desc.componentManufacturer = kAudioUnitManufacturer_Apple;
290     desc.componentFlags = 0;
291     desc.componentFlagsMask = 0;
292
293     p_sys->au_component = FindNextComponent( NULL, &desc );
294     if( p_sys->au_component == NULL )
295     {
296         msg_Warn( p_aout, "we cannot find our HAL component" );
297         return false;
298     }
299
300     err = OpenAComponent( p_sys->au_component, &p_sys->au_unit );
301     if( err != noErr )
302     {
303         msg_Warn( p_aout, "we cannot open our HAL component" );
304         return false;
305     }
306  
307     /* Set the device we will use for this output unit */
308     err = AudioUnitSetProperty( p_sys->au_unit,
309                          kAudioOutputUnitProperty_CurrentDevice,
310                          kAudioUnitScope_Global,
311                          0,
312                          &p_sys->i_selected_dev,
313                          sizeof( AudioDeviceID ));
314  
315     if( err != noErr )
316     {
317         msg_Warn( p_aout, "we cannot select the audio device" );
318         return false;
319     }
320  
321     /* Get the current format */
322     i_param_size = sizeof(AudioStreamBasicDescription);
323
324     err = AudioUnitGetProperty( p_sys->au_unit,
325                                    kAudioUnitProperty_StreamFormat,
326                                    kAudioUnitScope_Input,
327                                    0,
328                                    &DeviceFormat,
329                                    &i_param_size );
330  
331     if( err != noErr ) return false;
332     else msg_Dbg( p_aout, STREAM_FORMAT_MSG( "current format is: ", DeviceFormat ) );
333
334     /* Get the channel layout of the device side of the unit (vlc -> unit -> device) */
335     err = AudioUnitGetPropertyInfo( p_sys->au_unit,
336                                    kAudioDevicePropertyPreferredChannelLayout,
337                                    kAudioUnitScope_Output,
338                                    0,
339                                    &i_param_size,
340                                    NULL );
341
342     if( err == noErr )
343     {
344         layout = (AudioChannelLayout *)malloc( i_param_size);
345
346         verify_noerr( AudioUnitGetProperty( p_sys->au_unit,
347                                        kAudioDevicePropertyPreferredChannelLayout,
348                                        kAudioUnitScope_Output,
349                                        0,
350                                        layout,
351                                        &i_param_size ));
352  
353         /* We need to "fill out" the ChannelLayout, because there are multiple ways that it can be set */
354         if( layout->mChannelLayoutTag == kAudioChannelLayoutTag_UseChannelBitmap)
355         {
356             /* bitmap defined channellayout */
357             verify_noerr( AudioFormatGetProperty( kAudioFormatProperty_ChannelLayoutForBitmap,
358                                     sizeof( UInt32), &layout->mChannelBitmap,
359                                     &i_param_size,
360                                     layout ));
361         }
362         else if( layout->mChannelLayoutTag != kAudioChannelLayoutTag_UseChannelDescriptions )
363         {
364             /* layouttags defined channellayout */
365             verify_noerr( AudioFormatGetProperty( kAudioFormatProperty_ChannelLayoutForTag,
366                                     sizeof( AudioChannelLayoutTag ), &layout->mChannelLayoutTag,
367                                     &i_param_size,
368                                     layout ));
369         }
370
371         msg_Dbg( p_aout, "layout of AUHAL has %d channels" , (int)layout->mNumberChannelDescriptions );
372  
373         /* Initialize the VLC core channel count */
374         p_aout->output.output.i_physical_channels = 0;
375         i_original = p_aout->output.output.i_original_channels & AOUT_CHAN_PHYSMASK;
376  
377         if( i_original == AOUT_CHAN_CENTER || layout->mNumberChannelDescriptions < 2 )
378         {
379             /* We only need Mono or cannot output more than 1 channel */
380             p_aout->output.output.i_physical_channels = AOUT_CHAN_CENTER;
381         }
382         else if( i_original == (AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT) || layout->mNumberChannelDescriptions < 3 )
383         {
384             /* We only need Stereo or cannot output more than 2 channels */
385             p_aout->output.output.i_physical_channels = AOUT_CHAN_RIGHT | AOUT_CHAN_LEFT;
386         }
387         else
388         {
389             /* We want more than stereo and we can do that */
390             for( i = 0; i < layout->mNumberChannelDescriptions; i++ )
391             {
392                 msg_Dbg( p_aout, "this is channel: %d", (int)layout->mChannelDescriptions[i].mChannelLabel );
393
394                 switch( layout->mChannelDescriptions[i].mChannelLabel )
395                 {
396                     case kAudioChannelLabel_Left:
397                         p_aout->output.output.i_physical_channels |= AOUT_CHAN_LEFT;
398                         continue;
399                     case kAudioChannelLabel_Right:
400                         p_aout->output.output.i_physical_channels |= AOUT_CHAN_RIGHT;
401                         continue;
402                     case kAudioChannelLabel_Center:
403                         p_aout->output.output.i_physical_channels |= AOUT_CHAN_CENTER;
404                         continue;
405                     case kAudioChannelLabel_LFEScreen:
406                         p_aout->output.output.i_physical_channels |= AOUT_CHAN_LFE;
407                         continue;
408                     case kAudioChannelLabel_LeftSurround:
409                         p_aout->output.output.i_physical_channels |= AOUT_CHAN_REARLEFT;
410                         continue;
411                     case kAudioChannelLabel_RightSurround:
412                         p_aout->output.output.i_physical_channels |= AOUT_CHAN_REARRIGHT;
413                         continue;
414                     case kAudioChannelLabel_RearSurroundLeft:
415                         p_aout->output.output.i_physical_channels |= AOUT_CHAN_MIDDLELEFT;
416                         continue;
417                     case kAudioChannelLabel_RearSurroundRight:
418                         p_aout->output.output.i_physical_channels |= AOUT_CHAN_MIDDLERIGHT;
419                         continue;
420                     case kAudioChannelLabel_CenterSurround:
421                         p_aout->output.output.i_physical_channels |= AOUT_CHAN_REARCENTER;
422                         continue;
423                     default:
424                         msg_Warn( p_aout, "unrecognized channel form provided by driver: %d", (int)layout->mChannelDescriptions[i].mChannelLabel );
425                 }
426             }
427             if( p_aout->output.output.i_physical_channels == 0 )
428             {
429                 p_aout->output.output.i_physical_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
430                 msg_Err( p_aout, "You should configure your speaker layout with Audio Midi Setup Utility in /Applications/Utilities. Now using Stereo mode." );
431                 dialog_Fatal( p_aout, _("Audio device is not configured"), "%s",
432                                 _("You should configure your speaker layout with "
433                                   "the \"Audio Midi Setup\" utility in /Applications/"
434                                   "Utilities. Stereo mode is being used now.") );
435             }
436         }
437         free( layout );
438     }
439     else
440     {
441         msg_Warn( p_aout, "this driver does not support kAudioDevicePropertyPreferredChannelLayout. BAD DRIVER AUTHOR !!!" );
442         p_aout->output.output.i_physical_channels = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
443     }
444
445     msg_Dbg( p_aout, "selected %d physical channels for device output", aout_FormatNbChannels( &p_aout->output.output ) );
446     msg_Dbg( p_aout, "VLC will output: %s", aout_FormatPrintChannels( &p_aout->output.output ));
447
448     memset (&new_layout, 0, sizeof(new_layout));
449     switch( aout_FormatNbChannels( &p_aout->output.output ) )
450     {
451         case 1:
452             new_layout.mChannelLayoutTag = kAudioChannelLayoutTag_Mono;
453             break;
454         case 2:
455             new_layout.mChannelLayoutTag = kAudioChannelLayoutTag_Stereo;
456             break;
457         case 3:
458             if( p_aout->output.output.i_physical_channels & AOUT_CHAN_CENTER )
459             {
460                 new_layout.mChannelLayoutTag = kAudioChannelLayoutTag_DVD_7; // L R C
461             }
462             else if( p_aout->output.output.i_physical_channels & AOUT_CHAN_LFE )
463             {
464                 new_layout.mChannelLayoutTag = kAudioChannelLayoutTag_DVD_4; // L R LFE
465             }
466             break;
467         case 4:
468             if( p_aout->output.output.i_physical_channels & ( AOUT_CHAN_CENTER | AOUT_CHAN_LFE ) )
469             {
470                 new_layout.mChannelLayoutTag = kAudioChannelLayoutTag_DVD_10; // L R C LFE
471             }
472             else if( p_aout->output.output.i_physical_channels & ( AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT ) )
473             {
474                 new_layout.mChannelLayoutTag = kAudioChannelLayoutTag_DVD_3; // L R Ls Rs
475             }
476             else if( p_aout->output.output.i_physical_channels & ( AOUT_CHAN_CENTER | AOUT_CHAN_REARCENTER ) )
477             {
478                 new_layout.mChannelLayoutTag = kAudioChannelLayoutTag_DVD_3; // L R C Cs
479             }
480             break;
481         case 5:
482             if( p_aout->output.output.i_physical_channels & ( AOUT_CHAN_CENTER ) )
483             {
484                 new_layout.mChannelLayoutTag = kAudioChannelLayoutTag_DVD_19; // L R Ls Rs C
485             }
486             else if( p_aout->output.output.i_physical_channels & ( AOUT_CHAN_LFE ) )
487             {
488                 new_layout.mChannelLayoutTag = kAudioChannelLayoutTag_DVD_18; // L R Ls Rs LFE
489             }
490             break;
491         case 6:
492             if( p_aout->output.output.i_physical_channels & ( AOUT_CHAN_LFE ) )
493             {
494                 new_layout.mChannelLayoutTag = kAudioChannelLayoutTag_DVD_20; // L R Ls Rs C LFE
495             }
496             else
497             {
498                 new_layout.mChannelLayoutTag = kAudioChannelLayoutTag_AudioUnit_6_0; // L R Ls Rs C Cs
499             }
500             break;
501         case 7:
502             /* FIXME: This is incorrect. VLC uses the internal ordering: L R Lm Rm Lr Rr C LFE but this is wrong */
503             new_layout.mChannelLayoutTag = kAudioChannelLayoutTag_MPEG_6_1_A; // L R C LFE Ls Rs Cs
504             break;
505         case 8:
506             /* FIXME: This is incorrect. VLC uses the internal ordering: L R Lm Rm Lr Rr C LFE but this is wrong */
507             new_layout.mChannelLayoutTag = kAudioChannelLayoutTag_MPEG_7_1_A; // L R C LFE Ls Rs Lc Rc
508             break;
509     }
510
511     /* Set up the format to be used */
512     DeviceFormat.mSampleRate = p_aout->output.output.i_rate;
513     DeviceFormat.mFormatID = kAudioFormatLinearPCM;
514
515     /* We use float 32. It's the best supported format by both VLC and Coreaudio */
516     p_aout->output.output.i_format = VLC_CODEC_FL32;
517     DeviceFormat.mFormatFlags = kAudioFormatFlagsNativeFloatPacked;
518     DeviceFormat.mBitsPerChannel = 32;
519     DeviceFormat.mChannelsPerFrame = aout_FormatNbChannels( &p_aout->output.output );
520  
521     /* Calculate framesizes and stuff */
522     DeviceFormat.mFramesPerPacket = 1;
523     DeviceFormat.mBytesPerFrame = DeviceFormat.mBitsPerChannel * DeviceFormat.mChannelsPerFrame / 8;
524     DeviceFormat.mBytesPerPacket = DeviceFormat.mBytesPerFrame * DeviceFormat.mFramesPerPacket;
525  
526     /* Set the desired format */
527     i_param_size = sizeof(AudioStreamBasicDescription);
528     verify_noerr( AudioUnitSetProperty( p_sys->au_unit,
529                                    kAudioUnitProperty_StreamFormat,
530                                    kAudioUnitScope_Input,
531                                    0,
532                                    &DeviceFormat,
533                                    i_param_size ));
534  
535     msg_Dbg( p_aout, STREAM_FORMAT_MSG( "we set the AU format: " , DeviceFormat ) );
536  
537     /* Retrieve actual format */
538     verify_noerr( AudioUnitGetProperty( p_sys->au_unit,
539                                    kAudioUnitProperty_StreamFormat,
540                                    kAudioUnitScope_Input,
541                                    0,
542                                    &DeviceFormat,
543                                    &i_param_size ));
544  
545     msg_Dbg( p_aout, STREAM_FORMAT_MSG( "the actual set AU format is " , DeviceFormat ) );
546
547     /* Do the last VLC aout setups */
548     aout_FormatPrepare( &p_aout->output.output );
549     p_aout->output.i_nb_samples = 2048;
550     aout_VolumeSoftInit( p_aout );
551
552     /* set the IOproc callback */
553     input.inputProc = (AURenderCallback) RenderCallbackAnalog;
554     input.inputProcRefCon = p_aout;
555  
556     verify_noerr( AudioUnitSetProperty( p_sys->au_unit,
557                             kAudioUnitProperty_SetRenderCallback,
558                             kAudioUnitScope_Input,
559                             0, &input, sizeof( input ) ) );
560
561     input.inputProc = (AURenderCallback) RenderCallbackAnalog;
562     input.inputProcRefCon = p_aout;
563  
564     /* Set the new_layout as the layout VLC will use to feed the AU unit */
565     verify_noerr( AudioUnitSetProperty( p_sys->au_unit,
566                             kAudioUnitProperty_AudioChannelLayout,
567                             kAudioUnitScope_Input,
568                             0, &new_layout, sizeof(new_layout) ) );
569  
570     if( new_layout.mNumberChannelDescriptions > 0 )
571         free( new_layout.mChannelDescriptions );
572  
573     /* AU initiliaze */
574     verify_noerr( AudioUnitInitialize(p_sys->au_unit) );
575
576     /* Find the difference between device clock and mdate clock */
577     p_sys->clock_diff = - (mtime_t)
578         AudioConvertHostTimeToNanos( AudioGetCurrentHostTime() ) / 1000;
579     p_sys->clock_diff += mdate();
580
581     /* Start the AU */
582     verify_noerr( AudioOutputUnitStart(p_sys->au_unit) );
583  
584     return true;
585 }
586
587 /*****************************************************************************
588  * Setup a encoded digital stream (SPDIF)
589  *****************************************************************************/
590 static int OpenSPDIF( aout_instance_t * p_aout )
591 {
592     struct aout_sys_t       *p_sys = p_aout->output.p_sys;
593     OSStatus                err = noErr;
594     UInt32                  i_param_size = 0, b_mix = 0;
595     Boolean                 b_writeable = false;
596     AudioStreamID           *p_streams = NULL;
597     int                     i = 0, i_streams = 0;
598
599     /* Start doing the SPDIF setup proces */
600     p_sys->b_digital = true;
601
602     /* Hog the device */
603     i_param_size = sizeof( p_sys->i_hog_pid );
604     p_sys->i_hog_pid = getpid() ;
605  
606     err = AudioDeviceSetProperty( p_sys->i_selected_dev, 0, 0, FALSE,
607                                   kAudioDevicePropertyHogMode, i_param_size, &p_sys->i_hog_pid );
608  
609     if( err != noErr )
610     {
611         msg_Err( p_aout, "failed to set hogmode: [%4.4s]", (char *)&err );
612         return false;
613     }
614
615     /* Set mixable to false if we are allowed to */
616     err = AudioDeviceGetPropertyInfo( p_sys->i_selected_dev, 0, FALSE, kAudioDevicePropertySupportsMixing,
617                                     &i_param_size, &b_writeable );
618
619     err = AudioDeviceGetProperty( p_sys->i_selected_dev, 0, FALSE, kAudioDevicePropertySupportsMixing,
620                                     &i_param_size, &b_mix );
621  
622     if( !err && b_writeable )
623     {
624         b_mix = 0;
625         err = AudioDeviceSetProperty( p_sys->i_selected_dev, 0, 0, FALSE,
626                             kAudioDevicePropertySupportsMixing, i_param_size, &b_mix );
627         p_sys->b_changed_mixing = true;
628     }
629  
630     if( err != noErr )
631     {
632         msg_Err( p_aout, "failed to set mixmode: [%4.4s]", (char *)&err );
633         return false;
634     }
635
636     /* Get a list of all the streams on this device */
637     err = AudioDeviceGetPropertyInfo( p_sys->i_selected_dev, 0, FALSE,
638                                       kAudioDevicePropertyStreams,
639                                       &i_param_size, NULL );
640     if( err != noErr )
641     {
642         msg_Err( p_aout, "could not get number of streams: [%4.4s]", (char *)&err );
643         return false;
644     }
645  
646     i_streams = i_param_size / sizeof( AudioStreamID );
647     p_streams = (AudioStreamID *)malloc( i_param_size );
648     if( p_streams == NULL )
649         return false;
650  
651     err = AudioDeviceGetProperty( p_sys->i_selected_dev, 0, FALSE,
652                                     kAudioDevicePropertyStreams,
653                                     &i_param_size, p_streams );
654  
655     if( err != noErr )
656     {
657         msg_Err( p_aout, "could not get number of streams: [%4.4s]", (char *)&err );
658         free( p_streams );
659         return false;
660     }
661
662     for( i = 0; i < i_streams && p_sys->i_stream_index < 0 ; i++ )
663     {
664         /* Find a stream with a cac3 stream */
665         AudioStreamBasicDescription *p_format_list = NULL;
666         int                         i_formats = 0, j = 0;
667         bool                  b_digital = false;
668  
669         /* Retrieve all the stream formats supported by each output stream */
670         err = AudioStreamGetPropertyInfo( p_streams[i], 0,
671                                           kAudioStreamPropertyPhysicalFormats,
672                                           &i_param_size, NULL );
673         if( err != noErr )
674         {
675             msg_Err( p_aout, "could not get number of streamformats: [%4.4s]", (char *)&err );
676             continue;
677         }
678  
679         i_formats = i_param_size / sizeof( AudioStreamBasicDescription );
680         p_format_list = (AudioStreamBasicDescription *)malloc( i_param_size );
681         if( p_format_list == NULL )
682             continue;
683  
684         err = AudioStreamGetProperty( p_streams[i], 0,
685                                           kAudioStreamPropertyPhysicalFormats,
686                                           &i_param_size, p_format_list );
687         if( err != noErr )
688         {
689             msg_Err( p_aout, "could not get the list of streamformats: [%4.4s]", (char *)&err );
690             free( p_format_list );
691             continue;
692         }
693
694         /* Check if one of the supported formats is a digital format */
695         for( j = 0; j < i_formats; j++ )
696         {
697             if( p_format_list[j].mFormatID == 'IAC3' ||
698                   p_format_list[j].mFormatID == kAudioFormat60958AC3 )
699             {
700                 b_digital = true;
701                 break;
702             }
703         }
704  
705         if( b_digital )
706         {
707             /* if this stream supports a digital (cac3) format, then go set it. */
708             int i_requested_rate_format = -1;
709             int i_current_rate_format = -1;
710             int i_backup_rate_format = -1;
711
712             p_sys->i_stream_id = p_streams[i];
713             p_sys->i_stream_index = i;
714
715             if( p_sys->b_revert == false )
716             {
717                 /* Retrieve the original format of this stream first if not done so already */
718                 i_param_size = sizeof( p_sys->sfmt_revert );
719                 err = AudioStreamGetProperty( p_sys->i_stream_id, 0,
720                                               kAudioStreamPropertyPhysicalFormat,
721                                               &i_param_size,
722                                               &p_sys->sfmt_revert );
723                 if( err != noErr )
724                 {
725                     msg_Err( p_aout, "could not retrieve the original streamformat: [%4.4s]", (char *)&err );
726                     continue;
727                 }
728                 p_sys->b_revert = true;
729             }
730
731             for( j = 0; j < i_formats; j++ )
732             {
733                 if( p_format_list[j].mFormatID == 'IAC3' ||
734                       p_format_list[j].mFormatID == kAudioFormat60958AC3 )
735                 {
736                     if( p_format_list[j].mSampleRate == p_aout->output.output.i_rate )
737                     {
738                         i_requested_rate_format = j;
739                         break;
740                     }
741                     else if( p_format_list[j].mSampleRate == p_sys->sfmt_revert.mSampleRate )
742                     {
743                         i_current_rate_format = j;
744                     }
745                     else
746                     {
747                         if( i_backup_rate_format < 0 || p_format_list[j].mSampleRate > p_format_list[i_backup_rate_format].mSampleRate )
748                             i_backup_rate_format = j;
749                     }
750                 }
751  
752             }
753  
754             if( i_requested_rate_format >= 0 ) /* We prefer to output at the samplerate of the original audio */
755                 p_sys->stream_format = p_format_list[i_requested_rate_format];
756             else if( i_current_rate_format >= 0 ) /* If not possible, we will try to use the current samplerate of the device */
757                 p_sys->stream_format = p_format_list[i_current_rate_format];
758             else p_sys->stream_format = p_format_list[i_backup_rate_format]; /* And if we have to, any digital format will be just fine (highest rate possible) */
759         }
760         free( p_format_list );
761     }
762     free( p_streams );
763
764     msg_Dbg( p_aout, STREAM_FORMAT_MSG( "original stream format: ", p_sys->sfmt_revert ) );
765
766     if( !AudioStreamChangeFormat( p_aout, p_sys->i_stream_id, p_sys->stream_format ) )
767         return false;
768
769     /* Set the format flags */
770     if( p_sys->stream_format.mFormatFlags & kAudioFormatFlagIsBigEndian )
771         p_aout->output.output.i_format = VLC_CODEC_SPDIFB;
772     else
773         p_aout->output.output.i_format = VLC_CODEC_SPDIFL;
774     p_aout->output.output.i_bytes_per_frame = AOUT_SPDIF_SIZE;
775     p_aout->output.output.i_frame_length = A52_FRAME_NB;
776     p_aout->output.i_nb_samples = p_aout->output.output.i_frame_length;
777     p_aout->output.output.i_rate = (unsigned int)p_sys->stream_format.mSampleRate;
778     aout_FormatPrepare( &p_aout->output.output );
779     aout_VolumeNoneInit( p_aout );
780
781     /* Add IOProc callback */
782     err = AudioDeviceAddIOProc( p_sys->i_selected_dev,
783                                (AudioDeviceIOProc)RenderCallbackSPDIF,
784                                (void *)p_aout );
785
786     if( err != noErr )
787     {
788         msg_Err( p_aout, "AudioDeviceAddIOProc failed: [%4.4s]", (char *)&err );
789         return false;
790     }
791
792     /* Check for the difference between the Device clock and mdate */
793     p_sys->clock_diff = - (mtime_t)
794         AudioConvertHostTimeToNanos( AudioGetCurrentHostTime() ) / 1000;
795     p_sys->clock_diff += mdate();
796  
797     /* Start device */
798     err = AudioDeviceStart( p_sys->i_selected_dev, (AudioDeviceIOProc)RenderCallbackSPDIF );
799     if( err != noErr )
800     {
801         msg_Err( p_aout, "AudioDeviceStart failed: [%4.4s]", (char *)&err );
802
803         err = AudioDeviceRemoveIOProc( p_sys->i_selected_dev,
804                                      (AudioDeviceIOProc)RenderCallbackSPDIF );
805         if( err != noErr )
806         {
807             msg_Err( p_aout, "AudioDeviceRemoveIOProc failed: [%4.4s]", (char *)&err );
808         }
809         return false;
810     }
811
812     return true;
813 }
814
815
816 /*****************************************************************************
817  * Close: Close HAL AudioUnit
818  *****************************************************************************/
819 static void Close( vlc_object_t * p_this )
820 {
821     aout_instance_t     *p_aout = (aout_instance_t *)p_this;
822     struct aout_sys_t   *p_sys = p_aout->output.p_sys;
823     OSStatus            err = noErr;
824     UInt32              i_param_size = 0;
825  
826     if( p_sys->au_unit )
827     {
828         verify_noerr( AudioOutputUnitStop( p_sys->au_unit ) );
829         verify_noerr( AudioUnitUninitialize( p_sys->au_unit ) );
830         verify_noerr( CloseComponent( p_sys->au_unit ) );
831     }
832  
833     if( p_sys->b_digital )
834     {
835         /* Stop device */
836         err = AudioDeviceStop( p_sys->i_selected_dev,
837                                (AudioDeviceIOProc)RenderCallbackSPDIF );
838         if( err != noErr )
839         {
840             msg_Err( p_aout, "AudioDeviceStop failed: [%4.4s]", (char *)&err );
841         }
842
843         /* Remove IOProc callback */
844         err = AudioDeviceRemoveIOProc( p_sys->i_selected_dev,
845                                       (AudioDeviceIOProc)RenderCallbackSPDIF );
846         if( err != noErr )
847         {
848             msg_Err( p_aout, "AudioDeviceRemoveIOProc failed: [%4.4s]", (char *)&err );
849         }
850  
851         if( p_sys->b_revert )
852         {
853             AudioStreamChangeFormat( p_aout, p_sys->i_stream_id, p_sys->sfmt_revert );
854         }
855
856         if( p_sys->b_changed_mixing && p_sys->sfmt_revert.mFormatID != kAudioFormat60958AC3 )
857         {
858             int b_mix;
859             Boolean b_writeable;
860             /* Revert mixable to true if we are allowed to */
861             err = AudioDeviceGetPropertyInfo( p_sys->i_selected_dev, 0, FALSE, kAudioDevicePropertySupportsMixing,
862                                         &i_param_size, &b_writeable );
863
864             err = AudioDeviceGetProperty( p_sys->i_selected_dev, 0, FALSE, kAudioDevicePropertySupportsMixing,
865                                         &i_param_size, &b_mix );
866  
867             if( !err && b_writeable )
868             {
869                 msg_Dbg( p_aout, "mixable is: %d", b_mix );
870                 b_mix = 1;
871                 err = AudioDeviceSetProperty( p_sys->i_selected_dev, 0, 0, FALSE,
872                                     kAudioDevicePropertySupportsMixing, i_param_size, &b_mix );
873             }
874
875             if( err != noErr )
876             {
877                 msg_Err( p_aout, "failed to set mixmode: [%4.4s]", (char *)&err );
878             }
879         }
880     }
881
882     err = AudioHardwareRemovePropertyListener( kAudioHardwarePropertyDevices,
883                                                HardwareListener );
884  
885     if( err != noErr )
886     {
887         msg_Err( p_aout, "AudioHardwareRemovePropertyListener failed: [%4.4s]", (char *)&err );
888     }
889  
890     if( p_sys->i_hog_pid == getpid() )
891     {
892         p_sys->i_hog_pid = -1;
893         i_param_size = sizeof( p_sys->i_hog_pid );
894         err = AudioDeviceSetProperty( p_sys->i_selected_dev, 0, 0, FALSE,
895                                          kAudioDevicePropertyHogMode, i_param_size, &p_sys->i_hog_pid );
896         if( err != noErr ) msg_Err( p_aout, "Could not release hogmode: [%4.4s]", (char *)&err );
897     }
898  
899     free( p_sys );
900 }
901
902 /*****************************************************************************
903  * Play: nothing to do
904  *****************************************************************************/
905 static void Play( aout_instance_t * p_aout )
906 {
907     VLC_UNUSED(p_aout);
908 }
909
910
911 /*****************************************************************************
912  * Probe: Check which devices the OS has, and add them to our audio-device menu
913  *****************************************************************************/
914 static void Probe( aout_instance_t * p_aout )
915 {
916     OSStatus            err = noErr;
917     UInt32              i = 0, i_param_size = 0;
918     AudioDeviceID       devid_def = 0;
919     AudioDeviceID       *p_devices = NULL;
920     vlc_value_t         val, text;
921
922     struct aout_sys_t   *p_sys = p_aout->output.p_sys;
923
924     /* Get number of devices */
925     err = AudioHardwareGetPropertyInfo( kAudioHardwarePropertyDevices,
926                                         &i_param_size, NULL );
927     if( err != noErr )
928     {
929         msg_Err( p_aout, "Could not get number of devices: [%4.4s]", (char *)&err );
930         goto error;
931     }
932
933     p_sys->i_devices = i_param_size / sizeof( AudioDeviceID );
934
935     if( p_sys->i_devices < 1 )
936     {
937         msg_Err( p_aout, "No audio output devices were found." );
938         goto error;
939     }
940
941     msg_Dbg( p_aout, "system has [%ld] device(s)", p_sys->i_devices );
942
943     /* Allocate DeviceID array */
944     p_devices = (AudioDeviceID*)malloc( sizeof(AudioDeviceID) * p_sys->i_devices );
945     if( p_devices == NULL )
946         goto error;
947
948     /* Populate DeviceID array */
949     err = AudioHardwareGetProperty( kAudioHardwarePropertyDevices,
950                                     &i_param_size, p_devices );
951     if( err != noErr )
952     {
953         msg_Err( p_aout, "could not get the device IDs: [%4.4s]", (char *)&err );
954         goto error;
955     }
956
957     /* Find the ID of the default Device */
958     i_param_size = sizeof( AudioDeviceID );
959     err = AudioHardwareGetProperty( kAudioHardwarePropertyDefaultOutputDevice,
960                                     &i_param_size, &devid_def );
961     if( err != noErr )
962     {
963         msg_Err( p_aout, "could not get default audio device: [%4.4s]", (char *)&err );
964         goto error;
965     }
966     p_sys->i_default_dev = devid_def;
967  
968     var_Create( p_aout, "audio-device", VLC_VAR_INTEGER|VLC_VAR_HASCHOICE );
969     text.psz_string = (char*)_("Audio Device");
970     var_Change( p_aout, "audio-device", VLC_VAR_SETTEXT, &text, NULL );
971  
972     for( i = 0; i < p_sys->i_devices; i++ )
973     {
974         char *psz_name;
975         i_param_size = 0;
976
977         /* Retrieve the length of the device name */
978         err = AudioDeviceGetPropertyInfo(
979                     p_devices[i], 0, false,
980                     kAudioDevicePropertyDeviceName,
981                     &i_param_size, NULL);
982         if( err ) goto error;
983
984         /* Retrieve the name of the device */
985         psz_name = (char *)malloc( i_param_size );
986         err = AudioDeviceGetProperty(
987                     p_devices[i], 0, false,
988                     kAudioDevicePropertyDeviceName,
989                     &i_param_size, psz_name);
990         if( err ) goto error;
991
992         msg_Dbg( p_aout, "DevID: %#lx DevName: %s", p_devices[i], psz_name );
993
994         if( !AudioDeviceHasOutput( p_devices[i]) )
995         {
996             msg_Dbg( p_aout, "this device is INPUT only. skipping..." );
997             free( psz_name );
998             continue;
999         }
1000
1001         /* Add the menu entries */
1002         val.i_int = (int)p_devices[i];
1003         text.psz_string = psz_name;
1004         var_Change( p_aout, "audio-device", VLC_VAR_ADDCHOICE, &val, &text );
1005         text.psz_string = NULL;
1006         if( p_sys->i_default_dev == p_devices[i] )
1007         {
1008             /* The default device is the selected device normally */
1009             var_Change( p_aout, "audio-device", VLC_VAR_SETDEFAULT, &val, NULL );
1010             var_Set( p_aout, "audio-device", val );
1011         }
1012
1013         if( AudioDeviceSupportsDigital( p_aout, p_devices[i] ) )
1014         {
1015             val.i_int = (int)p_devices[i] | AOUT_VAR_SPDIF_FLAG;
1016             if( asprintf( &text.psz_string, _("%s (Encoded Output)"), psz_name ) != -1 )
1017             {
1018                 var_Change( p_aout, "audio-device", VLC_VAR_ADDCHOICE, &val, &text );
1019                 free( text.psz_string );
1020                 if( p_sys->i_default_dev == p_devices[i] && config_GetInt( p_aout, "spdif" ) )
1021                 {
1022                     /* We selected to prefer SPDIF output if available
1023                      * then this "dummy" entry should be selected */
1024                     var_Change( p_aout, "audio-device", VLC_VAR_SETDEFAULT, &val, NULL );
1025                     var_Set( p_aout, "audio-device", val );
1026                 }
1027             }
1028         }
1029  
1030         free( psz_name);
1031     }
1032  
1033     /* If a device is already "preselected", then use this device */
1034     var_Get( p_aout->p_libvlc, "macosx-audio-device", &val );
1035     if( val.i_int > 0 )
1036     {
1037         var_Change( p_aout, "audio-device", VLC_VAR_SETDEFAULT, &val, NULL );
1038         var_Set( p_aout, "audio-device", val );
1039     }
1040  
1041     /* If we change the device we want to use, we should renegotiate the audio chain */
1042     var_AddCallback( p_aout, "audio-device", AudioDeviceCallback, NULL );
1043
1044     /* Attach a Listener so that we are notified of a change in the Device setup */
1045     err = AudioHardwareAddPropertyListener( kAudioHardwarePropertyDevices,
1046                                             HardwareListener,
1047                                             (void *)p_aout );
1048     if( err )
1049         goto error;
1050
1051     free( p_devices );
1052     return;
1053
1054 error:
1055     msg_Warn( p_aout, "audio device already in use" );
1056     free( p_devices );
1057     return;
1058 }
1059
1060 /*****************************************************************************
1061  * AudioDeviceHasOutput: Checks if the Device actually provides any outputs at all
1062  *****************************************************************************/
1063 static int AudioDeviceHasOutput( AudioDeviceID i_dev_id )
1064 {
1065     UInt32            dataSize;
1066     Boolean            isWritable;
1067     
1068     verify_noerr( AudioDeviceGetPropertyInfo( i_dev_id, 0, FALSE, kAudioDevicePropertyStreams, &dataSize, &isWritable) );
1069     if (dataSize == 0) return FALSE;
1070  
1071     return TRUE;
1072 }
1073
1074 /*****************************************************************************
1075  * AudioDeviceSupportsDigital: Check i_dev_id for digital stream support.
1076  *****************************************************************************/
1077 static int AudioDeviceSupportsDigital( aout_instance_t *p_aout, AudioDeviceID i_dev_id )
1078 {
1079     OSStatus                    err = noErr;
1080     UInt32                      i_param_size = 0;
1081     AudioStreamID               *p_streams = NULL;
1082     int                         i = 0, i_streams = 0;
1083     bool                  b_return = false;
1084  
1085     /* Retrieve all the output streams */
1086     err = AudioDeviceGetPropertyInfo( i_dev_id, 0, FALSE,
1087                                       kAudioDevicePropertyStreams,
1088                                       &i_param_size, NULL );
1089     if( err != noErr )
1090     {
1091         msg_Err( p_aout, "could not get number of streams: [%4.4s]", (char *)&err );
1092         return false;
1093     }
1094  
1095     i_streams = i_param_size / sizeof( AudioStreamID );
1096     p_streams = (AudioStreamID *)malloc( i_param_size );
1097     if( p_streams == NULL )
1098         return VLC_ENOMEM;
1099  
1100     err = AudioDeviceGetProperty( i_dev_id, 0, FALSE,
1101                                     kAudioDevicePropertyStreams,
1102                                     &i_param_size, p_streams );
1103  
1104     if( err != noErr )
1105     {
1106         msg_Err( p_aout, "could not get number of streams: [%4.4s]", (char *)&err );
1107         return false;
1108     }
1109
1110     for( i = 0; i < i_streams; i++ )
1111     {
1112         if( AudioStreamSupportsDigital( p_aout, p_streams[i] ) )
1113             b_return = true;
1114     }
1115  
1116     free( p_streams );
1117     return b_return;
1118 }
1119
1120 /*****************************************************************************
1121  * AudioStreamSupportsDigital: Check i_stream_id for digital stream support.
1122  *****************************************************************************/
1123 static int AudioStreamSupportsDigital( aout_instance_t *p_aout, AudioStreamID i_stream_id )
1124 {
1125     OSStatus                    err = noErr;
1126     UInt32                      i_param_size = 0;
1127     AudioStreamBasicDescription *p_format_list = NULL;
1128     int                         i = 0, i_formats = 0;
1129     bool                  b_return = false;
1130  
1131     /* Retrieve all the stream formats supported by each output stream */
1132     err = AudioStreamGetPropertyInfo( i_stream_id, 0,
1133                                       kAudioStreamPropertyPhysicalFormats,
1134                                       &i_param_size, NULL );
1135     if( err != noErr )
1136     {
1137         msg_Err( p_aout, "could not get number of streamformats: [%4.4s]", (char *)&err );
1138         return false;
1139     }
1140  
1141     i_formats = i_param_size / sizeof( AudioStreamBasicDescription );
1142     p_format_list = (AudioStreamBasicDescription *)malloc( i_param_size );
1143     if( p_format_list == NULL )
1144         return false;
1145  
1146     err = AudioStreamGetProperty( i_stream_id, 0,
1147                                       kAudioStreamPropertyPhysicalFormats,
1148                                       &i_param_size, p_format_list );
1149     if( err != noErr )
1150     {
1151         msg_Err( p_aout, "could not get the list of streamformats: [%4.4s]", (char *)&err );
1152         free( p_format_list);
1153         p_format_list = NULL;
1154         return false;
1155     }
1156
1157     for( i = 0; i < i_formats; i++ )
1158     {
1159         msg_Dbg( p_aout, STREAM_FORMAT_MSG( "supported format: ", p_format_list[i] ) );
1160  
1161         if( p_format_list[i].mFormatID == 'IAC3' ||
1162                   p_format_list[i].mFormatID == kAudioFormat60958AC3 )
1163         {
1164             b_return = true;
1165         }
1166     }
1167  
1168     free( p_format_list );
1169     return b_return;
1170 }
1171
1172 /*****************************************************************************
1173  * AudioStreamChangeFormat: Change i_stream_id to change_format
1174  *****************************************************************************/
1175 static int AudioStreamChangeFormat( aout_instance_t *p_aout, AudioStreamID i_stream_id, AudioStreamBasicDescription change_format )
1176 {
1177     OSStatus            err = noErr;
1178     UInt32              i_param_size = 0;
1179     int i;
1180
1181     struct { vlc_mutex_t lock; vlc_cond_t cond; } w;
1182  
1183     msg_Dbg( p_aout, STREAM_FORMAT_MSG( "setting stream format: ", change_format ) );
1184
1185     /* Condition because SetProperty is asynchronious */
1186     vlc_cond_init( &w.cond );
1187     vlc_mutex_init( &w.lock );
1188     vlc_mutex_lock( &w.lock );
1189
1190     /* Install the callback */
1191     err = AudioStreamAddPropertyListener( i_stream_id, 0,
1192                                       kAudioStreamPropertyPhysicalFormat,
1193                                       StreamListener, (void *)&w );
1194     if( err != noErr )
1195     {
1196         msg_Err( p_aout, "AudioStreamAddPropertyListener failed: [%4.4s]", (char *)&err );
1197         return false;
1198     }
1199
1200     /* change the format */
1201     err = AudioStreamSetProperty( i_stream_id, 0, 0,
1202                                   kAudioStreamPropertyPhysicalFormat,
1203                                   sizeof( AudioStreamBasicDescription ),
1204                                   &change_format );
1205     if( err != noErr )
1206     {
1207         msg_Err( p_aout, "could not set the stream format: [%4.4s]", (char *)&err );
1208         return false;
1209     }
1210
1211     /* The AudioStreamSetProperty is not only asynchronious (requiring the locks)
1212      * it is also not atomic in its behaviour.
1213      * Therefore we check 5 times before we really give up.
1214      * FIXME: failing isn't actually implemented yet. */
1215     for( i = 0; i < 5; i++ )
1216     {
1217         AudioStreamBasicDescription actual_format;
1218         mtime_t timeout = mdate() + 500000;
1219
1220         if( vlc_cond_timedwait( &w.cond, &w.lock, timeout ) )
1221         {
1222             msg_Dbg( p_aout, "reached timeout" );
1223         }
1224
1225         i_param_size = sizeof( AudioStreamBasicDescription );
1226         err = AudioStreamGetProperty( i_stream_id, 0,
1227                                       kAudioStreamPropertyPhysicalFormat,
1228                                       &i_param_size,
1229                                       &actual_format );
1230
1231         msg_Dbg( p_aout, STREAM_FORMAT_MSG( "actual format in use: ", actual_format ) );
1232         if( actual_format.mSampleRate == change_format.mSampleRate &&
1233             actual_format.mFormatID == change_format.mFormatID &&
1234             actual_format.mFramesPerPacket == change_format.mFramesPerPacket )
1235         {
1236             /* The right format is now active */
1237             break;
1238         }
1239         /* We need to check again */
1240     }
1241  
1242     /* Removing the property listener */
1243     err = AudioStreamRemovePropertyListener( i_stream_id, 0,
1244                                             kAudioStreamPropertyPhysicalFormat,
1245                                             StreamListener );
1246     if( err != noErr )
1247     {
1248         msg_Err( p_aout, "AudioStreamRemovePropertyListener failed: [%4.4s]", (char *)&err );
1249         return false;
1250     }
1251  
1252     /* Destroy the lock and condition */
1253     vlc_mutex_unlock( &w.lock );
1254     vlc_mutex_destroy( &w.lock );
1255     vlc_cond_destroy( &w.cond );
1256  
1257     return true;
1258 }
1259
1260 /*****************************************************************************
1261  * RenderCallbackAnalog: This function is called everytime the AudioUnit wants
1262  * us to provide some more audio data.
1263  * Don't print anything during normal playback, calling blocking function from
1264  * this callback is not allowed.
1265  *****************************************************************************/
1266 static OSStatus RenderCallbackAnalog( vlc_object_t *_p_aout,
1267                                       AudioUnitRenderActionFlags *ioActionFlags,
1268                                       const AudioTimeStamp *inTimeStamp,
1269                                       unsigned int inBusNumber,
1270                                       unsigned int inNumberFrames,
1271                                       AudioBufferList *ioData )
1272 {
1273     AudioTimeStamp  host_time;
1274     mtime_t         current_date = 0;
1275     uint32_t        i_mData_bytes = 0;
1276
1277     aout_instance_t * p_aout = (aout_instance_t *)_p_aout;
1278     struct aout_sys_t * p_sys = p_aout->output.p_sys;
1279
1280     VLC_UNUSED(ioActionFlags);
1281     VLC_UNUSED(inBusNumber);
1282     VLC_UNUSED(inNumberFrames);
1283
1284     host_time.mFlags = kAudioTimeStampHostTimeValid;
1285     AudioDeviceTranslateTime( p_sys->i_selected_dev, inTimeStamp, &host_time );
1286
1287     /* Check for the difference between the Device clock and mdate */
1288     p_sys->clock_diff = - (mtime_t)
1289         AudioConvertHostTimeToNanos( AudioGetCurrentHostTime() ) / 1000;
1290     p_sys->clock_diff += mdate();
1291
1292     current_date = p_sys->clock_diff +
1293                    AudioConvertHostTimeToNanos( host_time.mHostTime ) / 1000;
1294                    //- ((mtime_t) 1000000 / p_aout->output.output.i_rate * 31 ); // 31 = Latency in Frames. retrieve somewhere
1295
1296     if( ioData == NULL && ioData->mNumberBuffers < 1 )
1297     {
1298         msg_Err( p_aout, "no iodata or buffers");
1299         return 0;
1300     }
1301     if( ioData->mNumberBuffers > 1 )
1302         msg_Err( p_aout, "well this is weird. seems like there is more than one buffer..." );
1303
1304
1305     if( p_sys->i_total_bytes > 0 )
1306     {
1307         i_mData_bytes = __MIN( p_sys->i_total_bytes - p_sys->i_read_bytes, ioData->mBuffers[0].mDataByteSize );
1308         vlc_memcpy( ioData->mBuffers[0].mData,
1309                     &p_sys->p_remainder_buffer[p_sys->i_read_bytes],
1310                     i_mData_bytes );
1311         p_sys->i_read_bytes += i_mData_bytes;
1312         current_date += (mtime_t) ( (mtime_t) 1000000 / p_aout->output.output.i_rate ) *
1313                         ( i_mData_bytes / 4 / aout_FormatNbChannels( &p_aout->output.output )  ); // 4 is fl32 specific
1314  
1315         if( p_sys->i_read_bytes >= p_sys->i_total_bytes )
1316             p_sys->i_read_bytes = p_sys->i_total_bytes = 0;
1317     }
1318  
1319     while( i_mData_bytes < ioData->mBuffers[0].mDataByteSize )
1320     {
1321         /* We don't have enough data yet */
1322         aout_buffer_t * p_buffer;
1323         p_buffer = aout_OutputNextBuffer( p_aout, current_date , false );
1324  
1325         if( p_buffer != NULL )
1326         {
1327             uint32_t i_second_mData_bytes = __MIN( p_buffer->i_nb_bytes, ioData->mBuffers[0].mDataByteSize - i_mData_bytes );
1328  
1329             vlc_memcpy( (uint8_t *)ioData->mBuffers[0].mData + i_mData_bytes,
1330                         p_buffer->p_buffer, i_second_mData_bytes );
1331             i_mData_bytes += i_second_mData_bytes;
1332
1333             if( i_mData_bytes >= ioData->mBuffers[0].mDataByteSize )
1334             {
1335                 p_sys->i_total_bytes = p_buffer->i_nb_bytes - i_second_mData_bytes;
1336                 vlc_memcpy( p_sys->p_remainder_buffer,
1337                             &p_buffer->p_buffer[i_second_mData_bytes],
1338                             p_sys->i_total_bytes );
1339             }
1340             else
1341             {
1342                 /* update current_date */
1343                 current_date += (mtime_t) ( (mtime_t) 1000000 / p_aout->output.output.i_rate ) *
1344                                 ( i_second_mData_bytes / 4 / aout_FormatNbChannels( &p_aout->output.output )  ); // 4 is fl32 specific
1345             }
1346             aout_BufferFree( p_buffer );
1347         }
1348         else
1349         {
1350              vlc_memset( (uint8_t *)ioData->mBuffers[0].mData +i_mData_bytes,
1351                          0,ioData->mBuffers[0].mDataByteSize - i_mData_bytes );
1352              i_mData_bytes += ioData->mBuffers[0].mDataByteSize - i_mData_bytes;
1353         }
1354     }
1355     return( noErr );
1356 }
1357
1358 /*****************************************************************************
1359  * RenderCallbackSPDIF: callback for SPDIF audio output
1360  *****************************************************************************/
1361 static OSStatus RenderCallbackSPDIF( AudioDeviceID inDevice,
1362                                     const AudioTimeStamp * inNow,
1363                                     const void * inInputData,
1364                                     const AudioTimeStamp * inInputTime,
1365                                     AudioBufferList * outOutputData,
1366                                     const AudioTimeStamp * inOutputTime,
1367                                     void * threadGlobals )
1368 {
1369     aout_buffer_t * p_buffer;
1370     mtime_t         current_date;
1371
1372     aout_instance_t * p_aout = (aout_instance_t *)threadGlobals;
1373     struct aout_sys_t * p_sys = p_aout->output.p_sys;
1374
1375     VLC_UNUSED(inDevice);
1376     VLC_UNUSED(inInputData);
1377     VLC_UNUSED(inInputTime);
1378
1379     /* Check for the difference between the Device clock and mdate */
1380     p_sys->clock_diff = - (mtime_t)
1381         AudioConvertHostTimeToNanos( inNow->mHostTime ) / 1000;
1382     p_sys->clock_diff += mdate();
1383
1384     current_date = p_sys->clock_diff +
1385                    AudioConvertHostTimeToNanos( inOutputTime->mHostTime ) / 1000;
1386                    //- ((mtime_t) 1000000 / p_aout->output.output.i_rate * 31 ); // 31 = Latency in Frames. retrieve somewhere
1387
1388     p_buffer = aout_OutputNextBuffer( p_aout, current_date, true );
1389
1390 #define BUFFER outOutputData->mBuffers[p_sys->i_stream_index]
1391     if( p_buffer != NULL )
1392     {
1393         if( (int)BUFFER.mDataByteSize != (int)p_buffer->i_nb_bytes)
1394             msg_Warn( p_aout, "bytesize: %d nb_bytes: %d", (int)BUFFER.mDataByteSize, (int)p_buffer->i_nb_bytes );
1395  
1396         /* move data into output data buffer */
1397         vlc_memcpy( BUFFER.mData, p_buffer->p_buffer, p_buffer->i_nb_bytes );
1398         aout_BufferFree( p_buffer );
1399     }
1400     else
1401     {
1402         vlc_memset( BUFFER.mData, 0, BUFFER.mDataByteSize );
1403     }
1404 #undef BUFFER
1405
1406     return( noErr );
1407 }
1408
1409 /*****************************************************************************
1410  * HardwareListener: Warns us of changes in the list of registered devices
1411  *****************************************************************************/
1412 static OSStatus HardwareListener( AudioHardwarePropertyID inPropertyID,
1413                                   void * inClientData )
1414 {
1415     OSStatus err = noErr;
1416     aout_instance_t     *p_aout = (aout_instance_t *)inClientData;
1417
1418     switch( inPropertyID )
1419     {
1420         case kAudioHardwarePropertyDevices:
1421         {
1422             /* something changed in the list of devices */
1423             /* We trigger the audio-device's aout_ChannelsRestart callback */
1424             var_TriggerCallback( p_aout, "audio-device" );
1425             var_Destroy( p_aout, "audio-device" );
1426         }
1427         break;
1428     }
1429
1430     return( err );
1431 }
1432
1433 /*****************************************************************************
1434  * StreamListener
1435  *****************************************************************************/
1436 static OSStatus StreamListener( AudioStreamID inStream,
1437                                 UInt32 inChannel,
1438                                 AudioDevicePropertyID inPropertyID,
1439                                 void * inClientData )
1440 {
1441     OSStatus err = noErr;
1442     struct { vlc_mutex_t lock; vlc_cond_t cond; } * w = inClientData;
1443
1444     VLC_UNUSED(inStream);
1445     VLC_UNUSED(inChannel);
1446  
1447     switch( inPropertyID )
1448     {
1449         case kAudioStreamPropertyPhysicalFormat:
1450             vlc_mutex_lock( &w->lock );
1451             vlc_cond_signal( &w->cond );
1452             vlc_mutex_unlock( &w->lock );
1453             break;
1454
1455         default:
1456             break;
1457     }
1458     return( err );
1459 }
1460
1461 /*****************************************************************************
1462  * AudioDeviceCallback: Callback triggered when the audio-device variable is changed
1463  *****************************************************************************/
1464 static int AudioDeviceCallback( vlc_object_t *p_this, const char *psz_variable,
1465                      vlc_value_t old_val, vlc_value_t new_val, void *param )
1466 {
1467     aout_instance_t *p_aout = (aout_instance_t *)p_this;
1468     var_Set( p_aout->p_libvlc, "macosx-audio-device", new_val );
1469     msg_Dbg( p_aout, "Set Device: %#x", new_val.i_int );
1470     return aout_ChannelsRestart( p_this, psz_variable, old_val, new_val, param );
1471 }
1472