Commit 3d7a65c1 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Avcodec: set the dsp_mask for NEON too

parent 08a51ba6
......@@ -82,5 +82,10 @@ unsigned GetVlcDspMask( void )
mask |= AV_CPU_FLAG_ALTIVEC;
#endif
#if defined ( __arm__)
if( !vlc_CPU_ARM_NEON() )
mask |= AV_CPU_FLAG_NEON;
#endif
return mask;
}
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