summaryrefslogtreecommitdiff
path: root/libavfilter/avf_showspectrum.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2016-01-09 20:09:52 +0100
committerPaul B Mahol <onemda@gmail.com>2016-01-09 20:09:52 +0100
commitcbad37e5bfe5ce54ddc0c78140ccf789c195ce8d (patch)
treef4ec06bd9c6d74ba640d91ad853694cd50a62a68 /libavfilter/avf_showspectrum.c
parentcbcc88c0393f15512cbf06b895f3f58210376614 (diff)
avfilter/avf_showspectrum: set color range to frame
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/avf_showspectrum.c')
-rw-r--r--libavfilter/avf_showspectrum.c1
1 files changed, 1 insertions, 0 deletions
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) ||