diff mbox series

[FFmpeg-devel] tools/make_chlayout_test: use newer pan syntax.

Message ID 20200908172807.1216380-1-george@nsup.org
State New
Headers show
Series [FFmpeg-devel] tools/make_chlayout_test: use newer pan syntax. | expand

Checks

Context Check Description
andriy/default pending
andriy/make success Make finished
andriy/make_fate success Make fate finished

Commit Message

Nicolas George Sept. 8, 2020, 5:28 p.m. UTC
The syntax with : was deprecated and no longer works.

Signed-off-by: Nicolas George <george@nsup.org>
---
 tools/make_chlayout_test | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/tools/make_chlayout_test b/tools/make_chlayout_test
index fcdbda3b73..c310def850 100755
--- a/tools/make_chlayout_test
+++ b/tools/make_chlayout_test
@@ -105,7 +105,7 @@  for my $i (0 .. $#channels) {
   my $descr = $channel_label_to_descr{$label}
     or die "Channel $label not found\n";
   $graph .= "flite=text='${descr}', aformat=channel_layouts=mono, " .
-            "pan=${layout}:${label}=c0 [ch$i] ;\n";
+            "pan=${layout}|${label}=c0 [ch$i] ;\n";
   $concat_in .= "[ch$i] ";
 }
 $graph .= "${concat_in}concat=v=0:a=1:n=" . scalar(@channels);