diff options
author | Martin Storsjö <martin@martin.st> | 2012-12-23 17:10:04 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-12-23 20:52:21 +0200 |
commit | 0940580adb5e6bde8782841b3104fd0783e541f0 (patch) | |
tree | 22a977556148767ce39aeb2df4c5af7e6735cc59 | |
parent | 5af53731d9788897240b3ed9c9176902f2788682 (diff) | |
download | ffmpeg-0940580adb5e6bde8782841b3104fd0783e541f0.tar.gz |
lavc: Correct the description of pkt_dts
The description as updated in 6e5c44b0f made it sound like it is
handled exactly like the pts, which it is not. Clarify that it
is the packet that triggered returning the frame instead of just
the last avpacket (in case of frame threading, it won't be the
dts of the last packet).
Signed-off-by: Martin Storsjö <martin@martin.st>
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index a7cf110e87..e6b8ec626f 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1095,7 +1095,7 @@ typedef struct AVFrame { int64_t pkt_pts; /** - * dts copied from the AVPacket that was decoded to produce this frame + * dts copied from the AVPacket that triggered returning this frame * - encoding: unused * - decoding: Read by user. */ |