From 24c36f29ec2ea0f16512ed16cb0a7c10a8ee11c5 Mon Sep 17 00:00:00 2001 From: tack Date: Wed, 9 Jun 2010 21:13:03 +0000 Subject: [PATCH] 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 --- libao2/ao_jack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libao2/ao_jack.c b/libao2/ao_jack.c index 65bd229bf3..c4bade08ec 100644 --- a/libao2/ao_jack.c +++ b/libao2/ao_jack.c @@ -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;