Small bug fix on the transformation example (#116)

tjDestroy returns 0 on success
This commit is contained in:
Vincent Wen 2019-03-06 16:36:39 -08:00 коммит произвёл GitHub
Родитель 20a83620b5
Коммит 9258c7ae10
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -334,13 +334,13 @@ static int playback(char *input_path, int timestamp = 1000, std::string output_f
TJFLAG_FASTDCT | TJFLAG_FASTUPSAMPLE) != 0)
{
printf("Failed to decompress color frame\n");
if (!tjDestroy(tjHandle))
if (tjDestroy(tjHandle))
{
printf("Failed to destroy turboJPEG handle\n");
}
goto Exit;
}
if (!tjDestroy(tjHandle))
if (tjDestroy(tjHandle))
{
printf("Failed to destroy turboJPEG handle\n");
}