You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avcodec: add some documentation to the AVProducerReferenceTime struct
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
@@ -1194,7 +1194,15 @@ typedef struct AVCPBProperties {
|
|||||||
uint64_t vbv_delay;
|
uint64_t vbv_delay;
|
||||||
} AVCPBProperties;
|
} AVCPBProperties;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This structure supplies correlation between a packet timestamp and a wall clock
|
||||||
|
* production time. The definition follows the Producer Reference Time ('prft')
|
||||||
|
* as defined in ISO/IEC 14496-12
|
||||||
|
*/
|
||||||
typedef struct AVProducerReferenceTime {
|
typedef struct AVProducerReferenceTime {
|
||||||
|
/**
|
||||||
|
* A UTC timestamp, in microseconds, since Unix epoch (e.g, av_gettime()).
|
||||||
|
*/
|
||||||
int64_t wallclock;
|
int64_t wallclock;
|
||||||
int flags;
|
int flags;
|
||||||
} AVProducerReferenceTime;
|
} AVProducerReferenceTime;
|
||||||
|
Reference in New Issue
Block a user