vpxdec: ignore GET_FRAME_CORRUPTED error w/--keep-going

this function may return an error if no frame is available; --keep-going
is meant to test decoder resilience, so simply warn in this case.

Change-Id: I6e6aed3e78eca21cca80d7d8a06a1a244685ba29
This commit is contained in:
James Zern 2014-12-17 19:20:00 -08:00
Родитель 09b9a59fb5
Коммит fcbf3e45ff
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -908,7 +908,8 @@ int main_loop(int argc, const char **argv_) {
if (vpx_codec_control(&decoder, VP8D_GET_FRAME_CORRUPTED, &corrupted)) {
warn("Failed VP8_GET_FRAME_CORRUPTED: %s", vpx_codec_error(&decoder));
goto fail;
if (!keep_going)
goto fail;
}
frames_corrupted += corrupted;