summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-02-08 19:17:03 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-02-09 19:03:31 +0100
commit677911ad8153d10056e7078f66bc1924616c2d30 (patch)
treea9d813c4b4bcefaa603a17c3a3575f64272ff7c5 /ffmpeg.c
parentc28e7af70da17fe523a5504356dbdc1d27b0c73b (diff)
ffmpeg: better dox for *pts.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 7365cfbdf3..1dd4e3b924 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -210,9 +210,8 @@ typedef struct InputStream {
/* dts of the last packet read for this stream */
int64_t dts;
- int64_t next_pts; /* synthetic pts for cases where pkt.pts
- is not defined */
- int64_t pts; /* current pts */
+ int64_t next_pts; ///< synthetic pts for the next decode frame
+ int64_t pts; ///< current pts of the decoded frame
double ts_scale;
int is_start; /* is 1 at the start and after a discontinuity */
int showed_multi_packet_warning;