Commit c36010c2 authored by Michael Niedermayer's avatar Michael Niedermayer

avidec: remove harmless duplicate code.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent bfe7bace
......@@ -1385,7 +1385,6 @@ static int avi_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp
st = s->streams[stream_index];
ast= st->priv_data;
index= av_index_search_timestamp(st, timestamp * FFMAX(ast->sample_size, 1), flags);
if(index<0)
if (index<0) {
if (st->nb_index_entries > 0)
av_log(s, AV_LOG_ERROR, "Failed to find timestamp %"PRId64 " in index %"PRId64 " .. %"PRId64 "\n",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment