From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 211EC401B6 for ; Sun, 16 Jul 2023 05:13:02 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 8D65F68C36B; Sun, 16 Jul 2023 08:12:59 +0300 (EEST) Received: from mail-vk1-f179.google.com (mail-vk1-f179.google.com [209.85.221.179]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id A3D0868C123 for ; Sun, 16 Jul 2023 08:12:53 +0300 (EEST) Received: by mail-vk1-f179.google.com with SMTP id 71dfb90a1353d-45a0ee1c411so900866e0c.0 for ; Sat, 15 Jul 2023 22:12:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20221208; t=1689484372; x=1692076372; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:from:to:cc:subject:date:message-id:reply-to; bh=q20tC0lgceOzvOUIbsDhqaxqP+vWZvaDKmy4lu9XFy8=; b=EBEavfoXP3OIZp9J/qTokP/lEOP3TAyF7FliRI5LXIxebAoawzzKpw0pE8FXtLbcW7 WifL0g0Mvh4TQmiIgq3ejudiiiKB89D4ebQfItoFDe19YRfHXIR40j+XGwCUNV0VzRet GxNqnBJuT6KX6XS5aZc2r2LDqtpRnToyAhZZS2vy7xnpmVhIEItyIE/pCFnm9epy4tzY s3HZdt79duO8e9KLTtqxxDqu2T3wQmzRKppt65ScQj74IiWnUQW9HSpQdh8DQ4sv4iKN fbVZAasn9FQ1qoCirQs7QPJbQRRzzK/0eIaZT/s2XNNmSVBZ5NDngCkBvkpv2B/EBN8w 6Utg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1689484372; x=1692076372; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=q20tC0lgceOzvOUIbsDhqaxqP+vWZvaDKmy4lu9XFy8=; b=Evb7xW4jqK9oCqm5svcmGIHTTEaRbhP/+KrSTp489ozRB6czsQV0zNlZFxyEIaHMWh xa29TlziftWwddZrq43sdetmPcTCui5DAvhX2SNiqKMp4vQCzr/24Ik50NaTVmXCJWJE h3MSks4LJvOFBrzLRNrzbXkzp+rYU5RVX2pWivT3EhqRTqoQqUPyC9mxu+SGRVo30emf D12Z9bNZRS0IFgy/NQSp3Jz+xkt3jE9o02ue1htvXdm3xToStm0u7uEl7XPCpnseaUtT 5o3FSOnBCxkBXhFn0D23qD9lr/1HtSHLY4+DYXxZXgXETQta+VHH4B+3F+pTpGbcEFL9 qwDg== X-Gm-Message-State: ABy/qLbffipzhj0CxauMsv68AEboe1TpkswTgJloM3GQrFE5rT1uzpWc uk07FaEAHefhSxbL9RjYGhGqG73OCzo= X-Google-Smtp-Source: APBJJlFlwmgq0Ytk/LeKvwbtO1DtIRZFrIVJkinFcTdatGAkusFv/q3/nO+uFS9BXui9hYqFVT/s9Q== X-Received: by 2002:a1f:ddc1:0:b0:481:687c:e82d with SMTP id u184-20020a1fddc1000000b00481687ce82dmr2319821vkg.14.1689484371560; Sat, 15 Jul 2023 22:12:51 -0700 (PDT) Received: from cappuccino.. ([35.142.174.80]) by smtp.gmail.com with ESMTPSA id i7-20020ac5cd87000000b00483e3d330ccsm111562vka.22.2023.07.15.22.12.50 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 15 Jul 2023 22:12:51 -0700 (PDT) From: Stephen Hutchinson To: ffmpeg-devel@ffmpeg.org Date: Sun, 16 Jul 2023 01:12:44 -0400 Message-Id: <20230716051246.7793-1-qyot27@gmail.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 0/2] avisynth: pass audio channel layout X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 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 Cc: Stephen Hutchinson Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: AviSynth+ 3.7.3 adds the ability to define audio channel layouts, and adding it to the libavformat demuxer is trivial. Bumps the minimum required version of the AviSynth+ headers to 3.7.3. Stephen Hutchinson (2): avisynth: pass audio channel layout configure: bump minimum AviSynth+ header version configure | 4 ++-- libavformat/avisynth.c | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) -- 2.39.2 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".