Commit 64fb19cc authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/formats: Avoid using non public AV_PIX_FMT_NB

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 0f17bc64
......@@ -572,7 +572,7 @@ int ff_parse_pixel_format(enum AVPixelFormat *ret, const char *arg, void *log_ct
int pix_fmt = av_get_pix_fmt(arg);
if (pix_fmt == AV_PIX_FMT_NONE) {
pix_fmt = strtol(arg, &tail, 0);
if (*tail || (unsigned)pix_fmt >= AV_PIX_FMT_NB) {
if (*tail || !av_pix_fmt_desc_get(pix_fmt)) {
av_log(log_ctx, AV_LOG_ERROR, "Invalid pixel format '%s'\n", arg);
return AVERROR(EINVAL);
}
......
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