mirror of
https://github.com/mpv-player/mpv
synced 2024-12-28 01:52:19 +00:00
Make code slightly less confusing to me
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25678 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
c9f2fed145
commit
8c38419374
@ -258,9 +258,9 @@ static int init(int rate, int channels, int format, int flags) {
|
||||
mp_msg(MSGT_AO, MSGL_FATAL, "[JACK] no physical ports available\n");
|
||||
goto err_out;
|
||||
}
|
||||
num_ports = 1;
|
||||
while (matching_ports[num_ports]) num_ports++;
|
||||
if (channels > num_ports) channels = num_ports;
|
||||
i = 1;
|
||||
while (matching_ports[i]) i++;
|
||||
if (channels > i) channels = i;
|
||||
num_ports = channels;
|
||||
|
||||
// create out output ports
|
||||
|
Loading…
Reference in New Issue
Block a user