]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
Specify libao input channel ordering 1680/head
authorDan George <dgeor8@gmail.com>
Wed, 24 May 2023 05:15:09 +0000 (15:15 +1000)
committerGitHub <noreply@github.com>
Wed, 24 May 2023 05:15:09 +0000 (15:15 +1000)
audio_ao.c

index 64299659d7f5bab75873c5abe92155b2e33b2420..617464876066e009a3f186161df45ff8e4581a6d 100644 (file)
@@ -131,6 +131,7 @@ static int init(int argc, char **argv) {
     fmt.rate = 44100;
     fmt.channels = 2;
     fmt.byte_format = AO_FMT_NATIVE;
+    fmt.matrix = strdup("L,R");
   }
   return 0;
 }