diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-06-02 03:10:00 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-06-02 03:10:00 +0000 |
commit | 26f237254d56232a492054ac66d79c642d2df98b (patch) | |
tree | 54f9e66667f09f6faa1564b295a9d3ebc71de074 /libavcodec/avcodec.h | |
parent | 556eec43ef071b2c312bd0347561399a279e3451 (diff) | |
download | ffmpeg-26f237254d56232a492054ac66d79c642d2df98b.tar.gz |
Rename last_frame_offset to next_frame_offset.
(it was and is the next not the last)
Originally committed as revision 13615 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 b14c1a940c..87d344cb9f 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2822,7 +2822,7 @@ typedef struct AVCodecParserContext { int64_t frame_offset; /* offset of the current frame */ int64_t cur_offset; /* current offset (incremented by each av_parser_parse()) */ - int64_t last_frame_offset; /* offset of the last frame */ + int64_t next_frame_offset; /* offset of the next frame */ /* video info */ int pict_type; /* XXX: Put it back in AVCodecContext. */ int repeat_pict; /* XXX: Put it back in AVCodecContext. */ |