1c72fcc34Sopenharmony_ci/*
2c72fcc34Sopenharmony_ci * Copyright (C) 2013-2015 Intel Corporation
3c72fcc34Sopenharmony_ci *
4c72fcc34Sopenharmony_ci * This program is free software; you can redistribute it and/or modify
5c72fcc34Sopenharmony_ci * it under the terms of the GNU General Public License as published by
6c72fcc34Sopenharmony_ci * the Free Software Foundation; either version 2 of the License, or
7c72fcc34Sopenharmony_ci * (at your option) any later version.
8c72fcc34Sopenharmony_ci *
9c72fcc34Sopenharmony_ci * This program is distributed in the hope that it will be useful,
10c72fcc34Sopenharmony_ci * but WITHOUT ANY WARRANTY; without even the implied warranty of
11c72fcc34Sopenharmony_ci * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12c72fcc34Sopenharmony_ci * GNU General Public License for more details.
13c72fcc34Sopenharmony_ci *
14c72fcc34Sopenharmony_ci */
15c72fcc34Sopenharmony_ci
16c72fcc34Sopenharmony_civoid convert_uint8_to_float(void *, float *, int);
17c72fcc34Sopenharmony_civoid convert_int16_to_float(void *, float *, int);
18c72fcc34Sopenharmony_civoid convert_int24_to_float(void *, float *, int);
19c72fcc34Sopenharmony_civoid convert_int32_to_float(void *, float *, int);
20c72fcc34Sopenharmony_civoid convert_float_to_uint8(float *, void *, int, int);
21c72fcc34Sopenharmony_civoid convert_float_to_int16(float *, void *, int, int);
22c72fcc34Sopenharmony_civoid convert_float_to_int24(float *, void *, int, int);
23c72fcc34Sopenharmony_civoid convert_float_to_int32(float *, void *, int, int);
24