From cbad37e5bfe5ce54ddc0c78140ccf789c195ce8d Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Sat, 9 Jan 2016 20:09:52 +0100 Subject: [PATCH] avfilter/avf_showspectrum: set color range to frame Signed-off-by: Paul B Mahol --- libavfilter/avf_showspectrum.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavfilter/avf_showspectrum.c b/libavfilter/avf_showspectrum.c index 5b26be8fbb..d367bd53af 100644 --- a/libavfilter/avf_showspectrum.c +++ b/libavfilter/avf_showspectrum.c @@ -370,6 +370,7 @@ static int config_output(AVFilterLink *outlink) memset(outpicref->data[1] + i * outpicref->linesize[1], 128, outlink->w); memset(outpicref->data[2] + i * outpicref->linesize[2], 128, outlink->w); } + av_frame_set_color_range(outpicref, AVCOL_RANGE_JPEG); } if ((s->orientation == VERTICAL && s->xpos >= s->w) ||