diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-02-20 03:20:06 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-02-20 03:20:06 +0000 |
commit | ff2635b273269dff524bc89242902011b68794ff (patch) | |
tree | f643dca3a71abc8308fde12d4bd65c34997427d6 /libavformat/avformat.h | |
parent | 8815bf011e309aea8774a0cd584cbfadc16558c0 (diff) | |
download | ffmpeg-ff2635b273269dff524bc89242902011b68794ff.tar.gz |
Make timestamp interpolation work with mpeg2 field pictures.
Cleaner/simpler solutions are welcome.
Originally committed as revision 12156 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 06396eebff..cc09e02776 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; - int64_t last_IP_pts; + int last_IP_duration[2]; + int64_t last_IP_pts[2]; /* av_seek_frame() support */ AVIndexEntry *index_entries; /**< only used if the format does not support seeking natively */ |