Commit 126ba688 authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vf_noise: rename linesize to bytewidth

Its the width in bytes and not the linesize or stride.
This makes the naming more consistent with the rest of the codebase
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 53102fa2
......@@ -56,7 +56,7 @@ typedef struct {
typedef struct {
const AVClass *class;
int nb_planes;
int linesize[4];
int bytewidth[4];
int height[4];
FilterParams all;
FilterParams param[4];
......@@ -190,7 +190,7 @@ static int config_input(AVFilterLink *inlink)
n->nb_planes = av_pix_fmt_count_planes(inlink->format);
if ((ret = av_image_fill_linesizes(n->linesize, inlink->format, inlink->w)) < 0)
if ((ret = av_image_fill_linesizes(n->bytewidth, inlink->format, inlink->w)) < 0)
return ret;
n->height[1] = n->height[2] = FF_CEIL_RSHIFT(inlink->h, desc->log2_chroma_h);
......@@ -377,7 +377,7 @@ static int filter_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
noise(td->out->data[plane] + start * td->out->linesize[plane],
td->in->data[plane] + start * td->in->linesize[plane],
td->out->linesize[plane], td->in->linesize[plane],
s->linesize[plane], start, end, s, plane);
s->bytewidth[plane], start, end, s, plane);
}
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment