Commit 0db09db4 authored by mru's avatar mru

DWT: x86 init should depend on HAVE_MMX

The init function is only compiled if MMX is enabled, the call
must use the same condition.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22531 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent decf1eb8
......@@ -839,5 +839,5 @@ void ff_dwt_init(DWTContext *c)
c->horizontal_compose97i = ff_snow_horizontal_compose97i;
c->inner_add_yblock = ff_snow_inner_add_yblock;
if (ARCH_X86) ff_dwt_init_x86(c);
if (HAVE_MMX) ff_dwt_init_x86(c);
}
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