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 46A45407A9 for ; Sun, 30 Jan 2022 22:01:53 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 49E1A68B18D; Mon, 31 Jan 2022 00:01:26 +0200 (EET) Received: from mail-pj1-f45.google.com (mail-pj1-f45.google.com [209.85.216.45]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 6128668B188 for ; Mon, 31 Jan 2022 00:01:20 +0200 (EET) Received: by mail-pj1-f45.google.com with SMTP id r59so12084633pjg.4 for ; Sun, 30 Jan 2022 14:01:20 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=sztak6NJXGKo0Xu49SHjdPzvGWYxujQ9LVDQc1ncgNk=; b=D35UjsPxkSqmKn8k7MGq0cpbcRLozUL6iBKJ0AKfiexSLmn69gk33ysgbFpiUnxQf/ dTSsCVBixGwMsh8y0O1nxuIu8P0iIP8WyWL44jnUsXUibv94eeiwkRQTdRICAUJP5UBP azHGwu86dUATi0SaTUtLYMsID8Y15UCVczlNvL3lfbuGELwy8BYEs2j0sr0mTbbhlJVP Z07NFm1WCbIBEhwtgc/d2yMs8qDJRDFDabY5d9TZGJFjfkUOGvjKa1uPnzeIbShC0SPI hMSS+hxSQdZTYwSXecljcuN1Eos/NW8Yw4CVU2ohK3rT4JswuE9pTV6xDTB9MSOJrS9y nfqQ== X-Gm-Message-State: AOAM53268ZAve25yJU8tpBKJufpkZVb2xdnIzYsY8TK0SvCSduIm3f+i hhrf0OyLl38xlX/A/VOTWNVxHnoKMY4= X-Google-Smtp-Source: ABdhPJwULjGWURXWnLFBNuTWeSnsUiXTeTk0Heuqx1IbWF5kyMb4gxOU8thJDcZuXpnrpmcg4Va+aw== X-Received: by 2002:a17:90b:17c1:: with SMTP id me1mr29062197pjb.182.1643580078483; Sun, 30 Jan 2022 14:01:18 -0800 (PST) Received: from localhost (76-14-89-2.sf-cable.astound.net. [76.14.89.2]) by smtp.gmail.com with ESMTPSA id nv13sm8997123pjb.18.2022.01.30.14.01.16 (version=TLS1_2 cipher=ECDHE-ECDSA-CHACHA20-POLY1305 bits=256/256); Sun, 30 Jan 2022 14:01:18 -0800 (PST) Received: by localhost (sSMTP sendmail emulation); Sun, 30 Jan 2022 14:01:07 -0800 From: pal@sandflow.com To: ffmpeg-devel@ffmpeg.org Date: Sun, 30 Jan 2022 14:00:55 -0800 Message-Id: <20220130220055.2595-4-pal@sandflow.com> X-Mailer: git-send-email 2.35.0.windows.1 In-Reply-To: <20220130220055.2595-1-pal@sandflow.com> References: <20220130220055.2595-1-pal@sandflow.com> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH v1 4/4] avformat/imf: document IMFVirtualTrackResourcePlaybackCtx 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: Pierre-Anthony Lemieux 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: From: Pierre-Anthony Lemieux --- libavformat/imfdec.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libavformat/imfdec.c b/libavformat/imfdec.c index 05dcb6ff31..9f9087f936 100644 --- a/libavformat/imfdec.c +++ b/libavformat/imfdec.c @@ -95,12 +95,12 @@ typedef struct IMFAssetLocatorMap { } IMFAssetLocatorMap; typedef struct IMFVirtualTrackResourcePlaybackCtx { - IMFAssetLocator *locator; - FFIMFTrackFileResource *resource; - AVFormatContext *ctx; - AVRational start_time; - AVRational end_time; - AVRational ts_offset; + IMFAssetLocator *locator; /**< Location of the resource */ + FFIMFTrackFileResource *resource; /**< Underlying IMF CPL resource */ + AVFormatContext *ctx; /**< Context associated with the resource */ + AVRational start_time; /**< inclusive start time of the resource on the CPL timeline (s) */ + AVRational end_time; /**< exclusive end time of the resource on the CPL timeline (s) */ + AVRational ts_offset; /**< start_time minus the entry point into the resource (s) */ } IMFVirtualTrackResourcePlaybackCtx; typedef struct IMFVirtualTrackPlaybackCtx { -- 2.17.1 _______________________________________________ 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".