Mercurial > libavcodec.hg
comparison avcodec.h @ 6979:4257fdcf664e libavcodec
Rename last_frame_offset to next_frame_offset.
(it was and is the next not the last)
| author | michael |
|---|---|
| date | Mon, 02 Jun 2008 03:10:00 +0000 |
| parents | de032bcdeff9 |
| children | 2dde03056bd6 |
comparison
equal
deleted
inserted
replaced
| 6978:9774d160f014 | 6979:4257fdcf664e |
|---|---|
| 2820 void *priv_data; | 2820 void *priv_data; |
| 2821 struct AVCodecParser *parser; | 2821 struct AVCodecParser *parser; |
| 2822 int64_t frame_offset; /* offset of the current frame */ | 2822 int64_t frame_offset; /* offset of the current frame */ |
| 2823 int64_t cur_offset; /* current offset | 2823 int64_t cur_offset; /* current offset |
| 2824 (incremented by each av_parser_parse()) */ | 2824 (incremented by each av_parser_parse()) */ |
| 2825 int64_t last_frame_offset; /* offset of the last frame */ | 2825 int64_t next_frame_offset; /* offset of the next frame */ |
| 2826 /* video info */ | 2826 /* video info */ |
| 2827 int pict_type; /* XXX: Put it back in AVCodecContext. */ | 2827 int pict_type; /* XXX: Put it back in AVCodecContext. */ |
| 2828 int repeat_pict; /* XXX: Put it back in AVCodecContext. */ | 2828 int repeat_pict; /* XXX: Put it back in AVCodecContext. */ |
| 2829 int64_t pts; /* pts of the current frame */ | 2829 int64_t pts; /* pts of the current frame */ |
| 2830 int64_t dts; /* dts of the current frame */ | 2830 int64_t dts; /* dts of the current frame */ |
