Commit 3eba83da authored by Paul B Mahol's avatar Paul B Mahol

avfilter/vf_noise: unbreak filter when inline assembly is not present

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent f144168d
......@@ -432,6 +432,9 @@ static av_cold int init(AVFilterContext *ctx)
return ret;
}
n->line_noise = line_noise_c;
n->line_noise_avg = line_noise_avg_c;
if (HAVE_MMX_INLINE &&
cpu_flags & AV_CPU_FLAG_MMX) {
n->line_noise = line_noise_mmx;
......
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