]> git.sesse.net Git - vlc/blobdiff - modules/audio_output/auhal.c
auhal: do not output noise, and robustify output callbacks
[vlc] / modules / audio_output / auhal.c
index b520dc61b273a7cad70e7a5e8aaf811607b607a3..fea6322a41db5e77dd58e082e079196ac906d050 100644 (file)
@@ -79,6 +79,7 @@ struct aout_sys_t
 {
     AudioObjectID               i_default_dev;      /* DeviceID of defaultOutputDevice */
     AudioObjectID               i_selected_dev;     /* DeviceID of the selected device */
+    AudioObjectID               i_new_selected_dev; /* DeviceID of device which will be selected on start */
     bool                        b_selected_dev_is_digital;
     AudioDeviceIOProcID         i_procID;           /* DeviceID of current device */
     bool                        b_digital;          /* Are we running in digital mode? */
@@ -102,25 +103,22 @@ struct aout_sys_t
     AudioStreamBasicDescription sfmt_revert;        /* The original format of the stream */
     bool                        b_revert;           /* Whether we need to revert the stream format */
     bool                        b_changed_mixing;   /* Whether we need to set the mixing mode back */
+
+
     bool                        b_got_first_sample; /* did the aout core provide something to render? */
 
     int                         i_rate;             /* media sample rate */
     int                         i_bytes_per_sample;
 
-    struct audio_device_t       *devices;
+    CFArrayRef                  device_list;
+
+    float                       f_volume;
+    bool                        b_mute;
 
     vlc_mutex_t                 lock;
     vlc_cond_t                  cond;
 };
 
-struct audio_device_t
-{
-    struct audio_device_t *next;
-    UInt32 deviceid;
-    char *name;
-};
-
-
 #pragma mark -
 #pragma mark local prototypes & module descriptor
 
@@ -131,7 +129,6 @@ static int      StartAnalog             (audio_output_t *, audio_sample_format_t
 static int      StartSPDIF              (audio_output_t *, audio_sample_format_t *);
 static void     Stop                    (audio_output_t *);
 
-static int      DeviceList              (audio_output_t *p_aout, char ***namesp, char ***descsp);
 static void     RebuildDeviceList       (audio_output_t *);
 static int      SwitchAudioDevice       (audio_output_t *p_aout, const char *name);
 static int      VolumeSet               (audio_output_t *, float);
@@ -150,6 +147,7 @@ static OSStatus RenderCallbackSPDIF     (AudioDeviceID, const AudioTimeStamp *,
 static OSStatus HardwareListener        (AudioObjectID, UInt32, const AudioObjectPropertyAddress *, void *);
 static OSStatus StreamListener          (AudioObjectID, UInt32, const AudioObjectPropertyAddress *, void *);
 
+static int      RegisterAudioStreamsCallback(audio_output_t *, AudioDeviceID);
 static int      AudioDeviceHasOutput    (AudioDeviceID);
 static int      AudioDeviceSupportsDigital(audio_output_t *, AudioDeviceID);
 static int      AudioStreamSupportsDigital(audio_output_t *, AudioStreamID);
@@ -175,52 +173,80 @@ vlc_module_end ()
 
 static int Open(vlc_object_t *obj)
 {
-    audio_output_t *aout = (audio_output_t *)obj;
-    aout_sys_t *sys = malloc(sizeof (*sys));
-
-    if (unlikely(sys == NULL))
+    audio_output_t *p_aout = (audio_output_t *)obj;
+    aout_sys_t *p_sys = malloc(sizeof (*p_sys));
+    if (unlikely(p_sys == NULL))
         return VLC_ENOMEM;
 
-    vlc_mutex_init(&sys->lock);
-    vlc_cond_init(&sys->cond);
+    OSStatus err = noErr;
 
-    aout->sys = sys;
-    aout->start = Start;
-    aout->stop = Stop;
-    aout->volume_set = VolumeSet;
-    aout->mute_set = MuteSet;
-    aout->device_enum = DeviceList;
-    aout->sys->devices = NULL;
-    aout->device_select = SwitchAudioDevice;
+    vlc_mutex_init(&p_sys->lock);
+    vlc_cond_init(&p_sys->cond);
+    p_sys->b_digital = false;
+
+    p_aout->sys = p_sys;
+    p_aout->start = Start;
+    p_aout->stop = Stop;
+    p_aout->volume_set = VolumeSet;
+    p_aout->mute_set = MuteSet;
+    p_aout->device_select = SwitchAudioDevice;
+    p_sys->device_list = CFArrayCreate(kCFAllocatorDefault, NULL, 0, NULL);
+
+    /* Attach a Listener so that we are notified of a change in the Device setup */
+    AudioObjectPropertyAddress audioDevicesAddress = { kAudioHardwarePropertyDevices, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster };
+    err = AudioObjectAddPropertyListener(kAudioObjectSystemObject, &audioDevicesAddress, HardwareListener, (void *)p_aout);
+    if (err != noErr)
+        msg_Warn(p_aout, "failed to add listener for audio device configuration [%4.4s]", (char *)&err);
 
-    RebuildDeviceList(aout);
+    RebuildDeviceList(p_aout);
 
     /* remember the volume */
-    aout_VolumeReport(aout, var_InheritInteger(aout, "auhal-volume") / (float)AOUT_VOLUME_DEFAULT);
-    MuteSet(aout, var_InheritBool(aout, "mute"));
+    p_sys->f_volume = var_InheritInteger(p_aout, "auhal-volume") / (float)AOUT_VOLUME_DEFAULT;
+    aout_VolumeReport(p_aout, p_sys->f_volume);
+    p_sys->b_mute = var_InheritBool(p_aout, "mute");
+    aout_MuteReport(p_aout, p_sys->b_mute);
 
-    SwitchAudioDevice(aout, config_GetPsz(aout, "auhal-audio-device"));
+    SwitchAudioDevice(p_aout, config_GetPsz(p_aout, "auhal-audio-device"));
 
     return VLC_SUCCESS;
 }
 
 static void Close(vlc_object_t *obj)
 {
-    audio_output_t *aout = (audio_output_t *)obj;
-    aout_sys_t *sys = aout->sys;
+    audio_output_t *p_aout = (audio_output_t *)obj;
+    aout_sys_t *p_sys = p_aout->sys;
 
-    config_PutPsz(aout, "auhal-audio-device", aout_DeviceGet(aout));
+    OSStatus err = noErr;
+
+    /* remove audio devices callback */
+    AudioObjectPropertyAddress audioDevicesAddress = { kAudioHardwarePropertyDevices, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster };
+    err = AudioObjectRemovePropertyListener(kAudioObjectSystemObject, &audioDevicesAddress, HardwareListener, (void *)p_aout);
+    if (err != noErr)
+        msg_Err(p_aout, "AudioHardwareRemovePropertyListener failed [%4.4s]", (char *)&err);
 
-    for (struct audio_device_t * device = sys->devices, *next; device != NULL; device = next) {
-        next = device->next;
-        free(device->name);
-        free(device);
+
+    /* remove audio device alive callback */
+    AudioObjectPropertyAddress deviceAliveAddress = { kAudioDevicePropertyDeviceIsAlive, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster };
+    err = AudioObjectRemovePropertyListener(p_sys->i_selected_dev, &deviceAliveAddress, HardwareListener, (void *)p_aout);
+    if (err != noErr)
+        msg_Err(p_aout, "failed to remove audio device life checker [%4.4s]", (char *)&err);
+
+    /* remove audio streams callback */
+    if (p_sys->i_stream_id > 0) {
+        AudioObjectPropertyAddress physicalFormatsAddress = { kAudioStreamPropertyAvailablePhysicalFormats, kAudioObjectPropertyScopeGlobal, 0 };
+        err = AudioObjectRemovePropertyListener(p_sys->i_stream_id, &physicalFormatsAddress, HardwareListener, (void *)p_aout);
+        if (err != noErr)
+            msg_Err(p_aout, "failed to remove audio device property streams callback [%4.4s]", (char *)&err);
     }
 
-    vlc_mutex_destroy(&sys->lock);
-    vlc_cond_destroy(&sys->cond);
+    config_PutPsz(p_aout, "auhal-audio-device", aout_DeviceGet(p_aout));
 
-    free(sys);
+    CFRelease(p_sys->device_list);
+
+    vlc_mutex_destroy(&p_sys->lock);
+    vlc_cond_destroy(&p_sys->cond);
+
+    free(p_sys);
 }
 
 static int Start(audio_output_t *p_aout, audio_sample_format_t *restrict fmt)
@@ -247,6 +273,8 @@ static int Start(audio_output_t *p_aout, audio_sample_format_t *restrict fmt)
     p_sys->b_changed_mixing = false;
     p_sys->i_bytes_per_sample = 0;
 
+    p_sys->i_selected_dev = p_sys->i_new_selected_dev;
+
     aout_FormatPrint(p_aout, "VLC is looking for:", fmt);
 
     msg_Dbg(p_aout, "attempting to use device %i", p_sys->i_selected_dev);
@@ -260,15 +288,27 @@ static int Start(audio_output_t *p_aout, audio_sample_format_t *restrict fmt)
 
     if (err != noErr) {
         /* Be tolerant, only give a warning here */
-        msg_Warn(p_aout, "could not check whether device [0x%x] is alive: %4.4s",
+        msg_Warn(p_aout, "could not check whether device [0x%x] is alive [%4.4s]",
                            (unsigned int)p_sys->i_selected_dev, (char *)&err);
         b_alive = false;
     }
 
-    if (!b_alive) {
-        msg_Warn(p_aout, "selected audio device is not alive, switching to default device with id %i", p_sys->i_default_dev);
-        p_sys->i_selected_dev = p_sys->i_default_dev;
-        p_sys->b_selected_dev_is_digital = false;
+    if (!b_alive || p_sys->i_selected_dev == 0) {
+        msg_Warn(p_aout, "selected audio device is not alive, switching to default device");
+
+        AudioObjectID defaultDeviceID = 0;
+        UInt32 propertySize = 0;
+        AudioObjectPropertyAddress defaultDeviceAddress = { kAudioHardwarePropertyDefaultOutputDevice, kAudioDevicePropertyScopeOutput, kAudioObjectPropertyElementMaster };
+        propertySize = sizeof(AudioObjectID);
+        err = AudioObjectGetPropertyData(kAudioObjectSystemObject, &defaultDeviceAddress, 0, NULL, &propertySize, &defaultDeviceID);
+        if (err != noErr) {
+            msg_Err(p_aout, "could not get default audio device [%4.4s]", (char *)&err);
+            goto error;
+        }
+        else
+            msg_Dbg(p_aout, "using default audio device %i", defaultDeviceID);
+
+        p_sys->i_selected_dev = defaultDeviceID;
     }
 
     // recheck if device still supports digital
@@ -277,13 +317,15 @@ static int Start(audio_output_t *p_aout, audio_sample_format_t *restrict fmt)
         b_start_digital = false;
 
     if (b_start_digital)
-        msg_Dbg(p_aout, "Use audio device for digital output");
+        msg_Dbg(p_aout, "Using audio device for digital output");
+    else
+        msg_Dbg(p_aout, "Audio device supports PCM mode only");
 
     /* add a callback to see if the device dies later on */
     err = AudioObjectAddPropertyListener(p_sys->i_selected_dev, &audioDeviceAliveAddress, HardwareListener, (void *)p_aout);
     if (err != noErr) {
         /* Be tolerant, only give a warning here */
-        msg_Warn(p_aout, "could not set alive check callback on device [0x%x]: %4.4s",
+        msg_Warn(p_aout, "could not set alive check callback on device [0x%x] [%4.4s]",
                  (unsigned int)p_sys->i_selected_dev, (char *)&err);
     }
 
@@ -294,7 +336,7 @@ static int Start(audio_output_t *p_aout, audio_sample_format_t *restrict fmt)
     err = AudioObjectGetPropertyData(p_sys->i_selected_dev, &audioDeviceHogModeAddress, 0, NULL, &i_param_size, &p_sys->i_hog_pid);
     if (err != noErr) {
         /* This is not a fatal error. Some drivers simply don't support this property */
-        msg_Warn(p_aout, "could not check whether device is hogged: %4.4s",
+        msg_Warn(p_aout, "could not check whether device is hogged [%4.4s]",
                  (char *)&err);
         p_sys->i_hog_pid = -1;
     }
@@ -361,13 +403,13 @@ static int StartAnalog(audio_output_t *p_aout, audio_sample_format_t *fmt)
 
     p_sys->au_component = AudioComponentFindNext(NULL, &desc);
     if (p_sys->au_component == NULL) {
-        msg_Warn(p_aout, "we cannot find our HAL component");
+        msg_Err(p_aout, "cannot find any HAL component, PCM output failed");
         return false;
     }
 
     err = AudioComponentInstanceNew(p_sys->au_component, &p_sys->au_unit);
     if (err != noErr) {
-        msg_Warn(p_aout, "we cannot open our HAL component");
+        msg_Err(p_aout, "cannot open HAL component, PCM output failed [%4.4s]", (char *)&err);
         return false;
     }
 
@@ -380,7 +422,7 @@ static int StartAnalog(audio_output_t *p_aout, audio_sample_format_t *fmt)
                          sizeof(AudioObjectID));
 
     if (err != noErr) {
-        msg_Warn(p_aout, "we cannot select the audio device");
+        msg_Err(p_aout, "cannot select audio output device, PCM output failed [%4.4s]", (char *)&err);
         return false;
     }
 
@@ -394,9 +436,10 @@ static int StartAnalog(audio_output_t *p_aout, audio_sample_format_t *fmt)
                                    &DeviceFormat,
                                    &i_param_size);
 
-    if (err != noErr)
+    if (err != noErr) {
+        msg_Err(p_aout, "failed to detect supported stream formats [%4.4s]", (char *)&err);
         return false;
-    else
+    else
         msg_Dbg(p_aout, STREAM_FORMAT_MSG("current format is: ", DeviceFormat));
 
     /* Get the channel layout of the device side of the unit (vlc -> unit -> device) */
@@ -491,16 +534,16 @@ static int StartAnalog(audio_output_t *p_aout, audio_sample_format_t *fmt)
             }
             if (fmt->i_physical_channels == 0) {
                 fmt->i_physical_channels = AOUT_CHANS_STEREO;
-                msg_Err(p_aout, "You should configure your speaker layout with Audio Midi Setup Utility in /Applications/Utilities. Now using Stereo mode.");
+                msg_Err(p_aout, "You should configure your speaker layout with Audio Midi Setup in /Applications/Utilities. VLC will output Stereo only.");
                 dialog_Fatal(p_aout, _("Audio device is not configured"), "%s",
                                 _("You should configure your speaker layout with "
-                                  "the \"Audio Midi Setup\" utility in /Applications/"
-                                  "Utilities. Stereo mode is being used now."));
+                                  "\"Audio Midi Setup\" in /Applications/"
+                                  "Utilities. VLC will output Stereo only."));
             }
         }
         free(layout);
     } else {
-        msg_Warn(p_aout, "this driver does not support kAudioDevicePropertyPreferredChannelLayout. BAD DRIVER AUTHOR !!!");
+        msg_Warn(p_aout, "device driver does not support kAudioDevicePropertyPreferredChannelLayout - using stereo fallback [%4.4s]", (char *)&err);
         fmt->i_physical_channels = AOUT_CHANS_STEREO;
     }
 
@@ -557,7 +600,7 @@ static int StartAnalog(audio_output_t *p_aout, audio_sample_format_t *fmt)
 
             p_aout->sys->chans_to_reorder = aout_CheckChannelReorder(NULL, chans_out, fmt->i_physical_channels, p_aout->sys->chan_table);
             if (p_aout->sys->chans_to_reorder)
-                msg_Dbg(p_aout, "channel reordering needed");
+                msg_Dbg(p_aout, "channel reordering needed for 6.1 output");
 
             break;
         case 8:
@@ -574,7 +617,7 @@ static int StartAnalog(audio_output_t *p_aout, audio_sample_format_t *fmt)
 
             p_aout->sys->chans_to_reorder = aout_CheckChannelReorder(NULL, chans_out, fmt->i_physical_channels, p_aout->sys->chan_table);
             if (p_aout->sys->chans_to_reorder)
-                msg_Dbg(p_aout, "channel reordering needed");
+                msg_Dbg(p_aout, "channel reordering needed for 7.1 output");
 
             break;
     }
@@ -652,14 +695,8 @@ static int StartAnalog(audio_output_t *p_aout, audio_sample_format_t *fmt)
     p_sys->b_got_first_sample = false;
 
     /* Set volume for output unit */
-    float volume = var_InheritInteger(p_aout, "auhal-volume") / (float)AOUT_VOLUME_DEFAULT;
-    volume = volume * volume * volume;
-    verify_noerr(AudioUnitSetParameter(p_sys->au_unit,
-                                    kHALOutputParam_Volume,
-                                    kAudioUnitScope_Global,
-                                    0,
-                                    volume,
-                                    0));
+    VolumeSet(p_aout, p_sys->f_volume);
+    MuteSet(p_aout, p_sys->b_mute);
 
     return true;
 }
@@ -667,7 +704,7 @@ static int StartAnalog(audio_output_t *p_aout, audio_sample_format_t *fmt)
 /*
  * StartSPDIF: Setup an encoded digital stream (SPDIF) output
  */
-static int StartSPDIF (audio_output_t * p_aout, audio_sample_format_t *fmt)
+static int StartSPDIF(audio_output_t * p_aout, audio_sample_format_t *fmt)
 {
     struct aout_sys_t       *p_sys = p_aout->sys;
     OSStatus                err = noErr;
@@ -687,7 +724,7 @@ static int StartSPDIF (audio_output_t * p_aout, audio_sample_format_t *fmt)
     err = AudioObjectSetPropertyData(p_sys->i_selected_dev, &audioDeviceHogModeAddress, 0, NULL, i_param_size, &p_sys->i_hog_pid);
 
     if (err != noErr) {
-        msg_Err(p_aout, "failed to set hogmode: [%4.4s]", (char *)&err);
+        msg_Err(p_aout, "failed to set hogmode [%4.4s]", (char *)&err);
         return false;
     }
 
@@ -706,7 +743,7 @@ static int StartSPDIF (audio_output_t * p_aout, audio_sample_format_t *fmt)
         }
 
         if (err != noErr) {
-            msg_Err(p_aout, "failed to set mixmode: [%4.4s]", (char *)&err);
+            msg_Err(p_aout, "failed to set mixmode [%4.4s]", (char *)&err);
             return false;
         }
     }
@@ -715,7 +752,7 @@ static int StartSPDIF (audio_output_t * p_aout, audio_sample_format_t *fmt)
     AudioObjectPropertyAddress streamsAddress = { kAudioDevicePropertyStreams, kAudioDevicePropertyScopeOutput, kAudioObjectPropertyElementMaster };
     err = AudioObjectGetPropertyDataSize(p_sys->i_selected_dev, &streamsAddress, 0, NULL, &i_param_size);
     if (err != noErr) {
-        msg_Err(p_aout, "could not get number of streams: [%4.4s]", (char *)&err);
+        msg_Err(p_aout, "could not get size of stream description packet [%4.4s]", (char *)&err);
         return false;
     }
 
@@ -727,7 +764,7 @@ static int StartSPDIF (audio_output_t * p_aout, audio_sample_format_t *fmt)
     err = AudioObjectGetPropertyData(p_sys->i_selected_dev, &streamsAddress, 0, NULL, &i_param_size, p_streams);
 
     if (err != noErr) {
-        msg_Err(p_aout, "could not get number of streams: [%4.4s]", (char *)&err);
+        msg_Err(p_aout, "could not fetch stream descriptions [%4.4s]", (char *)&err);
         free(p_streams);
         return false;
     }
@@ -742,7 +779,7 @@ static int StartSPDIF (audio_output_t * p_aout, audio_sample_format_t *fmt)
         /* Retrieve all the stream formats supported by each output stream */
         err = AudioObjectGetPropertyDataSize(p_streams[i], &physicalFormatsAddress, 0, NULL, &i_param_size);
         if (err != noErr) {
-            msg_Err(p_aout, "could not get number of streamformats: [%s] (%i)", (char *)&err, (int32_t)err);
+            msg_Err(p_aout, "could not get number of streamformats: [%4.4s] (%i)", (char *)&err, (int32_t)err);
             continue;
         }
 
@@ -784,7 +821,7 @@ static int StartSPDIF (audio_output_t * p_aout, audio_sample_format_t *fmt)
                 i_param_size = sizeof(p_sys->sfmt_revert);
                 err = AudioObjectGetPropertyData(p_sys->i_stream_id, &currentPhysicalFormatAddress, 0, NULL, &i_param_size, &p_sys->sfmt_revert);
                 if (err != noErr) {
-                    msg_Err(p_aout, "could not retrieve the original streamformat: [%4.4s]", (char *)&err);
+                    msg_Err(p_aout, "could not retrieve the original streamformat [%4.4s]", (char *)&err);
                     continue;
                 }
                 p_sys->b_revert = true;
@@ -819,17 +856,12 @@ static int StartSPDIF (audio_output_t * p_aout, audio_sample_format_t *fmt)
     }
     free(p_streams);
 
-    /* get notified when we don't have spdif-output anymore */
-    err = AudioObjectAddPropertyListener(p_sys->i_stream_id, &physicalFormatsAddress, HardwareListener, (void *)p_aout);
-    if (err != noErr) {
-        msg_Warn(p_aout, "could not set audio device property streams callback on device: %4.4s",
-                 (char *)&err);
-    }
-
     msg_Dbg(p_aout, STREAM_FORMAT_MSG("original stream format: ", p_sys->sfmt_revert));
 
-    if (!AudioStreamChangeFormat(p_aout, p_sys->i_stream_id, p_sys->stream_format))
+    if (!AudioStreamChangeFormat(p_aout, p_sys->i_stream_id, p_sys->stream_format)) {
+        msg_Err(p_aout, "failed to change stream format for SPDIF output");
         return false;
+    }
 
     /* Set the format flags */
     if (p_sys->stream_format.mFormatFlags & kAudioFormatFlagIsBigEndian)
@@ -848,7 +880,7 @@ static int StartSPDIF (audio_output_t * p_aout, audio_sample_format_t *fmt)
                                    (void *)p_aout,
                                    &p_sys->i_procID);
     if (err != noErr) {
-        msg_Err(p_aout, "AudioDeviceCreateIOProcID failed: [%4.4s]", (char *)&err);
+        msg_Err(p_aout, "Failed to create Process ID [%4.4s]", (char *)&err);
         return false;
     }
 
@@ -860,11 +892,11 @@ static int StartSPDIF (audio_output_t * p_aout, audio_sample_format_t *fmt)
     /* Start device */
     err = AudioDeviceStart(p_sys->i_selected_dev, p_sys->i_procID);
     if (err != noErr) {
-        msg_Err(p_aout, "AudioDeviceStart failed: [%4.4s]", (char *)&err);
+        msg_Err(p_aout, "Failed to start audio device [%4.4s]", (char *)&err);
 
         err = AudioDeviceDestroyIOProcID(p_sys->i_selected_dev, p_sys->i_procID);
         if (err != noErr)
-            msg_Err(p_aout, "AudioDeviceDestroyIOProcID failed: [%4.4s]", (char *)&err);
+            msg_Err(p_aout, "Failed to destroy process ID [%4.4s]", (char *)&err);
 
         return false;
     }
@@ -881,18 +913,6 @@ static void Stop(audio_output_t *p_aout)
     OSStatus            err = noErr;
     UInt32              i_param_size = 0;
 
-    AudioObjectPropertyAddress deviceAliveAddress = { kAudioDevicePropertyDeviceIsAlive, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster };
-    err = AudioObjectRemovePropertyListener(p_sys->i_selected_dev, &deviceAliveAddress, HardwareListener, (void *)p_aout);
-    if (err != noErr)
-        msg_Err(p_aout, "failed to remove audio device life checker: [%4.4s]", (char *)&err);
-
-    if (p_sys->b_digital) {
-        AudioObjectPropertyAddress physicalFormatsAddress = { kAudioStreamPropertyAvailablePhysicalFormats, kAudioObjectPropertyScopeGlobal, 0 };
-        err = AudioObjectRemovePropertyListener(p_sys->i_stream_id, &physicalFormatsAddress, HardwareListener, (void *)p_aout);
-        if (err != noErr)
-            msg_Err(p_aout, "failed to remove audio device property streams callback: [%4.4s]", (char *)&err);
-    }
-
     if (p_sys->au_unit) {
         verify_noerr(AudioOutputUnitStop(p_sys->au_unit));
         verify_noerr(AudioUnitUninitialize(p_sys->au_unit));
@@ -904,13 +924,13 @@ static void Stop(audio_output_t *p_aout)
         err = AudioDeviceStop(p_sys->i_selected_dev,
                                p_sys->i_procID);
         if (err != noErr)
-            msg_Err(p_aout, "AudioDeviceStop failed: [%4.4s]", (char *)&err);
+            msg_Err(p_aout, "Failed to stop audio device [%4.4s]", (char *)&err);
 
         /* Remove IOProc callback */
         err = AudioDeviceDestroyIOProcID(p_sys->i_selected_dev,
                                           p_sys->i_procID);
         if (err != noErr)
-            msg_Err(p_aout, "AudioDeviceDestroyIOProcID failed: [%4.4s]", (char *)&err);
+            msg_Err(p_aout, "Failed to destroy Process ID [%4.4s]", (char *)&err);
 
         if (p_sys->b_revert)
             AudioStreamChangeFormat(p_aout, p_sys->i_stream_id, p_sys->sfmt_revert);
@@ -930,16 +950,10 @@ static void Stop(audio_output_t *p_aout)
             }
 
             if (err != noErr)
-                msg_Err(p_aout, "failed to set mixmode: [%4.4s]", (char *)&err);
+                msg_Err(p_aout, "failed to re-set mixmode [%4.4s]", (char *)&err);
         }
     }
 
-    AudioObjectPropertyAddress audioDevicesAddress = { kAudioHardwarePropertyDevices, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster };
-    err = AudioObjectRemovePropertyListener(kAudioObjectSystemObject, &audioDevicesAddress, HardwareListener, (void *)p_aout);
-
-    if (err != noErr)
-        msg_Err(p_aout, "AudioHardwareRemovePropertyListener failed: [%4.4s]", (char *)&err);
-
     if (p_sys->i_hog_pid == getpid()) {
         p_sys->i_hog_pid = -1;
         i_param_size = sizeof(p_sys->i_hog_pid);
@@ -948,10 +962,11 @@ static void Stop(audio_output_t *p_aout)
             kAudioObjectPropertyElementMaster };
         err = AudioObjectSetPropertyData(p_sys->i_selected_dev, &audioDeviceHogModeAddress, 0, NULL, i_param_size, &p_sys->i_hog_pid);
         if (err != noErr)
-            msg_Err(p_aout, "Could not release hogmode: [%4.4s]", (char *)&err);
+            msg_Err(p_aout, "Failed to release hogmode [%4.4s]", (char *)&err);
     }
 
     p_sys->i_bytes_per_sample = 0;
+    p_sys->b_digital = false;
 
     /* clean-up circular buffer */
     TPCircularBufferCleanup(&p_sys->circular_buffer);
@@ -960,61 +975,26 @@ static void Stop(audio_output_t *p_aout)
 #pragma mark -
 #pragma mark core interaction
 
-static int DeviceList(audio_output_t *p_aout, char ***namesp, char ***descsp)
+static void ReportDevice(audio_output_t *p_aout, UInt32 i_id, char *name)
 {
-    struct aout_sys_t   *p_sys = p_aout->sys;
-    char **names, **descs;
-    unsigned n = 0;
+    char deviceid[10];
+    sprintf(deviceid, "%i", i_id);
 
-    for (struct audio_device_t *device = p_sys->devices; device != NULL; device = device->next)
-        n++;
-
-    *namesp = names = xmalloc(sizeof(*names) * n);
-    *descsp = descs = xmalloc(sizeof(*descs) * n);
-
-    char deviceid[100];
-    for (struct audio_device_t *device = p_sys->devices; device != NULL; device = device->next) {
-        sprintf(deviceid, "%i", device->deviceid);
-        *(names++) = strdup(deviceid);
-        *(descs++) = strdup(device->name);
-    }
-
-    return n;
-}
-
-static void add_device_to_list(audio_output_t * p_aout, UInt32 i_id, char *name)
-{
-    struct aout_sys_t *p_sys = p_aout->sys;
-
-    struct audio_device_t *device = malloc(sizeof(*device));
-    if (unlikely(device == NULL))
-        return;
-
-    device->next = p_sys->devices;
-    device->deviceid = i_id;
-    device->name = strdup(name);
-
-    p_sys->devices = device;
+    aout_HotplugReport(p_aout, deviceid, name);
 }
 
 static void RebuildDeviceList(audio_output_t * p_aout)
 {
     OSStatus            err = noErr;
     UInt32              propertySize = 0;
-    AudioObjectID       defaultDeviceID = 0;
     AudioObjectID       *deviceIDs;
     UInt32              numberOfDevices;
+    CFMutableArrayRef   currentListOfDevices;
 
     struct aout_sys_t   *p_sys = p_aout->sys;
 
-    if (p_sys->devices) {
-        for (struct audio_device_t * device = p_sys->devices, *next; device != NULL; device = next) {
-            next = device->next;
-            free(device->name);
-            free(device);
-        }
-    }
-    p_sys->devices = NULL;
+    /* setup local array */
+    currentListOfDevices = CFArrayCreateMutable(kCFAllocatorDefault, 0, NULL);
 
     /* Get number of devices */
     AudioObjectPropertyAddress audioDevicesAddress = { kAudioHardwarePropertyDevices, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster };
@@ -1027,7 +1007,7 @@ static void RebuildDeviceList(audio_output_t * p_aout)
     numberOfDevices = propertySize / sizeof(AudioDeviceID);
 
     if (numberOfDevices < 1) {
-        msg_Err(p_aout, "No audio output devices were found.");
+        msg_Err(p_aout, "No audio output devices found.");
         return;
     }
     msg_Dbg(p_aout, "found %i audio device(s)", numberOfDevices);
@@ -1040,19 +1020,9 @@ static void RebuildDeviceList(audio_output_t * p_aout)
     /* Populate DeviceID array */
     err = AudioObjectGetPropertyData(kAudioObjectSystemObject, &audioDevicesAddress, 0, NULL, &propertySize, deviceIDs);
     if (err != noErr) {
-        msg_Err(p_aout, "could not get the device IDs: [%4.4s]", (char *)&err);
-        return;
-    }
-
-    /* Find the ID of the default Device */
-    AudioObjectPropertyAddress defaultDeviceAddress = { kAudioHardwarePropertyDefaultOutputDevice, kAudioDevicePropertyScopeOutput, kAudioObjectPropertyElementMaster };
-    propertySize = sizeof(AudioObjectID);
-    err= AudioObjectGetPropertyData(kAudioObjectSystemObject, &defaultDeviceAddress, 0, NULL, &propertySize, &defaultDeviceID);
-    if (err != noErr) {
-        msg_Err(p_aout, "could not get default audio device: [%4.4s]", (char *)&err);
+        msg_Err(p_aout, "could not get the device IDs [%4.4s]", (char *)&err);
         return;
     }
-    p_sys->i_default_dev = defaultDeviceID;
 
     AudioObjectPropertyAddress deviceNameAddress = { kAudioObjectPropertyName, kAudioObjectPropertyScopeGlobal, kAudioObjectPropertyElementMaster };
 
@@ -1089,7 +1059,8 @@ static void RebuildDeviceList(audio_output_t * p_aout)
             continue;
         }
 
-        add_device_to_list(p_aout, i_id, psz_name);
+        ReportDevice(p_aout, i_id, psz_name);
+        CFArrayAppendValue(currentListOfDevices, CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt32Type, &i_id));
 
         if (AudioDeviceSupportsDigital(p_aout, deviceIDs[i])) {
             b_digital = true;
@@ -1097,20 +1068,41 @@ static void RebuildDeviceList(audio_output_t * p_aout)
             char *psz_encoded_name = nil;
             asprintf(&psz_encoded_name, _("%s (Encoded Output)"), psz_name);
             i_id = i_id | AOUT_VAR_SPDIF_FLAG;
-            add_device_to_list(p_aout, i_id, psz_encoded_name);
+            ReportDevice(p_aout, i_id, psz_encoded_name);
+            CFArrayAppendValue(currentListOfDevices, CFNumberCreate(kCFAllocatorDefault, kCFNumberSInt32Type, &i_id));
             free(psz_encoded_name);
         }
 
+        // TODO: only register once for each device
+        RegisterAudioStreamsCallback(p_aout, deviceIDs[i]);
+
         CFRelease(device_name_ref);
         free(psz_name);
     }
 
-    add_device_to_list(p_aout, 0, _("System Sound Output Device"));
+    CFIndex count = 0;
+    if (p_sys->device_list)
+        count = CFArrayGetCount(p_sys->device_list);
 
-    /* Attach a Listener so that we are notified of a change in the Device setup */
-    err = AudioObjectAddPropertyListener(kAudioObjectSystemObject, &audioDevicesAddress, HardwareListener, (void *)p_aout);
-    if (err != noErr)
-        msg_Warn(p_aout, "failed to add listener for audio device configuration (%i)", err);
+    if (count > 0) {
+        CFNumberRef cfn_device_id;
+        int i_device_id = 0;
+        for (CFIndex x = 0; x < count; x++) {
+            if (!CFArrayContainsValue(currentListOfDevices, CFRangeMake(0, count), CFArrayGetValueAtIndex(p_sys->device_list, x))) {
+                cfn_device_id = CFArrayGetValueAtIndex(p_sys->device_list, x);
+
+                if (cfn_device_id) {
+                    CFNumberGetValue(cfn_device_id, kCFNumberSInt32Type, &i_device_id);
+                    ReportDevice(p_aout, i_device_id, NULL);
+                }
+            }
+        }
+    }
+    CFRelease(p_sys->device_list);
+    p_sys->device_list = CFArrayCreateCopy(kCFAllocatorDefault, currentListOfDevices);
+    CFRelease(currentListOfDevices);
+
+    ReportDevice(p_aout, 0, _("System Sound Output Device"));
 
     free(deviceIDs);
 }
@@ -1120,17 +1112,17 @@ static int SwitchAudioDevice(audio_output_t *p_aout, const char *name)
     struct aout_sys_t *p_sys = p_aout->sys;
 
     if (name)
-        p_sys->i_selected_dev = atoi(name);
+        p_sys->i_new_selected_dev = atoi(name);
     else
-        p_sys->i_selected_dev = 0;
+        p_sys->i_new_selected_dev = 0;
 
-    bool b_supports_digital = (p_sys->i_selected_dev & AOUT_VAR_SPDIF_FLAG);
+    bool b_supports_digital = (p_sys->i_new_selected_dev & AOUT_VAR_SPDIF_FLAG);
     if (b_supports_digital)
         p_sys->b_selected_dev_is_digital = true;
     else
         p_sys->b_selected_dev_is_digital = false;
 
-    p_sys->i_selected_dev = p_sys->i_selected_dev & ~AOUT_VAR_SPDIF_FLAG;
+    p_sys->i_new_selected_dev = p_sys->i_new_selected_dev & ~AOUT_VAR_SPDIF_FLAG;
 
     aout_DeviceReport(p_aout, name);
     aout_RestartRequest(p_aout, AOUT_RESTART_OUTPUT);
@@ -1143,6 +1135,10 @@ static int VolumeSet(audio_output_t * p_aout, float volume)
     struct aout_sys_t *p_sys = p_aout->sys;
     OSStatus ostatus;
 
+    if(p_sys->b_digital)
+        return VLC_EGENERIC;
+
+    p_sys->f_volume = volume;
     aout_VolumeReport(p_aout, volume);
 
     /* Set volume for output unit */
@@ -1164,12 +1160,15 @@ static int MuteSet(audio_output_t * p_aout, bool mute)
     struct   aout_sys_t *p_sys = p_aout->sys;
     OSStatus ostatus;
 
+    if(p_sys->b_digital)
+        return VLC_EGENERIC;
+
+    p_sys->b_mute = mute;
     aout_MuteReport(p_aout, mute);
 
     float volume = .0;
-
     if (!mute)
-        volume = var_InheritInteger(p_aout, "auhal-volume") / (float)AOUT_VOLUME_DEFAULT;
+        volume = p_sys->f_volume;
 
     ostatus = AudioUnitSetParameter(p_sys->au_unit,
                                     kHALOutputParam_Volume,
@@ -1184,7 +1183,7 @@ static int MuteSet(audio_output_t * p_aout, bool mute)
 #pragma mark -
 #pragma mark actual playback
 
-static void Play (audio_output_t * p_aout, block_t * p_block)
+static void Play(audio_output_t * p_aout, block_t * p_block)
 {
     struct aout_sys_t *p_sys = p_aout->sys;
 
@@ -1215,7 +1214,7 @@ static void Play (audio_output_t * p_aout, block_t * p_block)
     block_Release(p_block);
 }
 
-static void Pause (audio_output_t *p_aout, bool pause, mtime_t date)
+static void Pause(audio_output_t *p_aout, bool pause, mtime_t date)
 {
     struct aout_sys_t * p_sys = p_aout->sys;
     VLC_UNUSED(date);
@@ -1291,7 +1290,7 @@ static OSStatus RenderCallbackAnalog(vlc_object_t *p_obj,
     audio_output_t * p_aout = (audio_output_t *)p_obj;
     struct aout_sys_t * p_sys = p_aout->sys;
 
-    int bytesToCopy = ioData->mBuffers[0].mDataByteSize;
+    int bytesRequested = ioData->mBuffers[0].mDataByteSize;
     Float32 *targetBuffer = (Float32*)ioData->mBuffers[0].mData;
 
     vlc_mutex_lock(&p_sys->lock);
@@ -1302,11 +1301,13 @@ static OSStatus RenderCallbackAnalog(vlc_object_t *p_obj,
     /* check if we have enough data */
     if (!availableBytes) {
         /* return an empty buffer so silence is played until we have data */
-        for (UInt32 j = 0; j < inNumberFrames; j++)
-            targetBuffer[j] = 0.;
+        memset(targetBuffer, 0, ioData->mBuffers[0].mDataByteSize);
     } else {
-        memcpy(targetBuffer, buffer, __MIN(bytesToCopy, availableBytes));
-        TPCircularBufferConsume(&p_sys->circular_buffer, __MIN(bytesToCopy, availableBytes));
+        int32_t bytesToCopy = __MIN(bytesRequested, availableBytes);
+
+        memcpy(targetBuffer, buffer, bytesToCopy);
+        TPCircularBufferConsume(&p_sys->circular_buffer, bytesToCopy);
+        ioData->mBuffers[0].mDataByteSize = bytesToCopy;
     }
 
     vlc_cond_signal(&p_sys->cond);
@@ -1318,7 +1319,7 @@ static OSStatus RenderCallbackAnalog(vlc_object_t *p_obj,
 /*
  * RenderCallbackSPDIF: callback for SPDIF audio output
  */
-static OSStatus RenderCallbackSPDIF (AudioDeviceID inDevice,
+static OSStatus RenderCallbackSPDIF(AudioDeviceID inDevice,
                                     const AudioTimeStamp * inNow,
                                     const void * inInputData,
                                     const AudioTimeStamp * inInputTime,
@@ -1335,7 +1336,7 @@ static OSStatus RenderCallbackSPDIF (AudioDeviceID inDevice,
     audio_output_t * p_aout = (audio_output_t *)threadGlobals;
     struct aout_sys_t * p_sys = p_aout->sys;
 
-    int bytesToCopy = outOutputData->mBuffers[p_sys->i_stream_index].mDataByteSize;
+    int bytesRequested = outOutputData->mBuffers[p_sys->i_stream_index].mDataByteSize;
     char *targetBuffer = outOutputData->mBuffers[p_sys->i_stream_index].mData;
 
     vlc_mutex_lock(&p_sys->lock);
@@ -1348,8 +1349,11 @@ static OSStatus RenderCallbackSPDIF (AudioDeviceID inDevice,
         /* return an empty buffer so silence is played until we have data */
         memset(targetBuffer, 0, outOutputData->mBuffers[p_sys->i_stream_index].mDataByteSize);
     } else {
-        memcpy(targetBuffer, buffer, __MIN(bytesToCopy, availableBytes));
-        TPCircularBufferConsume(&p_sys->circular_buffer, __MIN(bytesToCopy, availableBytes));
+        int32_t bytesToCopy = __MIN(bytesRequested, availableBytes);
+
+        memcpy(targetBuffer, buffer, bytesToCopy);
+        TPCircularBufferConsume(&p_sys->circular_buffer, bytesToCopy);
+        outOutputData->mBuffers[p_sys->i_stream_index].mDataByteSize = bytesToCopy;
     }
 
     vlc_cond_signal(&p_sys->cond);
@@ -1375,11 +1379,10 @@ static OSStatus HardwareListener(AudioObjectID inObjectID,  UInt32 inNumberAddre
     if (!p_aout)
         return -1;
 
-#ifndef NDEBUG
     for (unsigned int i = 0; i < inNumberAddresses; i++) {
         switch (inAddresses[i].mSelector) {
             case kAudioHardwarePropertyDevices:
-                msg_Warn(p_aout, "audio device configuration changed, resetting cache");
+                msg_Dbg(p_aout, "audio device configuration changed, resetting cache");
                 break;
 
             case kAudioDevicePropertyDeviceIsAlive:
@@ -1387,7 +1390,7 @@ static OSStatus HardwareListener(AudioObjectID inObjectID,  UInt32 inNumberAddre
                 break;
 
             case kAudioStreamPropertyAvailablePhysicalFormats:
-                msg_Warn(p_aout, "available physical formats for audio device changed, resetting aout");
+                msg_Dbg(p_aout, "available physical formats for audio device changed, resetting aout");
                 break;
 
             default:
@@ -1395,7 +1398,6 @@ static OSStatus HardwareListener(AudioObjectID inObjectID,  UInt32 inNumberAddre
                 break;
         }
     }
-#endif
 
     RebuildDeviceList(p_aout);
     aout_RestartRequest(p_aout, AOUT_RESTART_OUTPUT);
@@ -1427,6 +1429,52 @@ static OSStatus StreamListener(AudioObjectID inObjectID,  UInt32 inNumberAddress
 #pragma mark -
 #pragma mark helpers
 
+static int RegisterAudioStreamsCallback(audio_output_t *p_aout, AudioDeviceID i_dev_id)
+{
+    OSStatus                    err = noErr;
+    UInt32                      i_param_size = 0;
+    AudioStreamID               *p_streams = NULL;
+    int                         i_streams = 0;
+
+    /* Retrieve all the output streams */
+    AudioObjectPropertyAddress streamsAddress = { kAudioDevicePropertyStreams, kAudioDevicePropertyScopeOutput, kAudioObjectPropertyElementMaster };
+    err = AudioObjectGetPropertyDataSize(i_dev_id, &streamsAddress, 0, NULL, &i_param_size);
+    if (err != noErr) {
+        msg_Err(p_aout, "could not get number of streams [%4.4s] (%i)", (char *)&err, (int32_t)err);
+        return VLC_EGENERIC;
+    }
+
+    i_streams = i_param_size / sizeof(AudioStreamID);
+    p_streams = (AudioStreamID *)malloc(i_param_size);
+    if (p_streams == NULL)
+        return VLC_ENOMEM;
+
+    err = AudioObjectGetPropertyData(i_dev_id, &streamsAddress, 0, NULL, &i_param_size, p_streams);
+    if (err != noErr) {
+        msg_Err(p_aout, "could not get list of streams [%4.4s]", (char *)&err);
+        return VLC_EGENERIC;
+    }
+
+    for (int i = 0; i < i_streams; i++) {
+        /* get notified when physical formats change */
+        AudioObjectPropertyAddress physicalFormatsAddress = { kAudioStreamPropertyAvailablePhysicalFormats, kAudioObjectPropertyScopeGlobal, 0 };
+        err = AudioObjectAddPropertyListener(p_streams[i], &physicalFormatsAddress, HardwareListener, (void *)p_aout);
+        if (err != noErr) {
+            // nope just means that we already have a callback
+            if (err == kAudioHardwareIllegalOperationError) {
+                msg_Dbg(p_aout, "could not set audio stream formats property callback on stream id %i, callback already set? [%4.4s]", p_streams[i],
+                         (char *)&err);
+            } else {
+            msg_Warn(p_aout, "could not set audio stream formats property callback on stream id %i [%4.4s]", p_streams[i],
+                     (char *)&err);
+            }
+        }
+    }
+
+    free(p_streams);
+    return VLC_SUCCESS;
+}
+
 /*
  * AudioDeviceHasOutput: Checks if the device is actually an output device
  */
@@ -1459,7 +1507,7 @@ static int AudioDeviceSupportsDigital(audio_output_t *p_aout, AudioDeviceID i_de
     AudioObjectPropertyAddress streamsAddress = { kAudioDevicePropertyStreams, kAudioDevicePropertyScopeOutput, kAudioObjectPropertyElementMaster };
     err = AudioObjectGetPropertyDataSize(i_dev_id, &streamsAddress, 0, NULL, &i_param_size);
     if (err != noErr) {
-        msg_Err(p_aout, "could not get number of streams: [%s] (%i)", (char *)&err, (int32_t)err);
+        msg_Err(p_aout, "could not get number of streams [%4.4s] (%i)", (char *)&err, (int32_t)err);
         return false;
     }
 
@@ -1470,7 +1518,7 @@ static int AudioDeviceSupportsDigital(audio_output_t *p_aout, AudioDeviceID i_de
 
     err = AudioObjectGetPropertyData(i_dev_id, &streamsAddress, 0, NULL, &i_param_size, p_streams);
     if (err != noErr) {
-        msg_Err(p_aout, "could not get list of streams: [%s]", (char *)&err);
+        msg_Err(p_aout, "could not get list of streams [%4.4s]", (char *)&err);
         return false;
     }
 
@@ -1498,12 +1546,12 @@ static int AudioStreamSupportsDigital(audio_output_t *p_aout, AudioStreamID i_st
     AudioObjectPropertyAddress physicalFormatsAddress = { kAudioStreamPropertyAvailablePhysicalFormats, kAudioObjectPropertyScopeGlobal, 0 };
     err = AudioObjectGetPropertyDataSize(i_stream_id, &physicalFormatsAddress, 0, NULL, &i_param_size);
     if (err != noErr) {
-        msg_Err(p_aout, "could not get number of streamformats: [%s] (%i)", (char *)&err, (int32_t)err);
+        msg_Err(p_aout, "could not get number of streamformats [%4.4s] (%i)", (char *)&err, (int32_t)err);
         return false;
     }
 
     i_formats = i_param_size / sizeof(AudioStreamRangedDescription);
-    msg_Dbg(p_aout, "found %i stream formats", i_formats);
+    msg_Dbg(p_aout, "found %i stream formats for stream id %i", i_formats, i_stream_id);
 
     p_format_list = (AudioStreamRangedDescription *)malloc(i_param_size);
     if (p_format_list == NULL)
@@ -1511,7 +1559,7 @@ static int AudioStreamSupportsDigital(audio_output_t *p_aout, AudioStreamID i_st
 
     err = AudioObjectGetPropertyData(i_stream_id, &physicalFormatsAddress, 0, NULL, &i_param_size, p_format_list);
     if (err != noErr) {
-        msg_Err(p_aout, "could not get the list of streamformats: [%4.4s]", (char *)&err);
+        msg_Err(p_aout, "could not get the list of streamformats [%4.4s]", (char *)&err);
         free(p_format_list);
         p_format_list = NULL;
         return false;
@@ -1555,7 +1603,7 @@ static int AudioStreamChangeFormat(audio_output_t *p_aout, AudioStreamID i_strea
     /* Install the callback */
     err = AudioObjectAddPropertyListener(i_stream_id, &physicalFormatAddress, StreamListener, (void *)&w);
     if (err != noErr) {
-        msg_Err(p_aout, "AudioObjectAddPropertyListener for kAudioStreamPropertyPhysicalFormat failed: [%4.4s]", (char *)&err);
+        msg_Err(p_aout, "AudioObjectAddPropertyListener for kAudioStreamPropertyPhysicalFormat failed [%4.4s]", (char *)&err);
         return false;
     }
 
@@ -1563,7 +1611,7 @@ static int AudioStreamChangeFormat(audio_output_t *p_aout, AudioStreamID i_strea
     err = AudioObjectSetPropertyData(i_stream_id, &physicalFormatAddress, 0, NULL, sizeof(AudioStreamBasicDescription),
                                      &change_format);
     if (err != noErr) {
-        msg_Err(p_aout, "could not set the stream format: [%4.4s]", (char *)&err);
+        msg_Err(p_aout, "could not set the stream format [%4.4s]", (char *)&err);
         return false;
     }
 
@@ -1594,7 +1642,7 @@ static int AudioStreamChangeFormat(audio_output_t *p_aout, AudioStreamID i_strea
     /* Removing the property listener */
     err = AudioObjectRemovePropertyListener(i_stream_id, &physicalFormatAddress, StreamListener, (void *)&w);
     if (err != noErr) {
-        msg_Err(p_aout, "AudioStreamRemovePropertyListener failed: [%4.4s]", (char *)&err);
+        msg_Err(p_aout, "AudioStreamRemovePropertyListener failed [%4.4s]", (char *)&err);
         return false;
     }