summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-02-20 20:24:38 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-02-20 20:24:38 +0000
commit635fbcb17f8f12d805dbefe4665a5b78e0d1618a (patch)
treeeaf27362f8ad0978206ef77469ff78fadb0ff161 /libavformat/avformat.h
parentbdd745da60f8f1f4ae5d0a96d3874d3d58eab9c7 (diff)
revert 12156
Log: Make timestamp interpolation work with mpeg2 field pictures. Cleaner/simpler solutions are welcome. ---- A IMHO cleaner solution has been implemented. Originally committed as revision 12162 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index cc09e02776..06396eebff 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -337,8 +337,8 @@ typedef struct AVStream {
struct AVCodecParserContext *parser;
int64_t cur_dts;
- int last_IP_duration[2];
- int64_t last_IP_pts[2];
+ 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 */