[FFmpeg-cvslog] avformat/imf: document IMFVirtualTrackResourcePlaybackCtx
Pierre-Anthony Lemieux
git at videolan.org
Sun Feb 20 10:54:28 EET 2022
ffmpeg | branch: master | Pierre-Anthony Lemieux <pal at palemieux.com> | Wed Feb 16 08:54:10 2022 -0800| [12139d11036e3e5db87c4ab5a2b064fed7394bbb] | committer: Zane van Iperen
avformat/imf: document IMFVirtualTrackResourcePlaybackCtx
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=12139d11036e3e5db87c4ab5a2b064fed7394bbb
---
libavformat/imfdec.c | 12 ++++++------
1 file 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 {
More information about the ffmpeg-cvslog
mailing list