diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-06-02 04:08:30 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-06-02 04:08:30 +0000 |
commit | c5577c403f72d04231eea013546211765bf8d65b (patch) | |
tree | 90e903b90f60eba310dbc2e7ac59bbe3a292b64c /libavformat | |
parent | b73e868b4e9a30b38a6e0250143749de79a8f8de (diff) | |
download | ffmpeg-c5577c403f72d04231eea013546211765bf8d65b.tar.gz |
rename last_frame_offset to next_frame_offset, due to r13615
Originally committed as revision 13618 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index 8dddfde167..a12f26afd7 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -882,7 +882,7 @@ static int av_read_frame_internal(AVFormatContext *s, AVPacket *pkt) st->parser->flags |= PARSER_FLAG_COMPLETE_FRAMES; } if(st->parser && (s->iformat->flags & AVFMT_GENERIC_INDEX)){ - st->parser->last_frame_offset= + st->parser->next_frame_offset= st->parser->cur_offset= s->cur_pkt.pos; } } |