diff options
author | Paul B Mahol <onemda@gmail.com> | 2023-05-10 15:13:43 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2023-05-10 16:42:00 +0200 |
commit | 0412e1dc802bb70141ce50c553132dc39c4b5f00 (patch) | |
tree | 9d6329f46f099a33b68e2c151127fe9f91a04661 | |
parent | 5b300b69a6c55e79286007a751d1bc197442b253 (diff) | |
download | ffmpeg-0412e1dc802bb70141ce50c553132dc39c4b5f00.tar.gz |
avfilter/vsrc_testsrc: mark zoneplate as full range
-rw-r--r-- | libavfilter/vsrc_testsrc.c | 1 |
1 files changed, 1 insertions, 0 deletions
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))); } |