Commit b5c7318b authored by Stefano Sabatini's avatar Stefano Sabatini

lavf/img2dec: improve error logging in case of find_image_range() failure

parent 2dfee8ab
...@@ -263,9 +263,13 @@ static int read_header(AVFormatContext *s1) ...@@ -263,9 +263,13 @@ static int read_header(AVFormatContext *s1)
#endif #endif
} else { } else {
if (find_image_range(&first_index, &last_index, s->path, if (find_image_range(&first_index, &last_index, s->path,
s->start_number) < 0) s->start_number) < 0) {
av_log(s1, AV_LOG_ERROR,
"Could find no file with with path '%s' and index in the range %d-%d\n",
s->path, s->start_number, s->start_number+FIRST_INDEX_SEARCH_RANGE-1);
return AVERROR(ENOENT); return AVERROR(ENOENT);
} }
}
s->img_first = first_index; s->img_first = first_index;
s->img_last = last_index; s->img_last = last_index;
s->img_number = first_index; s->img_number = first_index;
......
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