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 E14DB40987 for ; Wed, 2 Feb 2022 00:14:07 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 9A3D068B2B5; Wed, 2 Feb 2022 02:13:41 +0200 (EET) Received: from mail-pf1-f173.google.com (mail-pf1-f173.google.com [209.85.210.173]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 331D868B2A9 for ; Wed, 2 Feb 2022 02:13:35 +0200 (EET) Received: by mail-pf1-f173.google.com with SMTP id a8so17310144pfa.6 for ; Tue, 01 Feb 2022 16:13:35 -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=Z2tWRCuRwFFjrnhDHQjJyUbrPHNKSW3xnAmcUmhvJBs=; b=wWyoNE7Tl5zm2Y1Si57keOYiRGVWwdHnvj/cp7fZ6NG2Qf072L6AcFKqpiRSQz4Pqz XIYWsGL0vsjStRnLqXkpUBvIB9brA6Eg7IADj0zHZnHqcqJ4cq8qz9isk1DW/7fOmA+Z JEdxpPBVy7Rjl971LBGw1hVLNMBBfnei09k5kUlTL8/vVJLsF4wUrmoy/8pUgNyauRVv HqHsaoO1M4VSN74pCCb647CDGc4pSED7xnO7aZ6YYkhSUfpWB7WUQRKAbxzglCyS93SY FRilfxSc16oMPuyLlXXwa1R78eAYE9pHSHg23WsFnXdQV/imDtwzqAATH/dmEqzC2J2o wBbg== X-Gm-Message-State: AOAM530/W0yalbWk5JWwDMkbKeqeoDSPocZipsFV71hUvsjVpDU6gtFQ 00rfiihvzCkVLcS7+3u2YqjslUHzhdY= X-Google-Smtp-Source: ABdhPJzoD3JulUK3pf/cfucg/l4LOiCPUAZjVAS5Xm20NtY+ro5BQSdd8GkKAPC03lRfbnMZkjKACA== X-Received: by 2002:a63:216:: with SMTP id 22mr22859399pgc.89.1643760813301; Tue, 01 Feb 2022 16:13:33 -0800 (PST) Received: from localhost (76-14-89-2.sf-cable.astound.net. [76.14.89.2]) by smtp.gmail.com with ESMTPSA id x187sm21740989pgx.10.2022.02.01.16.13.31 (version=TLS1_2 cipher=ECDHE-ECDSA-CHACHA20-POLY1305 bits=256/256); Tue, 01 Feb 2022 16:13:32 -0800 (PST) Received: by localhost (sSMTP sendmail emulation); Tue, 01 Feb 2022 16:13:20 -0800 From: pal@sandflow.com To: ffmpeg-devel@ffmpeg.org Date: Tue, 1 Feb 2022 16:13:02 -0800 Message-Id: <20220202001302.4430-4-pal@sandflow.com> X-Mailer: git-send-email 2.35.0.windows.1 In-Reply-To: <20220202001302.4430-1-pal@sandflow.com> References: <20220202001302.4430-1-pal@sandflow.com> MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH v2 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 5be4411cb1..02e7bcc33f 100644 --- a/libavformat/imfdec.c +++ b/libavformat/imfdec.c @@ -96,12 +96,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".