ao_jack: increase maximum allowed channels from 6 to 8.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31358 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
tack 2010-06-09 21:13:03 +00:00 committed by Uoti Urpala
parent 879fff8104
commit 24c36f29ec
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ static const ao_info_t info =
LIBAO_EXTERN(jack)
//! maximum number of channels supported, avoids lots of mallocs
#define MAX_CHANS 6
#define MAX_CHANS 8
static jack_port_t *ports[MAX_CHANS];
static int num_ports; ///< Number of used ports == number of channels
static jack_client_t *client;