[FFmpeg-cvslog] r22021 - trunk/libavformat/bink.c
pross
subversion
Wed Feb 24 12:30:38 CET 2010
Author: pross
Date: Wed Feb 24 12:30:38 2010
New Revision: 22021
Log:
set AVINDEX_KEYFRAME correctly for bink
Modified:
trunk/libavformat/bink.c
Modified: trunk/libavformat/bink.c
==============================================================================
--- trunk/libavformat/bink.c Wed Feb 24 11:56:13 2010 (r22020)
+++ trunk/libavformat/bink.c Wed Feb 24 12:30:38 2010 (r22021)
@@ -74,7 +74,7 @@ static int read_header(AVFormatContext *
uint32_t fps_num, fps_den;
AVStream *vst, *ast;
unsigned int i;
- uint32_t pos, prev_pos;
+ uint32_t pos, next_pos;
uint16_t flags;
int keyframe;
@@ -147,22 +147,24 @@ static int read_header(AVFormatContext *
}
/* frame index table */
- pos = get_le32(pb) & ~1;
+ next_pos = get_le32(pb);
for (i = 0; i < vst->duration; i++) {
- prev_pos = pos;
+ pos = next_pos;
if (i == vst->duration - 1) {
- pos = bink->file_size;
+ next_pos = bink->file_size;
keyframe = 0;
} else {
- pos = get_le32(pb);
+ next_pos = get_le32(pb);
keyframe = pos & 1;
- pos &= ~1;
}
- if (pos <= prev_pos) {
+ pos &= ~1;
+ next_pos &= ~1;
+
+ if (next_pos <= pos) {
av_log(s, AV_LOG_ERROR, "invalid frame index table\n");
return AVERROR(EIO);
}
- av_add_index_entry(vst, pos, i, pos - prev_pos, 0,
+ av_add_index_entry(vst, pos, i, next_pos - pos, 0,
keyframe ? AVINDEX_KEYFRAME : 0);
}
More information about the ffmpeg-cvslog
mailing list