diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-03-19 00:47:00 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-19 00:47:00 +0100 |
commit | 6128d33946fcc492d12bf477657d70d43081c430 (patch) | |
tree | 50785e2d75ae85724cc7e0dd0ebec55e78bb2871 /libavutil | |
parent | 0e02a5193f80da7c5c16aacb0d6d143bd39865b0 (diff) | |
download | ffmpeg-6128d33946fcc492d12bf477657d70d43081c430.tar.gz |
AVFrame.pkt_dts: improve docs
Related to Ticket2375
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/frame.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavutil/frame.h b/libavutil/frame.h index 378538c650..39a664fde5 100644 --- a/libavutil/frame.h +++ b/libavutil/frame.h @@ -164,7 +164,9 @@ typedef struct AVFrame { int64_t pkt_pts; /** - * DTS copied from the AVPacket that triggered returning this frame. + * DTS copied from the AVPacket that triggered returning this frame. (if frame threading isnt used) + * This is also the Presentation time of this AVFrame calculated from + * only AVPacket.dts values without pts values. */ int64_t pkt_dts; |