diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-06-02 02:55:30 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-06-02 02:55:30 +0000 |
commit | cb63a4b37ccd33a731b4a3291b7cc376603569ad (patch) | |
tree | acc65120225a075baa56ea09957e3521605f636b /libavcodec/avcodec.h | |
parent | 406113721f53bc85aad006b4247db355f043c211 (diff) | |
download | ffmpeg-cb63a4b37ccd33a731b4a3291b7cc376603569ad.tar.gz |
Simplify parser core.
Originally committed as revision 13613 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 2cf360fbcf..b14c1a940c 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2837,6 +2837,7 @@ typedef struct AVCodecParserContext { #define AV_PARSER_PTS_NB 4 int cur_frame_start_index; int64_t cur_frame_offset[AV_PARSER_PTS_NB]; + int64_t cur_frame_end[AV_PARSER_PTS_NB]; int64_t cur_frame_pts[AV_PARSER_PTS_NB]; int64_t cur_frame_dts[AV_PARSER_PTS_NB]; @@ -2844,7 +2845,6 @@ typedef struct AVCodecParserContext { #define PARSER_FLAG_COMPLETE_FRAMES 0x0001 int64_t offset; ///< byte offset from starting packet start - int64_t last_offset; } AVCodecParserContext; typedef struct AVCodecParser { |