2012-04-21 23:13:50 +02:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 01:50:59 +01:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2014-09-26 15:50:24 +02:00
|
|
|
* Copyright (C) 2011-2014 - Daniel De Matteis
|
2011-02-06 12:57:12 +01:00
|
|
|
*
|
2012-04-21 23:13:50 +02:00
|
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
2011-02-06 12:57:12 +01:00
|
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
2012-04-21 23:13:50 +02:00
|
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
2011-02-06 12:57:12 +01:00
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
2012-04-21 23:31:57 +02:00
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
2011-02-06 12:57:12 +01:00
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2012-04-21 23:25:32 +02:00
|
|
|
#ifndef __RARCH_RESAMPLER_H
|
|
|
|
#define __RARCH_RESAMPLER_H
|
2011-02-06 12:57:12 +01:00
|
|
|
|
2014-09-26 16:13:10 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
2012-07-06 17:36:37 +02:00
|
|
|
#endif
|
|
|
|
|
2011-02-06 12:57:12 +01:00
|
|
|
#include <stddef.h>
|
2012-07-06 17:36:37 +02:00
|
|
|
#include <stdint.h>
|
2012-02-25 14:02:56 +01:00
|
|
|
#include <math.h>
|
2014-09-09 21:54:41 +02:00
|
|
|
#include "../../boolean.h"
|
2012-02-25 14:02:56 +01:00
|
|
|
|
|
|
|
#ifndef M_PI
|
|
|
|
#define M_PI 3.14159265358979323846264338327
|
|
|
|
#endif
|
2011-02-06 12:57:12 +01:00
|
|
|
|
2014-09-26 16:13:10 +02:00
|
|
|
#define RESAMPLER_SIMD_SSE (1 << 0)
|
|
|
|
#define RESAMPLER_SIMD_SSE2 (1 << 1)
|
|
|
|
#define RESAMPLER_SIMD_VMX (1 << 2)
|
|
|
|
#define RESAMPLER_SIMD_VMX128 (1 << 3)
|
|
|
|
#define RESAMPLER_SIMD_AVX (1 << 4)
|
|
|
|
#define RESAMPLER_SIMD_NEON (1 << 5)
|
|
|
|
#define RESAMPLER_SIMD_SSE3 (1 << 6)
|
|
|
|
#define RESAMPLER_SIMD_SSSE3 (1 << 7)
|
|
|
|
#define RESAMPLER_SIMD_MMX (1 << 8)
|
|
|
|
#define RESAMPLER_SIMD_MMXEXT (1 << 9)
|
|
|
|
#define RESAMPLER_SIMD_SSE4 (1 << 10)
|
|
|
|
#define RESAMPLER_SIMD_SSE42 (1 << 11)
|
|
|
|
#define RESAMPLER_SIMD_AVX2 (1 << 12)
|
|
|
|
#define RESAMPLER_SIMD_VFPU (1 << 13)
|
|
|
|
#define RESAMPLER_SIMD_PS (1 << 14)
|
|
|
|
|
|
|
|
/* A bit-mask of all supported SIMD instruction sets.
|
|
|
|
* Allows an implementation to pick different
|
|
|
|
* dspfilter_implementation structs.
|
|
|
|
*/
|
|
|
|
typedef unsigned resampler_simd_mask_t;
|
|
|
|
|
2012-02-23 23:19:23 +01:00
|
|
|
struct resampler_data
|
2011-02-06 12:57:12 +01:00
|
|
|
{
|
2013-02-16 12:30:26 +01:00
|
|
|
const float *data_in;
|
|
|
|
float *data_out;
|
2011-02-06 12:57:12 +01:00
|
|
|
|
2011-02-06 18:38:04 +01:00
|
|
|
size_t input_frames;
|
|
|
|
size_t output_frames;
|
|
|
|
|
2011-10-15 14:33:41 +02:00
|
|
|
double ratio;
|
2011-02-06 12:57:12 +01:00
|
|
|
};
|
|
|
|
|
2013-02-08 11:49:51 +01:00
|
|
|
typedef struct rarch_resampler
|
|
|
|
{
|
2014-09-26 15:50:24 +02:00
|
|
|
/* Bandwidth factor. Will be < 1.0 for downsampling, > 1.0 for upsampling.
|
2014-09-09 05:56:12 +02:00
|
|
|
* Corresponds to expected resampling ratio. */
|
2014-09-26 16:13:10 +02:00
|
|
|
void *(*init)(double bandwidth_mod, resampler_simd_mask_t mask);
|
2013-02-08 11:49:51 +01:00
|
|
|
void (*process)(void *re, struct resampler_data *data);
|
|
|
|
void (*free)(void *re);
|
|
|
|
const char *ident;
|
|
|
|
} rarch_resampler_t;
|
|
|
|
|
2014-09-16 00:54:18 +02:00
|
|
|
typedef struct audio_frame_float
|
|
|
|
{
|
|
|
|
float l;
|
|
|
|
float r;
|
|
|
|
} audio_frame_float_t;
|
|
|
|
|
2014-09-13 00:10:15 +02:00
|
|
|
extern rarch_resampler_t sinc_resampler;
|
|
|
|
extern rarch_resampler_t CC_resampler;
|
|
|
|
extern rarch_resampler_t nearest_resampler;
|
2013-02-08 11:49:51 +01:00
|
|
|
|
2014-09-09 05:56:12 +02:00
|
|
|
/* Reallocs resampler. Will free previous handle before
|
|
|
|
* allocating a new one. If ident is NULL, first resampler will be used. */
|
|
|
|
bool rarch_resampler_realloc(void **re, const rarch_resampler_t **backend,
|
|
|
|
const char *ident, double bw_ratio);
|
2013-02-08 11:49:51 +01:00
|
|
|
|
2014-09-09 05:56:12 +02:00
|
|
|
/* Convenience macros.
|
|
|
|
* freep makes sure to set handles to NULL to avoid double-free
|
|
|
|
* in rarch_resampler_realloc. */
|
2013-02-08 11:49:51 +01:00
|
|
|
#define rarch_resampler_freep(backend, handle) do { \
|
|
|
|
if (*(backend) && *(handle)) \
|
|
|
|
(*backend)->free(*handle); \
|
|
|
|
*backend = NULL; \
|
|
|
|
*handle = NULL; \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
#define rarch_resampler_process(backend, handle, data) do { \
|
|
|
|
(backend)->process(handle, data); \
|
|
|
|
} while(0)
|
2011-02-06 12:57:12 +01:00
|
|
|
|
2014-09-26 16:13:10 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-02-06 12:57:12 +01:00
|
|
|
#endif
|
|
|
|
|