mirror of
https://github.com/libretro/RetroArch.git
synced 2024-12-01 21:11:04 +00:00
4968eafddf
back to original name
105 lines
2.9 KiB
C
105 lines
2.9 KiB
C
/* RetroArch - A frontend for libretro.
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
|
*
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
|
* 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.
|
|
*
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "resampler.h"
|
|
#include <string.h>
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "../config.h"
|
|
#endif
|
|
|
|
#include "../general.h"
|
|
|
|
static const rarch_resampler_t *backends[] = {
|
|
&sinc_resampler,
|
|
#ifdef HAVE_CC_RESAMPLER
|
|
&CC_resampler,
|
|
#endif
|
|
NULL,
|
|
};
|
|
|
|
static int find_resampler_driver_index(const char *driver)
|
|
{
|
|
unsigned i;
|
|
for (i = 0; backends[i]; i++)
|
|
if (strcasecmp(driver, backends[i]->ident) == 0)
|
|
return i;
|
|
return -1;
|
|
}
|
|
|
|
// Resampler is used by multiple modules so avoid clobbering g_extern.audio_data.resampler here.
|
|
static const rarch_resampler_t *find_resampler_driver(const char *ident)
|
|
{
|
|
if (!ident)
|
|
return backends[0];
|
|
|
|
int i = find_resampler_driver_index(ident);
|
|
if (i >= 0)
|
|
return backends[i];
|
|
else
|
|
{
|
|
unsigned d;
|
|
RARCH_ERR("Couldn't find any resampler driver named \"%s\"\n", ident);
|
|
RARCH_LOG_OUTPUT("Available resampler drivers are:\n");
|
|
for (d = 0; backends[d]; d++)
|
|
RARCH_LOG_OUTPUT("\t%s\n", backends[d]->ident);
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
#ifndef RESAMPLER_TEST
|
|
void find_prev_resampler_driver(void)
|
|
{
|
|
int i = find_resampler_driver_index(g_settings.audio.resampler);
|
|
if (i > 0)
|
|
strlcpy(g_settings.audio.resampler, backends[i - 1]->ident, sizeof(g_settings.audio.resampler));
|
|
else
|
|
RARCH_WARN("Couldn't find any previous resampler driver (current one: \"%s\").\n", g_extern.audio_data.resampler->ident);
|
|
}
|
|
|
|
void find_next_resampler_driver(void)
|
|
{
|
|
int i = find_resampler_driver_index(g_settings.audio.resampler);
|
|
if (i >= 0 && backends[i + 1])
|
|
strlcpy(g_settings.audio.resampler, backends[i + 1]->ident, sizeof(g_settings.audio.resampler));
|
|
else
|
|
RARCH_WARN("Couldn't find any next resampler driver (current one: \"%s\").\n", g_extern.audio_data.resampler->ident);
|
|
}
|
|
#endif
|
|
|
|
bool rarch_resampler_realloc(void **re, const rarch_resampler_t **backend, const char *ident, double bw_ratio)
|
|
{
|
|
if (*re && *backend)
|
|
(*backend)->free(*re);
|
|
|
|
*re = NULL;
|
|
*backend = NULL;
|
|
|
|
*backend = find_resampler_driver(ident);
|
|
if (!*backend)
|
|
return false;
|
|
|
|
*re = (*backend)->init(bw_ratio);
|
|
|
|
if (!*re)
|
|
{
|
|
*backend = NULL;
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|