From 0412e1dc802bb70141ce50c553132dc39c4b5f00 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Wed, 10 May 2023 15:13:43 +0200 Subject: [PATCH] avfilter/vsrc_testsrc: mark zoneplate as full range --- libavfilter/vsrc_testsrc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavfilter/vsrc_testsrc.c b/libavfilter/vsrc_testsrc.c index 0138e14fb9..d24481e6c4 100644 --- a/libavfilter/vsrc_testsrc.c +++ b/libavfilter/vsrc_testsrc.c @@ -2167,6 +2167,7 @@ ZONEPLATE_SLICE(16, uint16_t) static void zoneplate_fill_picture(AVFilterContext *ctx, AVFrame *frame) { TestSourceContext *test = ctx->priv; + frame->color_range = AVCOL_RANGE_JPEG; ff_filter_execute(ctx, test->fill_slice_fn, frame, NULL, FFMIN(frame->height, ff_filter_get_nb_threads(ctx))); }