From patchwork Tue Sep 8 17:28:07 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nicolas George X-Patchwork-Id: 22169 Return-Path: X-Original-To: patchwork@ffaux-bg.ffmpeg.org Delivered-To: patchwork@ffaux-bg.ffmpeg.org Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by ffaux.localdomain (Postfix) with ESMTP id 8E1AA449D21 for ; Tue, 8 Sep 2020 20:28:16 +0300 (EEST) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 7049068B588; Tue, 8 Sep 2020 20:28:16 +0300 (EEST) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from nef.ens.fr (nef2.ens.fr [129.199.96.40]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 4F3FC6882E3 for ; Tue, 8 Sep 2020 20:28:10 +0300 (EEST) X-ENS-nef-client: 129.199.129.80 ( name = phare.normalesup.org ) Received: from phare.normalesup.org (phare.normalesup.org [129.199.129.80]) by nef.ens.fr (8.14.4/1.01.28121999) with ESMTP id 088HS9aW008099 for ; Tue, 8 Sep 2020 19:28:09 +0200 Received: by phare.normalesup.org (Postfix, from userid 1001) id 46322E00EA; Tue, 8 Sep 2020 19:28:09 +0200 (CEST) From: Nicolas George To: ffmpeg-devel@ffmpeg.org Date: Tue, 8 Sep 2020 19:28:07 +0200 Message-Id: <20200908172807.1216380-1-george@nsup.org> X-Mailer: git-send-email 2.28.0 MIME-Version: 1.0 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.4.3 (nef.ens.fr [129.199.96.32]); Tue, 08 Sep 2020 19:28:09 +0200 (CEST) Subject: [FFmpeg-devel] [PATCH] tools/make_chlayout_test: use newer pan syntax. X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" The syntax with : was deprecated and no longer works. Signed-off-by: Nicolas George --- tools/make_chlayout_test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);