simd.h (385B)
1 // Copyright (c) the JPEG XL Project Authors. All rights reserved. 2 // 3 // Use of this source code is governed by a BSD-style 4 // license that can be found in the LICENSE file. 5 6 #ifndef LIB_JPEGLI_SIMD_H_ 7 #define LIB_JPEGLI_SIMD_H_ 8 9 #include <stddef.h> 10 11 namespace jpegli { 12 13 // Returns SIMD vector size in bytes. 14 size_t VectorSize(); 15 16 } // namespace jpegli 17 18 #endif // LIB_JPEGLI_SIMD_H_