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 024E44021D for ; Thu, 20 Jan 2022 00:09:27 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 479DC68B1B8; Thu, 20 Jan 2022 02:09:24 +0200 (EET) Received: from mail-oi1-f178.google.com (mail-oi1-f178.google.com [209.85.167.178]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id B748368AFED for ; Thu, 20 Jan 2022 02:09:18 +0200 (EET) Received: by mail-oi1-f178.google.com with SMTP id q186so6943845oih.8 for ; Wed, 19 Jan 2022 16:09:18 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=message-id:date:mime-version:user-agent:subject:content-language:to :references:from:in-reply-to:content-transfer-encoding; bh=e3FaJ0omhXeiJPecX2WbF9cOVJX12jn187RrSr7zrbU=; b=pmSpInt5STY/OwzAVgHI4d5LNdjxhLxOjQ0YpTkA4fENhcay8H3rxovSMFMvS1NIQM 5pi0JFToQ4kf0ZaGPk47rjBhPZ5w1wMeiJhpJPD+8Q84e0XwOjEJxI/gwNuwzLFwTMCQ 10D8MyrnO6qS0j3CipSPpmXYEC3EaSlqoHXLIIfDZEoOk2PVDKHpzoltSoDK6wkZpqOc Agj6AVdfs4YlCKtybmMoDbEUf3Ve89EUYtbX2pPRpycWaB4ljdaCldy77QSoR6IA2ASc JfiPuUhYTFxAcp3eVzh5O8r0eiOumuC0t/xyhXvU9g5PN7uRWCWhGj0soxqNupme7Hc7 W3Vw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:message-id:date:mime-version:user-agent:subject :content-language:to:references:from:in-reply-to :content-transfer-encoding; bh=e3FaJ0omhXeiJPecX2WbF9cOVJX12jn187RrSr7zrbU=; b=v1iPqh1jpUQB8d6nELLPLwd6NgNvf4p9QzipmssTIjlYyViHc9S5TO6bJdxiMDGgmh q1bxplql/03L1xEBsjQio0tabpaX8GZqOjJxl2+2oOp35CtxCO5t71LQZla+QUfrshrj TqgK1ohnbdyEZK73W0P9fRTAfKh1cdr/rRQAsRs3R3SrXCwoG3RbdNeEW/zOawCV8g4Q n+pshoiYKfL/npSnEqTjzbHf+vH8uMI3lN/Qx5wghO/skqUAcWCIXt2b/qCEgOcFxGSD dWkBZeYT5xN39GnwDeu4wcDxuKAGrHjA6dQs8njumqHyiep/Wxjg3wI2r3MaLgRQ6WG6 +3Uw== X-Gm-Message-State: AOAM5324UNqtXK6T5U7Eu+WIEyJTRH/serZopY0jDRH9+YtfbvmjG2kb eq38wbmRB2nTeDBxa7NVGC58wbBfiuA= X-Google-Smtp-Source: ABdhPJxsSo20+h2zAL2RII4dxbt58YQRvYVJOR2aoLLhZ+DLvcdKU1tI6tUA69QgCrk4nqno/oIsUA== X-Received: by 2002:a05:6808:ed0:: with SMTP id q16mr5264160oiv.165.1642637356929; Wed, 19 Jan 2022 16:09:16 -0800 (PST) Received: from [192.168.0.13] ([186.136.131.95]) by smtp.gmail.com with ESMTPSA id n3sm557253oov.39.2022.01.19.16.09.15 for (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Wed, 19 Jan 2022 16:09:16 -0800 (PST) Message-ID: <37a9a60c-fc96-d865-bd5d-a075f84b099b@gmail.com> Date: Wed, 19 Jan 2022 21:09:13 -0300 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Thunderbird/91.5.0 Content-Language: en-US To: ffmpeg-devel@ffmpeg.org References: <20220118220856.34097-1-jamrial@gmail.com> From: James Almer In-Reply-To: Subject: Re: [FFmpeg-devel] [PATCH 001/289 v6] Add a new channel layout API 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 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: On 1/19/2022 3:07 PM, Andreas Rheinhardt wrote: > James Almer: >> From: Anton Khirnov >> >> The new API is more extensible and allows for custom layouts. >> More accurate information is exported, eg for decoders that do not >> set a channel layout, lavc will not make one up for them. >> >> Deprecate the old API working with just uint64_t bitmasks. >> >> Expanded and completed by Vittorio Giovara >> and James Almer . >> Signed-off-by: Vittorio Giovara >> Signed-off-by: James Almer >> --- >> Changes since last version: >> >> *av_channel_layout_from_string() and av_channel_layout_describe() now support >> a "designation@name" syntax, effectively making both functions reciprocal >> when there are custom names in some or all channels. >> It's the syntax suggested by Marton and is both extensible if required and >> not too ulgy in human readable output if the string is printed verbatim. >> >> *av_channel_layout_index_from_string() and >> av_channel_layout_channel_from_string() also support this syntax now. >> >> I plan to push this version soon. Any extension to the syntax supported by these >> helpers can be written by whoever needs it. > > You forgot the examples and the tools; and ffplay. And do you really Ported ffplay. Will port the rest later. > intend for the deprecation warnings in ffmpeg_opt.c to stay? Ok, I'll silence them. > > - Andreas > _______________________________________________ > 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". _______________________________________________ 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".