Commit c48e5431 authored by James Almer's avatar James Almer

avcodec: add some documentation to the AVProducerReferenceTime struct

Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent 3d451038
......@@ -1194,7 +1194,15 @@ typedef struct AVCPBProperties {
uint64_t vbv_delay;
} 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 {
/**
* A UTC timestamp, in microseconds, since Unix epoch (e.g, av_gettime()).
*/
int64_t wallclock;
int flags;
} AVProducerReferenceTime;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment