Commit e86ed98f authored by Paul B Mahol's avatar Paul B Mahol

lavfi/noise: add missing emms_c()

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 00acfdd9
......@@ -393,6 +393,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *inpicref)
for (i = 0; i < n->nb_planes; i++)
noise(out->data[i], inpicref->data[i], out->linesize[i],
inpicref->linesize[i], n->linesize[i], n->height[i], n, i);
emms_c();
if (inpicref != out)
av_frame_free(&inpicref);
......
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