src/util/arm-algo.h (view raw)
1/* Copyright (c) 2013-2015 Jeffrey Pfau
2 *
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6#ifndef ARM_ALGO_H
7#define ARM_ALGO_H
8
9#ifdef __arm__
10void _to16Bit(uint16_t* dest, uint32_t* src, size_t words);
11
12#if defined(__ARM_NEON)
13void _neon2x(void* dest, void* src, int width, int height);
14void _neon4x(void* dest, void* src, int width, int height);
15#endif
16#endif
17
18#endif