summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-10-27 21:04:20 +0100
committerAnton Khirnov <anton@khirnov.net>2013-10-28 09:28:19 +0100
commit2ba68dd044ca8fc591139c05563840f546a9c0c0 (patch)
treeb87695003b86a9243c841f60540e38449c6ef55c /libavformat/avformat.h
parentf2521563d1a0c3e2a21892f59f3327b82b3db7fc (diff)
lavf: remove unreliable timestamp guessing heuristic
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index ce7a2f89e1..a8e3a7d766 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -730,14 +730,6 @@ typedef struct AVStream {
int pts_wrap_bits; /**< number of bits in pts (used for wrapping control) */
// Timestamp generation support:
- /**
- * Timestamp corresponding to the last dts sync point.
- *
- * Initialized when AVCodecParserContext.dts_sync_point >= 0 and
- * a DTS is received from the underlying container. Otherwise set to
- * AV_NOPTS_VALUE by default.
- */
- int64_t reference_dts;
int64_t first_dts;
int64_t cur_dts;
int64_t last_IP_pts;