Skip to content
Snippets Groups Projects
Commit 963c16ed authored by Paul B Mahol's avatar Paul B Mahol
Browse files

avfilter/vf_lut3d: do not error out if TITLE is after other lines

parent bd02a6d7
No related branches found
No related tags found
No related merge requests found
......@@ -411,6 +411,8 @@ try_again:
av_log(ctx, AV_LOG_DEBUG, "min: %f %f %f | max: %f %f %f\n",
min[0], min[1], min[2], max[0], max[1], max[2]);
goto try_again;
} else if (!strncmp(line, "TITLE", 5)) {
goto try_again;
}
} while (skip_line(line));
if (sscanf(line, "%f %f %f", &vec->r, &vec->g, &vec->b) != 3)
......@@ -1051,6 +1053,8 @@ try_again:
min[1] = min[2] = min[0];
max[1] = max[2] = max[0];
goto try_again;
} else if (!strncmp(line, "TITLE", 5)) {
goto try_again;
}
} while (skip_line(line));
if (sscanf(line, "%f %f %f", &lut1d->lut[0][i], &lut1d->lut[1][i], &lut1d->lut[2][i]) != 3)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment