mirror of
https://github.com/xiph/opus.git
synced 2025-05-22 03:18:30 +00:00
Add missing include guards
This commit is contained in:
parent
c6db01d2a6
commit
c9b9570970
3 changed files with 15 additions and 0 deletions
|
@ -28,6 +28,9 @@
|
|||
*/
|
||||
/* NEON support for ARM machines */
|
||||
|
||||
#ifndef VEC_NEON_H
|
||||
#define VEC_NEON_H
|
||||
|
||||
#include <arm_neon.h>
|
||||
|
||||
#ifndef DISABLE_DOT_PROD
|
||||
|
@ -366,3 +369,5 @@ static inline void sparse_sgemv_accum8x4(float *_out, const qweight *w, int rows
|
|||
vst1q_f32(&_out[i+4], vmulq_f32(scale_1, vcvtq_f32_s32(acc1)));
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue