Skip to content
Snippets Groups Projects
Commit b65ea6ab authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avfilter/vf_tinterlace: fix image alignment

parent a678d667
No related branches found
No related tags found
No related merge requests found
......@@ -131,7 +131,7 @@ static int config_out_props(AVFilterLink *outlink)
if (ff_fmt_is_in(outlink->format, full_scale_yuvj_pix_fmts))
black[0] = black[3] = 0;
ret = av_image_alloc(tinterlace->black_data, tinterlace->black_linesize,
outlink->w, outlink->h, outlink->format, 1);
outlink->w, outlink->h, outlink->format, 16);
if (ret < 0)
return ret;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment