From 5a4ae428922076b8b741a2d56c3ba5a6865bc3fb Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 1 Jul 2013 08:43:22 +0200 Subject: ao_coreaudio: change all ++var to var++ Luckily they all were inside for loops so the functionality does not actually change. --- audio/out/ao_coreaudio.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'audio/out/ao_coreaudio.c') diff --git a/audio/out/ao_coreaudio.c b/audio/out/ao_coreaudio.c index e88f270afa..9768a5d4da 100644 --- a/audio/out/ao_coreaudio.c +++ b/audio/out/ao_coreaudio.c @@ -217,7 +217,7 @@ static void print_help(void) int devs_n = devs_size / sizeof(AudioDeviceID); - for (int i = 0; i < devs_n; ++i) { + for (int i = 0; i < devs_n; i++) { char *name; OSStatus err = GetAudioPropertyString(devs[i], kAudioObjectPropertyName, &name); @@ -461,8 +461,7 @@ static int init_digital(struct ao *ao, AudioStreamBasicDescription asbd) int streams_n = size / sizeof(AudioStreamID); - // TODO: ++i is quite fishy in here. Investigate! - for (int i = 0; i < streams_n && d->stream_idx < 0; ++i) { + for (int i = 0; i < streams_n && d->stream_idx < 0; i++) { bool digital = AudioStreamSupportsDigital(streams[i]); if (digital) { @@ -485,8 +484,7 @@ static int init_digital(struct ao *ao, AudioStreamBasicDescription asbd) d->stream = streams[i]; d->stream_idx = i; - // TODO: ++j is fishy. was like this in the original code. Investigate! - for (int j = 0; j < formats_n; ++j) + for (int j = 0; j < formats_n; j++) if (AudioFormatIsDigital(asbd)) { // select the digital format that has exactly the same // samplerate. If an exact match cannot be found, select -- cgit v1.2.3