mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-02 20:35:37 +02:00
avfilter/vf_chromanr: move thres calculation to filter_frame()
This commit is contained in:
parent
5d91b7718e
commit
6f84e92172
@ -171,6 +171,8 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
|
|||||||
ChromaNRContext *s = ctx->priv;
|
ChromaNRContext *s = ctx->priv;
|
||||||
AVFrame *out;
|
AVFrame *out;
|
||||||
|
|
||||||
|
s->thres = s->threshold * (1 << (s->depth - 8));
|
||||||
|
|
||||||
out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
|
out = ff_get_video_buffer(outlink, outlink->w, outlink->h);
|
||||||
if (!out) {
|
if (!out) {
|
||||||
av_frame_free(&in);
|
av_frame_free(&in);
|
||||||
@ -197,7 +199,6 @@ static int config_input(AVFilterLink *inlink)
|
|||||||
|
|
||||||
s->nb_planes = desc->nb_components;
|
s->nb_planes = desc->nb_components;
|
||||||
s->depth = desc->comp[0].depth;
|
s->depth = desc->comp[0].depth;
|
||||||
s->thres = s->threshold * (1 << (s->depth - 8));
|
|
||||||
s->filter_slice = s->depth <= 8 ? filter_slice8 : filter_slice16;
|
s->filter_slice = s->depth <= 8 ? filter_slice8 : filter_slice16;
|
||||||
s->chroma_w = 1 << desc->log2_chroma_w;
|
s->chroma_w = 1 << desc->log2_chroma_w;
|
||||||
s->chroma_h = 1 << desc->log2_chroma_h;
|
s->chroma_h = 1 << desc->log2_chroma_h;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user