summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-05-23 21:36:23 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-05-23 21:36:23 +0000
commit77405fc8664d295f030be106aaffb3e6c9b07225 (patch)
tree58ee18e441d3afb7bb4f77f33f3f8bbc8bb60992 /libavformat/avformat.h
parentcdd5034f892c8c6494d24a6991aa62748ee332db (diff)
cur_dts in native timebase
Originally committed as revision 3153 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index f91a8d7aa8..966d2fd096 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -5,7 +5,7 @@
extern "C" {
#endif
-#define LIBAVFORMAT_BUILD 4613
+#define LIBAVFORMAT_BUILD 4614
#define LIBAVFORMAT_VERSION_INT FFMPEG_VERSION_INT
#define LIBAVFORMAT_VERSION FFMPEG_VERSION
@@ -228,20 +228,13 @@ typedef struct AVStream {
seconds. */
int64_t duration;
- /* the following are used for pts/dts unit conversion */
- int64_t last_pkt_stream_pts;
- int64_t last_pkt_stream_dts;
- int64_t last_pkt_pts;
- int64_t last_pkt_dts;
- int last_pkt_pts_frac;
- int last_pkt_dts_frac;
-
/* av_read_frame() support */
int need_parsing;
struct AVCodecParserContext *parser;
int64_t cur_dts;
int last_IP_duration;
+ int64_t last_IP_pts;
/* av_seek_frame() support */
AVIndexEntry *index_entries; /* only used if the format does not
support seeking natively */