mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
avfilter/formats: Avoid using non public AV_PIX_FMT_NB
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
0f17bc644c
commit
64fb19cc99
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user