mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01: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
1 changed files with 3 additions and 0 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue