changeset 31292:92f7d389db9f

ao_jack: increase maximum allowed channels from 6 to 8.
author tack
date Wed, 09 Jun 2010 21:13:03 +0000
parents bb7a3030fb04
children a51baa308479
files libao2/ao_jack.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libao2/ao_jack.c	Wed Jun 09 17:46:34 2010 +0000
+++ b/libao2/ao_jack.c	Wed Jun 09 21:13:03 2010 +0000
@@ -51,7 +51,7 @@
 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;