mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 14:01:27 +00:00
avfilter/vf_noise: unbreak filter when inline assembly is not present
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
f144168d9b
commit
3eba83daed
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user