Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre-Anthony Lemieux <pal@palemieux.com>2022-02-16 19:54:10 +0300
committerZane van Iperen <zane@zanevaniperen.com>2022-02-20 11:32:09 +0300
commit12139d11036e3e5db87c4ab5a2b064fed7394bbb (patch)
tree64f5717d207b567e08add8a75fa721c29e69054e /libavformat/imfdec.c
parentb0193e26ca32914bdd3d05be5d1f474ca8c52124 (diff)
avformat/imf: document IMFVirtualTrackResourcePlaybackCtx
Diffstat (limited to 'libavformat/imfdec.c')
-rw-r--r--libavformat/imfdec.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/imfdec.c b/libavformat/imfdec.c
index bd1135e2e4..3ce850b75a 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 {