vlc/vlc-2.1 | branch: master | David Fuhrmann <[email protected]> | 
Sun Sep  1 14:10:08 2013 +0200| [9051dd83079ab293e14e702ccd37a192d95dbef4] | 
committer: David Fuhrmann

auhal: cosmetics
(cherry picked from commit d9431a2392b1864ee1069445bfdff2a4216bc4e4)

Signed-off-by: David Fuhrmann <[email protected]>

> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.1.git/?a=commit;h=9051dd83079ab293e14e702ccd37a192d95dbef4
---

 modules/audio_output/auhal.c |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/modules/audio_output/auhal.c b/modules/audio_output/auhal.c
index 9d0bed3..7cb5616 100644
--- a/modules/audio_output/auhal.c
+++ b/modules/audio_output/auhal.c
@@ -198,7 +198,7 @@ static int Open(vlc_object_t *obj)
     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 */
+    /* Attach a listener so that we are notified of a change in the device 
setup */
     AudioObjectPropertyAddress audioDevicesAddress = { 
kAudioHardwarePropertyDevices, kAudioObjectPropertyScopeGlobal, 
kAudioObjectPropertyElementMaster };
     err = AudioObjectAddPropertyListener(kAudioObjectSystemObject, 
&audioDevicesAddress, DevicesListener, (void *)p_aout);
     if (err != noErr)
@@ -1493,7 +1493,7 @@ static OSStatus RenderCallbackSPDIF(AudioDeviceID 
inDevice,
 /*
  * Callback when device list changed
  */
-static OSStatus DevicesListener(AudioObjectID inObjectID,  UInt32 
inNumberAddresses, const AudioObjectPropertyAddress inAddresses[], 
void*inClientData)
+static OSStatus DevicesListener(AudioObjectID inObjectID,  UInt32 
inNumberAddresses, const AudioObjectPropertyAddress inAddresses[], void 
*inClientData)
 {
     VLC_UNUSED(inObjectID);
     VLC_UNUSED(inNumberAddresses);
@@ -1518,7 +1518,7 @@ static OSStatus DevicesListener(AudioObjectID inObjectID, 
 UInt32 inNumberAddres
 /*
  * Callback when current device is not alive anymore
  */
-static OSStatus DeviceAliveListener(AudioObjectID inObjectID,  UInt32 
inNumberAddresses, const AudioObjectPropertyAddress inAddresses[], 
void*inClientData)
+static OSStatus DeviceAliveListener(AudioObjectID inObjectID,  UInt32 
inNumberAddresses, const AudioObjectPropertyAddress inAddresses[], void 
*inClientData)
 {
     VLC_UNUSED(inObjectID);
     VLC_UNUSED(inNumberAddresses);
@@ -1537,7 +1537,7 @@ static OSStatus DeviceAliveListener(AudioObjectID 
inObjectID,  UInt32 inNumberAd
 /*
  * Callback when streams of any audio device changed (e.g. SPDIF gets 
(un)available)
  */
-static OSStatus StreamsChangedListener(AudioObjectID inObjectID,  UInt32 
inNumberAddresses, const AudioObjectPropertyAddress inAddresses[], 
void*inClientData)
+static OSStatus StreamsChangedListener(AudioObjectID inObjectID,  UInt32 
inNumberAddresses, const AudioObjectPropertyAddress inAddresses[], void 
*inClientData)
 {
     OSStatus                    err = noErr;
     UInt32                      i_param_size = 0;
@@ -1596,7 +1596,7 @@ static OSStatus StreamsChangedListener(AudioObjectID 
inObjectID,  UInt32 inNumbe
 /*
  * StreamListener: check whether the device's physical format changes 
on-the-fly (unlikely)
  */
-static OSStatus StreamListener(AudioObjectID inObjectID,  UInt32 
inNumberAddresses, const AudioObjectPropertyAddress inAddresses[], 
void*inClientData)
+static OSStatus StreamListener(AudioObjectID inObjectID,  UInt32 
inNumberAddresses, const AudioObjectPropertyAddress inAddresses[], void 
*inClientData)
 {
     OSStatus err = noErr;
     struct { vlc_mutex_t lock; vlc_cond_t cond; } * w = inClientData;

_______________________________________________
vlc-commits mailing list
[email protected]
https://mailman.videolan.org/listinfo/vlc-commits

Reply via email to