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 54A01446A1 for ; Tue, 20 Sep 2022 19:38:26 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 4479068BA9B; Tue, 20 Sep 2022 22:38:24 +0300 (EEST) Received: from mail-yb1-f181.google.com (mail-yb1-f181.google.com [209.85.219.181]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id B9EDB68B580 for ; Tue, 20 Sep 2022 22:38:18 +0300 (EEST) Received: by mail-yb1-f181.google.com with SMTP id s14so4902428ybe.7 for ; Tue, 20 Sep 2022 12:38:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:from:to:cc:subject:date; bh=9UfOkIWp2j0IWSN7zbzATW9N7JsBYL3f1OcRzMSdtxk=; b=cqKm8wWw27J0hNi6gBn2cACK5Q1DCyXTikRrxinN8RP5q2HFxUuZxHclqL6JiZOmFw qqz/nF5eh+PWAKapSHJrRUovx0hKC3Fx1rS0jFR3I4yYMnCzGa5HK0BmjQr+U41BRiq7 M0nA9mMYOmnuwWTmDOBw97V4d2Lo3HiB8VZ0uTVe/a4yR0eyAvIgPDRtQ+rHse0+fNSW NUkZj1lRy2RjZvlFzOSKqEYlMVLCNI4Il5mCTKt/i1cgj4hz6Yn3aa36uj7Z79D76OHv jp5A7q5Tnm2MDTyq3sa24YX7exGrpCe6LTeoW2fKSwUlorhAkzUaU0hg+eEz4lchrDDq lmfA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date; bh=9UfOkIWp2j0IWSN7zbzATW9N7JsBYL3f1OcRzMSdtxk=; b=HX+kY9j12Flc/RcVKWdX4l0FZBf84m0/0eGxfnr5jLFf/bPcZAk+aZOX4ufJgnIZsr CxooLbeu0Rb0tN6+BoV9gj9Lcf1oU2xqZy+G9X0xtg4Yd2yj/luF0NcbKlec8+Awlcfu lFE5orj2uB2jY+gcSWY9kfQdjDXb9WzKGo+ii1sJUAazpIbx+VNoOMzDmr4Usxb0UYfn XC6YQOwz2tPKmW/Jxd1gWF/UZX21gzdhjh/ZlQPZZQ9gx3DN3hJEilSQgsQvkGd73JCY ifENbKXAmCEnetU0uSHSMEY+JOAl+kK0RJ3swneUr82Q8uvXEUNAD/mX1zDF4FNbqXIB xBlA== X-Gm-Message-State: ACrzQf3ZFclZ2Xvj5zSLGG/M/iM+5U5Zf/JbpCpF4WV0MjTO+3Gq1FAT lbgzF6o6YGzQ1u6Is6tzUeLvTyKTfuGxpvQ0QrtOMbwC9io= X-Google-Smtp-Source: AMsMyM7C1ALjveR41WN9CEqsW+MhKINjdNqaiCBIlcHqMYwDfMmSWEtOl4rgAuxoiWepm2+o+KQWEZDUZla6waWdKaQ= X-Received: by 2002:a25:e60d:0:b0:6b0:cd5:f346 with SMTP id d13-20020a25e60d000000b006b00cd5f346mr21598303ybh.233.1663702696955; Tue, 20 Sep 2022 12:38:16 -0700 (PDT) MIME-Version: 1.0 References: <20220919230336.366882-1-vigneshv@google.com> In-Reply-To: <20220919230336.366882-1-vigneshv@google.com> From: James Zern Date: Tue, 20 Sep 2022 12:38:05 -0700 Message-ID: To: FFmpeg development discussions and patches Subject: Re: [FFmpeg-devel] [PATCH] avformat/movenc: Write auxi box for animated AVIF with alpha 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: Vignesh Venkatasubramanian 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: On Mon, Sep 19, 2022 at 4:03 PM Vignesh Venkatasubramanian wrote: > > According to the HEIF specification Section 7.5.3.1, tracks with It might be worth adding ISO/IEC 23008-12 for added precision. > handler_type 'auxv' must contain a 'auxi' box in its > SampleEntry to notify the nature of the auxiliary track to the > decoder. > > The content is the same as the 'auxC' box. So paramterize and re-use parameterize > the existing function. > > Signed-off-by: Vignesh Venkatasubramanian > --- > libavformat/movenc.c | 27 +++++++++++++++------------ > 1 file changed, 15 insertions(+), 12 deletions(-) > lgtm. _______________________________________________ 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".