Description: Fix format.matrix problem with libao4 new update.
Author: Nanakos Chrysostomos <nanakos@wired-net.gr>
Bug-Debian: http://bugs.debian.org/580193

--- mpg321-0.2.11.orig/ao.c
+++ mpg321-0.2.11/ao.c
@@ -237,6 +237,9 @@ void open_ao_playdevice(struct mad_heade
         format.bits = 16;
         format.rate = header->samplerate;
         format.channels = (options.opt & MPG321_FORCE_STEREO) ? 2 : MAD_NCHANNELS(header);
+	
+	/* Add this element as an option to mpg321 */
+	format.matrix = "L,R";
 
         /* mad gives us little-endian data; we swap it on big-endian targets, to
           big-endian format, because that's what most drivers expect. */

