Commit f6a85f0b authored by Dave Hocker's avatar Dave Hocker Committed by Max Kellermann

output/osx: fix build failure

parent 5b8b660b
...@@ -163,6 +163,7 @@ osx_output_parse_channel_map( ...@@ -163,6 +163,7 @@ osx_output_parse_channel_map(
channel_map[inserted_channels] = strtol(channel_map_str, &endptr, 10); channel_map[inserted_channels] = strtol(channel_map_str, &endptr, 10);
if (channel_map[inserted_channels] < -1) if (channel_map[inserted_channels] < -1)
throw FormatRuntimeError("%s: channel map value %d not allowed (must be -1 or greater)", throw FormatRuntimeError("%s: channel map value %d not allowed (must be -1 or greater)",
device_name, channel_map[inserted_channels]);
channel_map_str = endptr; channel_map_str = endptr;
want_number = false; want_number = false;
...@@ -209,7 +210,7 @@ osx_output_set_channel_map(OSXOutput *oo) ...@@ -209,7 +210,7 @@ osx_output_set_channel_map(OSXOutput *oo)
osx_output_parse_channel_map(oo->device_name, osx_output_parse_channel_map(oo->device_name,
oo->channel_map, oo->channel_map,
channel_map.get(), channel_map.get(),
num_channels)); num_channels);
size = num_channels * sizeof(SInt32); size = num_channels * sizeof(SInt32);
status = AudioUnitSetProperty(oo->au, status = AudioUnitSetProperty(oo->au,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment