2012-04-21 23:13:50 +02:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2013-01-01 01:37:37 +01:00
|
|
|
* Copyright (C) 2010-2013 - Hans-Kristian Arntzen
|
2010-12-24 01:33:40 +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
|
2010-12-24 01:33:40 +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;
|
2010-12-24 01:33:40 +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.
|
2010-12-24 01:33:40 +01:00
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2010-12-24 01:26:36 +01:00
|
|
|
#include "driver.h"
|
|
|
|
#include "general.h"
|
2011-03-29 18:04:41 +02:00
|
|
|
#include "file.h"
|
2010-12-24 01:26:36 +01:00
|
|
|
#include <stdio.h>
|
2010-12-29 19:43:17 +01:00
|
|
|
#include <string.h>
|
2011-03-07 19:12:14 +01:00
|
|
|
#include <math.h>
|
2012-03-16 23:26:57 +01:00
|
|
|
#include "compat/posix_string.h"
|
2013-01-24 18:37:42 +01:00
|
|
|
#include "audio/utils.h"
|
2013-02-08 11:49:51 +01:00
|
|
|
#include "audio/resampler.h"
|
2013-02-16 02:21:43 +01:00
|
|
|
#include "gfx/thread_wrapper.h"
|
2013-07-14 13:09:53 +02:00
|
|
|
#include "audio/thread_wrapper.h"
|
2013-04-20 10:56:04 +02:00
|
|
|
#include "gfx/gfx_common.h"
|
2011-01-07 17:59:53 +01:00
|
|
|
|
2012-09-28 22:38:42 +02:00
|
|
|
#ifdef HAVE_X11
|
|
|
|
#include "gfx/context/x11_common.h"
|
|
|
|
#endif
|
|
|
|
|
2011-01-07 17:59:53 +01:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2010-12-30 03:02:30 +01:00
|
|
|
#include "config.h"
|
2011-01-07 17:59:53 +01:00
|
|
|
#endif
|
2010-12-24 01:26:36 +01:00
|
|
|
|
2010-12-29 20:50:50 +01:00
|
|
|
static const audio_driver_t *audio_drivers[] = {
|
2010-12-29 20:05:57 +01:00
|
|
|
#ifdef HAVE_ALSA
|
|
|
|
&audio_alsa,
|
2013-06-21 18:56:39 +02:00
|
|
|
#ifndef __QNX__
|
2013-01-04 14:58:34 -05:00
|
|
|
&audio_alsathread,
|
2010-12-29 20:05:57 +01:00
|
|
|
#endif
|
2013-06-21 18:56:39 +02:00
|
|
|
#endif
|
2011-06-16 23:20:12 +02:00
|
|
|
#if defined(HAVE_OSS) || defined(HAVE_OSS_BSD)
|
2010-12-29 20:05:57 +01:00
|
|
|
&audio_oss,
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_RSOUND
|
|
|
|
&audio_rsound,
|
|
|
|
#endif
|
2011-08-08 17:27:52 +02:00
|
|
|
#ifdef HAVE_COREAUDIO
|
|
|
|
&audio_coreaudio,
|
|
|
|
#endif
|
2010-12-29 20:05:57 +01:00
|
|
|
#ifdef HAVE_AL
|
|
|
|
&audio_openal,
|
|
|
|
#endif
|
2012-10-18 05:45:21 +02:00
|
|
|
#ifdef HAVE_SL
|
|
|
|
&audio_opensl,
|
|
|
|
#endif
|
2010-12-29 20:05:57 +01:00
|
|
|
#ifdef HAVE_ROAR
|
|
|
|
&audio_roar,
|
|
|
|
#endif
|
2011-01-01 03:53:30 +01:00
|
|
|
#ifdef HAVE_JACK
|
|
|
|
&audio_jack,
|
|
|
|
#endif
|
2011-01-07 15:50:16 +01:00
|
|
|
#ifdef HAVE_SDL
|
|
|
|
&audio_sdl,
|
|
|
|
#endif
|
2011-01-27 01:46:00 +01:00
|
|
|
#ifdef HAVE_XAUDIO
|
|
|
|
&audio_xa,
|
|
|
|
#endif
|
2011-08-04 18:45:40 +02:00
|
|
|
#ifdef HAVE_DSOUND
|
|
|
|
&audio_dsound,
|
|
|
|
#endif
|
2011-01-29 01:15:09 +01:00
|
|
|
#ifdef HAVE_PULSE
|
|
|
|
&audio_pulse,
|
|
|
|
#endif
|
2011-12-14 12:49:13 +01:00
|
|
|
#ifdef __CELLOS_LV2__
|
|
|
|
&audio_ps3,
|
|
|
|
#endif
|
2011-12-13 23:17:37 +01:00
|
|
|
#ifdef XENON
|
|
|
|
&audio_xenon360,
|
|
|
|
#endif
|
2011-12-14 12:49:13 +01:00
|
|
|
#ifdef GEKKO
|
2012-08-09 03:54:27 +02:00
|
|
|
&audio_gx,
|
2011-12-14 12:49:13 +01:00
|
|
|
#endif
|
2013-08-28 00:03:25 -04:00
|
|
|
#ifdef EMSCRIPTEN
|
|
|
|
&audio_rwebaudio,
|
|
|
|
#endif
|
2013-01-09 05:54:48 +01:00
|
|
|
#ifdef HAVE_NULLAUDIO
|
2012-06-20 00:43:41 +02:00
|
|
|
&audio_null,
|
2013-01-09 05:54:48 +01:00
|
|
|
#endif
|
2013-10-30 23:36:52 +01:00
|
|
|
NULL,
|
2010-12-29 20:05:57 +01:00
|
|
|
};
|
|
|
|
|
2010-12-29 20:50:50 +01:00
|
|
|
static const video_driver_t *video_drivers[] = {
|
2011-11-01 18:24:43 +01:00
|
|
|
#ifdef HAVE_OPENGL
|
2010-12-29 20:05:57 +01:00
|
|
|
&video_gl,
|
2011-11-01 18:24:43 +01:00
|
|
|
#endif
|
2011-12-15 13:54:22 +01:00
|
|
|
#ifdef XENON
|
|
|
|
&video_xenon360,
|
|
|
|
#endif
|
2012-07-08 18:21:29 +03:00
|
|
|
#if defined(_XBOX) && (defined(HAVE_D3D8) || defined(HAVE_D3D9))
|
2012-07-07 20:15:06 +03:00
|
|
|
&video_xdk_d3d,
|
2012-01-05 13:30:13 +01:00
|
|
|
#endif
|
2012-10-26 21:09:30 +02:00
|
|
|
#if defined(HAVE_WIN32_D3D9)
|
|
|
|
&video_d3d9,
|
|
|
|
#endif
|
2012-11-22 23:32:42 +01:00
|
|
|
#ifdef SN_TARGET_PSP2
|
2012-11-26 03:16:20 +01:00
|
|
|
&video_vita,
|
2012-11-23 05:20:05 +01:00
|
|
|
#endif
|
2013-01-10 04:22:42 +01:00
|
|
|
//#ifdef PSP
|
|
|
|
//&video_psp1,
|
|
|
|
//#endif
|
2011-11-01 18:24:43 +01:00
|
|
|
#ifdef HAVE_SDL
|
2011-04-21 03:23:44 +02:00
|
|
|
&video_sdl,
|
2010-12-29 20:05:57 +01:00
|
|
|
#endif
|
2011-03-13 04:51:09 +01:00
|
|
|
#ifdef HAVE_XVIDEO
|
|
|
|
&video_xvideo,
|
|
|
|
#endif
|
2011-12-14 21:44:03 +01:00
|
|
|
#ifdef GEKKO
|
2012-08-09 03:54:27 +02:00
|
|
|
&video_gx,
|
2011-12-14 21:44:03 +01:00
|
|
|
#endif
|
2012-09-24 15:19:07 -04:00
|
|
|
#ifdef HAVE_VG
|
|
|
|
&video_vg,
|
2012-05-23 02:31:29 -04:00
|
|
|
#endif
|
2013-01-09 05:54:48 +01:00
|
|
|
#ifdef HAVE_NULLVIDEO
|
2012-06-20 00:43:41 +02:00
|
|
|
&video_null,
|
2013-01-09 05:54:48 +01:00
|
|
|
#endif
|
2013-07-28 18:37:31 +02:00
|
|
|
#ifdef HAVE_OMAP
|
|
|
|
&video_omap,
|
|
|
|
#endif
|
2013-10-30 23:36:52 +01:00
|
|
|
NULL,
|
2010-12-29 20:05:57 +01:00
|
|
|
};
|
|
|
|
|
2011-01-06 18:34:11 +01:00
|
|
|
static const input_driver_t *input_drivers[] = {
|
2011-12-02 02:41:32 +01:00
|
|
|
#ifdef __CELLOS_LV2__
|
2011-12-02 02:22:29 +01:00
|
|
|
&input_ps3,
|
|
|
|
#endif
|
2012-11-23 02:40:03 +01:00
|
|
|
#if defined(SN_TARGET_PSP2) || defined(PSP)
|
|
|
|
&input_psp,
|
2012-11-22 18:37:10 +01:00
|
|
|
#endif
|
2011-01-06 18:34:11 +01:00
|
|
|
#ifdef HAVE_SDL
|
|
|
|
&input_sdl,
|
|
|
|
#endif
|
2012-09-30 14:59:27 +02:00
|
|
|
#ifdef HAVE_DINPUT
|
|
|
|
&input_dinput,
|
|
|
|
#endif
|
2012-09-25 15:14:56 +02:00
|
|
|
#ifdef HAVE_X11
|
2011-05-11 17:57:31 +02:00
|
|
|
&input_x,
|
|
|
|
#endif
|
2011-12-14 01:35:17 +01:00
|
|
|
#ifdef XENON
|
|
|
|
&input_xenon360,
|
|
|
|
#endif
|
2012-07-07 20:56:46 +03:00
|
|
|
#if defined(HAVE_XINPUT2) || defined(HAVE_XINPUT_XBOX1)
|
|
|
|
&input_xinput,
|
2012-01-05 13:30:13 +01:00
|
|
|
#endif
|
2011-12-14 21:44:03 +01:00
|
|
|
#ifdef GEKKO
|
2012-08-09 03:54:27 +02:00
|
|
|
&input_gx,
|
2011-12-14 21:44:03 +01:00
|
|
|
#endif
|
2012-10-16 19:46:31 +02:00
|
|
|
#ifdef ANDROID
|
|
|
|
&input_android,
|
|
|
|
#endif
|
2012-09-10 01:53:42 +02:00
|
|
|
#if defined(__linux__) && !defined(ANDROID)
|
2012-05-25 15:44:39 -04:00
|
|
|
&input_linuxraw,
|
|
|
|
#endif
|
2013-07-07 16:01:58 -04:00
|
|
|
#if defined(IOS) || defined(OSX) //< Don't use __APPLE__ as it breaks basic SDL builds
|
|
|
|
&input_apple,
|
2013-02-06 18:23:11 -05:00
|
|
|
#endif
|
2013-03-18 18:56:07 -04:00
|
|
|
#ifdef __BLACKBERRY_QNX__
|
|
|
|
&input_qnx,
|
|
|
|
#endif
|
2013-09-10 20:21:48 -04:00
|
|
|
#ifdef EMSCRIPTEN
|
|
|
|
&input_rwebinput,
|
|
|
|
#endif
|
2013-01-09 05:54:48 +01:00
|
|
|
#ifdef HAVE_NULLINPUT
|
2012-06-20 00:43:41 +02:00
|
|
|
&input_null,
|
2013-01-09 05:54:48 +01:00
|
|
|
#endif
|
2013-10-30 23:36:52 +01:00
|
|
|
NULL,
|
2011-01-06 18:34:11 +01:00
|
|
|
};
|
|
|
|
|
2013-10-30 23:36:52 +01:00
|
|
|
static int find_audio_driver_index(const char *driver)
|
2010-12-29 20:50:50 +01:00
|
|
|
{
|
2013-10-22 15:08:17 +02:00
|
|
|
unsigned i;
|
2013-10-30 23:36:52 +01:00
|
|
|
for (i = 0; audio_drivers[i]; i++)
|
|
|
|
if (strcasecmp(driver, audio_drivers[i]->ident) == 0)
|
|
|
|
return i;
|
|
|
|
return -1;
|
|
|
|
}
|
2010-12-29 20:56:56 +01:00
|
|
|
|
2013-10-30 23:36:52 +01:00
|
|
|
static int find_video_driver_index(const char *driver)
|
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
for (i = 0; video_drivers[i]; i++)
|
|
|
|
if (strcasecmp(driver, video_drivers[i]->ident) == 0)
|
|
|
|
return i;
|
|
|
|
return -1;
|
2010-12-29 20:50:50 +01:00
|
|
|
}
|
|
|
|
|
2013-10-30 23:36:52 +01:00
|
|
|
static int find_input_driver_index(const char *driver)
|
2013-10-30 17:06:50 +01:00
|
|
|
{
|
|
|
|
unsigned i;
|
2013-10-30 23:36:52 +01:00
|
|
|
for (i = 0; input_drivers[i]; i++)
|
|
|
|
if (strcasecmp(driver, input_drivers[i]->ident) == 0)
|
|
|
|
return i;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void find_audio_driver(void)
|
|
|
|
{
|
|
|
|
int i = find_audio_driver_index(g_settings.audio.driver);
|
|
|
|
if (i >= 0)
|
|
|
|
driver.audio = audio_drivers[i];
|
|
|
|
else
|
2013-10-30 17:06:50 +01:00
|
|
|
{
|
2013-10-30 23:36:52 +01:00
|
|
|
unsigned d;
|
|
|
|
RARCH_ERR("Couldn't find any audio driver named \"%s\"\n", g_settings.audio.driver);
|
|
|
|
RARCH_LOG_OUTPUT("Available audio drivers are:\n");
|
|
|
|
for (d = 0; audio_drivers[d]; d++)
|
|
|
|
RARCH_LOG_OUTPUT("\t%s\n", audio_drivers[d]->ident);
|
|
|
|
|
|
|
|
rarch_fail(1, "find_audio_driver()");
|
2013-10-30 17:06:50 +01:00
|
|
|
}
|
2013-10-30 23:36:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void find_prev_audio_driver(void)
|
|
|
|
{
|
|
|
|
int i = find_audio_driver_index(g_settings.audio.driver);
|
|
|
|
if (i > 0)
|
|
|
|
strlcpy(g_settings.audio.driver, audio_drivers[i - 1]->ident, sizeof(g_settings.audio.driver));
|
|
|
|
else
|
|
|
|
RARCH_WARN("Couldn't find any previous audio driver (current one: \"%s\").\n", g_settings.audio.driver);
|
2013-10-30 17:06:50 +01:00
|
|
|
}
|
|
|
|
|
2013-10-30 17:50:43 +01:00
|
|
|
void find_next_audio_driver(void)
|
2013-10-30 17:06:50 +01:00
|
|
|
{
|
2013-10-30 23:36:52 +01:00
|
|
|
int i = find_audio_driver_index(g_settings.audio.driver);
|
|
|
|
if (i >= 0 && audio_drivers[i + 1])
|
|
|
|
strlcpy(g_settings.audio.driver, audio_drivers[i + 1]->ident, sizeof(g_settings.audio.driver));
|
|
|
|
else
|
|
|
|
RARCH_WARN("Couldn't find any next audio driver (current one: \"%s\").\n", g_settings.audio.driver);
|
2013-10-30 17:06:50 +01:00
|
|
|
}
|
|
|
|
|
2013-01-07 18:18:44 +01:00
|
|
|
static void find_video_driver(void)
|
2010-12-29 20:50:50 +01:00
|
|
|
{
|
2013-10-07 16:26:06 +02:00
|
|
|
#if defined(HAVE_OPENGL) && defined(HAVE_FBO)
|
|
|
|
if (g_extern.system.hw_render_callback.context_type)
|
|
|
|
{
|
|
|
|
RARCH_LOG("Using HW render, OpenGL driver forced.\n");
|
|
|
|
driver.video = &video_gl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-10-30 23:36:52 +01:00
|
|
|
int i = find_video_driver_index(g_settings.video.driver);
|
|
|
|
if (i >= 0)
|
|
|
|
driver.video = video_drivers[i];
|
|
|
|
else
|
2010-12-29 20:50:50 +01:00
|
|
|
{
|
2013-10-30 23:36:52 +01:00
|
|
|
unsigned d;
|
|
|
|
RARCH_ERR("Couldn't find any video driver named \"%s\"\n", g_settings.video.driver);
|
|
|
|
RARCH_LOG_OUTPUT("Available video drivers are:\n");
|
|
|
|
for (d = 0; video_drivers[d]; d++)
|
|
|
|
RARCH_LOG_OUTPUT("\t%s\n", video_drivers[d]->ident);
|
2010-12-29 20:56:56 +01:00
|
|
|
|
2013-10-30 23:36:52 +01:00
|
|
|
rarch_fail(1, "find_video_driver()");
|
|
|
|
}
|
2010-12-29 20:50:50 +01:00
|
|
|
}
|
2010-12-29 20:05:57 +01:00
|
|
|
|
2013-10-30 17:50:43 +01:00
|
|
|
void find_prev_video_driver(void)
|
2013-10-30 17:06:50 +01:00
|
|
|
{
|
2013-10-30 23:36:52 +01:00
|
|
|
// No need to enforce GL if HW render. This is done at driver init anyways.
|
|
|
|
int i = find_video_driver_index(g_settings.video.driver);
|
|
|
|
if (i > 0)
|
|
|
|
strlcpy(g_settings.video.driver, video_drivers[i - 1]->ident, sizeof(g_settings.video.driver));
|
|
|
|
else
|
|
|
|
RARCH_WARN("Couldn't find any previous video driver (current one: \"%s\").\n", g_settings.video.driver);
|
2013-10-30 17:06:50 +01:00
|
|
|
}
|
|
|
|
|
2013-10-30 17:50:43 +01:00
|
|
|
void find_next_video_driver(void)
|
2013-10-30 17:06:50 +01:00
|
|
|
{
|
2013-10-30 23:36:52 +01:00
|
|
|
// No need to enforce GL if HW render. This is done at driver init anyways.
|
|
|
|
int i = find_video_driver_index(g_settings.video.driver);
|
|
|
|
if (i >= 0 && video_drivers[i + 1])
|
|
|
|
strlcpy(g_settings.video.driver, video_drivers[i + 1]->ident, sizeof(g_settings.video.driver));
|
|
|
|
else
|
|
|
|
RARCH_WARN("Couldn't find any next video driver (current one: \"%s\").\n", g_settings.video.driver);
|
2013-10-30 17:06:50 +01:00
|
|
|
}
|
|
|
|
|
2011-01-06 18:34:11 +01:00
|
|
|
static void find_input_driver(void)
|
|
|
|
{
|
2013-10-30 23:36:52 +01:00
|
|
|
int i = find_input_driver_index(g_settings.input.driver);
|
|
|
|
if (i >= 0)
|
|
|
|
driver.input = input_drivers[i];
|
|
|
|
else
|
2011-01-06 18:34:11 +01:00
|
|
|
{
|
2013-10-30 23:36:52 +01:00
|
|
|
unsigned d;
|
|
|
|
RARCH_ERR("Couldn't find any input driver named \"%s\"\n", g_settings.input.driver);
|
|
|
|
RARCH_LOG_OUTPUT("Available input drivers are:\n");
|
|
|
|
for (d = 0; input_drivers[d]; d++)
|
|
|
|
RARCH_LOG_OUTPUT("\t%s\n", input_drivers[d]->ident);
|
2011-01-06 18:34:11 +01:00
|
|
|
|
2013-10-30 23:36:52 +01:00
|
|
|
rarch_fail(1, "find_input_driver()");
|
|
|
|
}
|
2011-01-06 18:34:11 +01:00
|
|
|
}
|
|
|
|
|
2013-10-30 17:50:43 +01:00
|
|
|
void find_prev_input_driver(void)
|
2013-10-30 17:06:50 +01:00
|
|
|
{
|
2013-10-30 23:36:52 +01:00
|
|
|
int i = find_input_driver_index(g_settings.input.driver);
|
|
|
|
if (i > 0)
|
|
|
|
strlcpy(g_settings.input.driver, input_drivers[i - 1]->ident, sizeof(g_settings.input.driver));
|
|
|
|
else
|
|
|
|
RARCH_ERR("Couldn't find any previous input driver (current one: \"%s\").\n", g_settings.input.driver);
|
2013-10-30 17:06:50 +01:00
|
|
|
}
|
|
|
|
|
2013-10-30 17:50:43 +01:00
|
|
|
void find_next_input_driver(void)
|
2013-10-30 17:06:50 +01:00
|
|
|
{
|
2013-10-30 23:36:52 +01:00
|
|
|
int i = find_input_driver_index(g_settings.input.driver);
|
|
|
|
if (i >= 0 && input_drivers[i + 1])
|
|
|
|
strlcpy(g_settings.input.driver, input_drivers[i + 1]->ident, sizeof(g_settings.input.driver));
|
|
|
|
else
|
|
|
|
RARCH_ERR("Couldn't find any next input driver (current one: \"%s\").\n", g_settings.input.driver);
|
2013-10-30 17:06:50 +01:00
|
|
|
}
|
|
|
|
|
2012-04-01 19:38:50 +02:00
|
|
|
void init_drivers_pre(void)
|
|
|
|
{
|
|
|
|
find_audio_driver();
|
|
|
|
find_video_driver();
|
|
|
|
find_input_driver();
|
|
|
|
}
|
|
|
|
|
2012-08-12 00:40:21 +02:00
|
|
|
static void adjust_system_rates(void)
|
|
|
|
{
|
2012-08-15 20:43:26 +02:00
|
|
|
g_extern.system.force_nonblock = false;
|
2012-08-12 00:40:21 +02:00
|
|
|
const struct retro_system_timing *info = &g_extern.system.av_info.timing;
|
|
|
|
|
2013-01-08 12:42:28 +01:00
|
|
|
if (info->fps <= 0.0 || info->sample_rate <= 0.0)
|
2013-01-07 23:48:21 -05:00
|
|
|
return;
|
|
|
|
|
2012-08-12 00:40:21 +02:00
|
|
|
float timing_skew = fabs(1.0f - info->fps / g_settings.video.refresh_rate);
|
|
|
|
if (timing_skew > 0.05f) // We don't want to adjust pitch too much. If we have extreme cases, just don't readjust at all.
|
|
|
|
{
|
|
|
|
RARCH_LOG("Timings deviate too much. Will not adjust. (Display = %.2f Hz, Game = %.2f Hz)\n",
|
|
|
|
g_settings.video.refresh_rate,
|
|
|
|
(float)info->fps);
|
|
|
|
|
|
|
|
// We won't be able to do VSync reliably as game FPS > monitor FPS.
|
|
|
|
if (info->fps > g_settings.video.refresh_rate)
|
|
|
|
{
|
2012-08-15 20:43:26 +02:00
|
|
|
g_extern.system.force_nonblock = true;
|
2012-08-12 00:40:21 +02:00
|
|
|
RARCH_LOG("Game FPS > Monitor FPS. Cannot rely on VSync.\n");
|
|
|
|
}
|
|
|
|
|
2012-08-15 20:43:26 +02:00
|
|
|
g_settings.audio.in_rate = info->sample_rate;
|
2012-08-12 00:40:21 +02:00
|
|
|
}
|
2012-08-15 20:43:26 +02:00
|
|
|
else
|
|
|
|
g_settings.audio.in_rate = info->sample_rate *
|
|
|
|
(g_settings.video.refresh_rate / info->fps);
|
2012-08-12 00:40:21 +02:00
|
|
|
|
|
|
|
RARCH_LOG("Set audio input rate to: %.2f Hz.\n", g_settings.audio.in_rate);
|
2012-08-15 20:43:26 +02:00
|
|
|
|
2012-12-23 19:01:48 +01:00
|
|
|
if (driver.video_data)
|
2013-04-14 00:53:05 +02:00
|
|
|
{
|
|
|
|
if (g_extern.system.force_nonblock)
|
|
|
|
video_set_nonblock_state_func(true);
|
|
|
|
else
|
|
|
|
driver_set_nonblock_state(driver.nonblock_state);
|
|
|
|
}
|
2012-12-23 19:01:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void driver_set_monitor_refresh_rate(float hz)
|
|
|
|
{
|
2013-06-07 14:34:09 +02:00
|
|
|
char msg[256];
|
|
|
|
snprintf(msg, sizeof(msg), "Setting refresh rate to: %.3f Hz.", hz);
|
|
|
|
msg_queue_push(g_extern.msg_queue, msg, 1, 180);
|
|
|
|
RARCH_LOG("%s\n", msg);
|
|
|
|
|
2012-12-23 19:01:48 +01:00
|
|
|
g_settings.video.refresh_rate = hz;
|
|
|
|
adjust_system_rates();
|
|
|
|
|
|
|
|
g_extern.audio_data.orig_src_ratio =
|
|
|
|
g_extern.audio_data.src_ratio =
|
|
|
|
(double)g_settings.audio.out_rate / g_settings.audio.in_rate;
|
2013-04-14 00:53:05 +02:00
|
|
|
}
|
2013-01-05 06:02:02 +01:00
|
|
|
|
2013-04-14 00:53:05 +02:00
|
|
|
void driver_set_nonblock_state(bool nonblock)
|
|
|
|
{
|
|
|
|
// Only apply non-block-state for video if we're using vsync.
|
2013-04-14 12:24:16 +02:00
|
|
|
if (g_extern.video_active && driver.video_data)
|
2013-04-14 00:53:05 +02:00
|
|
|
{
|
|
|
|
bool video_nb = nonblock;
|
2013-04-14 11:52:15 +02:00
|
|
|
if (!g_settings.video.vsync || g_extern.system.force_nonblock)
|
2013-04-14 00:53:05 +02:00
|
|
|
video_nb = true;
|
|
|
|
video_set_nonblock_state_func(video_nb);
|
|
|
|
}
|
|
|
|
|
2013-04-14 12:24:16 +02:00
|
|
|
if (g_extern.audio_active && driver.audio_data)
|
2013-04-14 00:53:05 +02:00
|
|
|
audio_set_nonblock_state_func(g_settings.audio.sync ? nonblock : true);
|
|
|
|
|
|
|
|
g_extern.audio_data.chunk_size = nonblock ?
|
|
|
|
g_extern.audio_data.nonblock_chunk_size : g_extern.audio_data.block_chunk_size;
|
2012-08-12 00:40:21 +02:00
|
|
|
}
|
|
|
|
|
2013-09-26 12:55:05 +02:00
|
|
|
bool driver_set_rumble_state(unsigned port, enum retro_rumble_effect effect, uint16_t strength)
|
2013-09-25 23:21:32 +02:00
|
|
|
{
|
2013-09-25 23:58:02 +02:00
|
|
|
if (driver.input && driver.input_data && driver.input->set_rumble)
|
2013-09-26 12:55:05 +02:00
|
|
|
return driver.input->set_rumble(driver.input_data, port, effect, strength);
|
2013-09-25 23:21:32 +02:00
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-03-27 16:15:15 +01:00
|
|
|
uintptr_t driver_get_current_framebuffer(void)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_FBO
|
|
|
|
if (driver.video_poke && driver.video_poke->get_current_framebuffer)
|
|
|
|
return driver.video_poke->get_current_framebuffer(driver.video_data);
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-03-28 01:11:32 +01:00
|
|
|
retro_proc_address_t driver_get_proc_address(const char *sym)
|
|
|
|
{
|
2013-03-30 14:48:33 +01:00
|
|
|
#ifdef HAVE_FBO
|
2013-03-28 01:11:32 +01:00
|
|
|
if (driver.video_poke && driver.video_poke->get_proc_address)
|
|
|
|
return driver.video_poke->get_proc_address(driver.video_data, sym);
|
|
|
|
else
|
2013-03-30 14:48:33 +01:00
|
|
|
#endif
|
2013-03-28 01:11:32 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-03-13 04:16:56 +01:00
|
|
|
// Only called once on init and deinit.
|
|
|
|
// Video and input drivers need to be active (owned)
|
|
|
|
// before retroarch core starts.
|
|
|
|
// Core handles audio.
|
|
|
|
|
|
|
|
void global_init_drivers(void)
|
|
|
|
{
|
2013-10-22 15:08:17 +02:00
|
|
|
unsigned i;
|
2013-11-01 21:10:42 +01:00
|
|
|
find_audio_driver();
|
|
|
|
find_input_driver();
|
|
|
|
init_video_input();
|
2013-03-24 20:42:09 -04:00
|
|
|
|
2013-10-22 15:08:17 +02:00
|
|
|
for(i = 0; i < MAX_PLAYERS; i++)
|
2013-10-06 23:14:41 +02:00
|
|
|
if (driver.input->set_keybinds)
|
|
|
|
driver.input->set_keybinds(driver.input_data, g_settings.input.device[i], i, 0,
|
|
|
|
(1ULL << KEYBINDS_ACTION_SET_DEFAULT_BINDS));
|
2013-03-13 04:16:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void global_uninit_drivers(void)
|
|
|
|
{
|
|
|
|
if (driver.video_data)
|
|
|
|
driver.video_data = NULL;
|
|
|
|
|
|
|
|
if (driver.input_data)
|
|
|
|
{
|
2013-07-14 13:09:53 +02:00
|
|
|
driver.input->free(driver.input_data);
|
2013-03-13 04:16:56 +01:00
|
|
|
driver.input_data = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-24 01:26:36 +01:00
|
|
|
void init_drivers(void)
|
|
|
|
{
|
2012-12-25 23:18:19 +01:00
|
|
|
driver.video_data_own = !driver.video_data;
|
|
|
|
driver.audio_data_own = !driver.audio_data;
|
|
|
|
driver.input_data_own = !driver.input_data;
|
|
|
|
|
2012-08-12 00:40:21 +02:00
|
|
|
adjust_system_rates();
|
|
|
|
|
2013-04-16 00:48:39 +02:00
|
|
|
g_extern.frame_count = 0;
|
2010-12-24 01:26:36 +01:00
|
|
|
init_video_input();
|
2013-03-28 01:11:32 +01:00
|
|
|
|
2013-06-23 23:01:34 +02:00
|
|
|
if (!driver.video_cache_context_ack && g_extern.system.hw_render_callback.context_reset)
|
2013-03-28 01:11:32 +01:00
|
|
|
g_extern.system.hw_render_callback.context_reset();
|
2013-07-01 00:50:53 +02:00
|
|
|
driver.video_cache_context_ack = false;
|
2013-03-28 01:11:32 +01:00
|
|
|
|
2010-12-24 01:26:36 +01:00
|
|
|
init_audio();
|
2013-04-14 00:53:05 +02:00
|
|
|
|
|
|
|
// Keep non-throttled state as good as possible.
|
|
|
|
if (driver.nonblock_state)
|
|
|
|
driver_set_nonblock_state(driver.nonblock_state);
|
2013-07-14 13:09:53 +02:00
|
|
|
|
|
|
|
g_extern.system.frame_time_last = 0;
|
2010-12-24 01:26:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void uninit_drivers(void)
|
|
|
|
{
|
|
|
|
uninit_audio();
|
2013-07-05 18:53:42 +02:00
|
|
|
|
|
|
|
if (g_extern.system.hw_render_callback.context_destroy && !driver.video_cache_context)
|
|
|
|
g_extern.system.hw_render_callback.context_destroy();
|
|
|
|
|
2011-12-25 19:31:05 +01:00
|
|
|
uninit_video_input();
|
2012-12-25 23:18:19 +01:00
|
|
|
|
|
|
|
if (driver.video_data_own)
|
|
|
|
driver.video_data = NULL;
|
|
|
|
if (driver.audio_data_own)
|
|
|
|
driver.audio_data = NULL;
|
|
|
|
if (driver.input_data_own)
|
|
|
|
driver.input_data = NULL;
|
|
|
|
|
|
|
|
driver.video_data_own = false;
|
|
|
|
driver.audio_data_own = false;
|
|
|
|
driver.input_data_own = false;
|
2010-12-24 01:26:36 +01:00
|
|
|
}
|
|
|
|
|
2011-12-01 22:36:26 +01:00
|
|
|
#ifdef HAVE_DYLIB
|
2011-05-13 21:05:28 +02:00
|
|
|
static void init_dsp_plugin(void)
|
|
|
|
{
|
|
|
|
if (!(*g_settings.audio.dsp_plugin))
|
|
|
|
return;
|
2012-07-06 17:36:37 +02:00
|
|
|
|
2012-04-21 23:25:32 +02:00
|
|
|
rarch_dsp_info_t info = {0};
|
2011-05-13 21:05:28 +02:00
|
|
|
|
|
|
|
g_extern.audio_data.dsp_lib = dylib_load(g_settings.audio.dsp_plugin);
|
|
|
|
if (!g_extern.audio_data.dsp_lib)
|
|
|
|
{
|
2012-04-21 23:25:32 +02:00
|
|
|
RARCH_ERR("Failed to open DSP plugin: \"%s\" ...\n", g_settings.audio.dsp_plugin);
|
2011-05-13 21:05:28 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-04-21 23:25:32 +02:00
|
|
|
const rarch_dsp_plugin_t* (RARCH_API_CALLTYPE *plugin_init)(void) =
|
|
|
|
(const rarch_dsp_plugin_t *(RARCH_API_CALLTYPE*)(void))dylib_proc(g_extern.audio_data.dsp_lib, "rarch_dsp_plugin_init");
|
2012-04-21 23:36:55 +02:00
|
|
|
|
2011-05-13 21:05:28 +02:00
|
|
|
if (!plugin_init)
|
|
|
|
{
|
2012-04-21 23:25:32 +02:00
|
|
|
RARCH_ERR("Failed to find symbol \"rarch_dsp_plugin_init\" in DSP plugin.\n");
|
2011-05-13 21:22:37 +02:00
|
|
|
goto error;
|
2011-05-13 21:05:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
g_extern.audio_data.dsp_plugin = plugin_init();
|
|
|
|
if (!g_extern.audio_data.dsp_plugin)
|
|
|
|
{
|
2012-04-21 23:25:32 +02:00
|
|
|
RARCH_ERR("Failed to get a valid DSP plugin.\n");
|
2011-05-13 21:22:37 +02:00
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
2012-04-21 23:25:32 +02:00
|
|
|
if (g_extern.audio_data.dsp_plugin->api_version != RARCH_DSP_API_VERSION)
|
2011-05-13 21:22:37 +02:00
|
|
|
{
|
2012-09-07 21:56:26 +02:00
|
|
|
RARCH_ERR("DSP plugin API mismatch. RetroArch: %d, Plugin: %d\n", RARCH_DSP_API_VERSION, g_extern.audio_data.dsp_plugin->api_version);
|
2011-05-13 21:22:37 +02:00
|
|
|
goto error;
|
2011-05-13 21:05:28 +02:00
|
|
|
}
|
|
|
|
|
2012-04-21 23:25:32 +02:00
|
|
|
RARCH_LOG("Loaded DSP plugin: \"%s\"\n", g_extern.audio_data.dsp_plugin->ident ? g_extern.audio_data.dsp_plugin->ident : "Unknown");
|
2011-05-17 19:20:41 +02:00
|
|
|
|
2011-12-24 13:46:12 +01:00
|
|
|
info.input_rate = g_settings.audio.in_rate;
|
2011-05-13 21:22:37 +02:00
|
|
|
|
2011-05-13 21:05:28 +02:00
|
|
|
g_extern.audio_data.dsp_handle = g_extern.audio_data.dsp_plugin->init(&info);
|
|
|
|
if (!g_extern.audio_data.dsp_handle)
|
|
|
|
{
|
2012-04-21 23:25:32 +02:00
|
|
|
RARCH_ERR("Failed to init DSP plugin.\n");
|
2011-05-13 21:22:37 +02:00
|
|
|
goto error;
|
2011-05-13 21:05:28 +02:00
|
|
|
}
|
2011-05-13 21:22:37 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
error:
|
|
|
|
if (g_extern.audio_data.dsp_lib)
|
|
|
|
dylib_close(g_extern.audio_data.dsp_lib);
|
|
|
|
g_extern.audio_data.dsp_plugin = NULL;
|
|
|
|
g_extern.audio_data.dsp_lib = NULL;
|
2011-05-13 21:05:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void deinit_dsp_plugin(void)
|
|
|
|
{
|
|
|
|
if (g_extern.audio_data.dsp_lib && g_extern.audio_data.dsp_plugin)
|
|
|
|
{
|
|
|
|
g_extern.audio_data.dsp_plugin->free(g_extern.audio_data.dsp_handle);
|
|
|
|
dylib_close(g_extern.audio_data.dsp_lib);
|
|
|
|
}
|
|
|
|
}
|
2011-12-01 22:36:26 +01:00
|
|
|
#endif
|
2011-05-13 21:05:28 +02:00
|
|
|
|
2010-12-24 01:26:36 +01:00
|
|
|
void init_audio(void)
|
|
|
|
{
|
2013-01-24 18:37:42 +01:00
|
|
|
audio_convert_init_simd();
|
|
|
|
|
2013-01-08 13:23:15 +01:00
|
|
|
// Resource leaks will follow if audio is initialized twice.
|
|
|
|
if (driver.audio_data)
|
|
|
|
return;
|
|
|
|
|
2011-11-20 02:06:25 +01:00
|
|
|
// Accomodate rewind since at some point we might have two full buffers.
|
|
|
|
size_t max_bufsamples = AUDIO_CHUNK_SIZE_NONBLOCKING * 2;
|
2012-03-04 13:19:51 +01:00
|
|
|
size_t outsamples_max = max_bufsamples * AUDIO_MAX_RATIO * g_settings.slowmotion_ratio;
|
2011-11-20 02:06:25 +01:00
|
|
|
|
|
|
|
// Used for recording even if audio isn't enabled.
|
2012-04-21 23:25:32 +02:00
|
|
|
rarch_assert(g_extern.audio_data.conv_outsamples = (int16_t*)malloc(outsamples_max * sizeof(int16_t)));
|
2012-01-14 23:15:25 +01:00
|
|
|
|
2012-07-06 17:36:37 +02:00
|
|
|
g_extern.audio_data.block_chunk_size = AUDIO_CHUNK_SIZE_BLOCKING;
|
2012-01-14 23:15:25 +01:00
|
|
|
g_extern.audio_data.nonblock_chunk_size = AUDIO_CHUNK_SIZE_NONBLOCKING;
|
2012-07-06 17:36:37 +02:00
|
|
|
g_extern.audio_data.chunk_size = g_extern.audio_data.block_chunk_size;
|
2011-11-20 02:06:25 +01:00
|
|
|
|
|
|
|
// Needs to be able to hold full content of a full max_bufsamples in addition to its own.
|
2012-04-21 23:25:32 +02:00
|
|
|
rarch_assert(g_extern.audio_data.rewind_buf = (int16_t*)malloc(max_bufsamples * sizeof(int16_t)));
|
2012-07-06 17:36:37 +02:00
|
|
|
g_extern.audio_data.rewind_size = max_bufsamples;
|
2011-11-20 02:06:25 +01:00
|
|
|
|
2010-12-29 19:43:17 +01:00
|
|
|
if (!g_settings.audio.enable)
|
2010-12-24 01:26:36 +01:00
|
|
|
{
|
2010-12-29 19:18:37 +01:00
|
|
|
g_extern.audio_active = false;
|
2010-12-24 01:26:36 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-07-14 13:09:53 +02:00
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
find_audio_driver();
|
2013-09-14 17:26:10 +02:00
|
|
|
if (g_extern.system.audio_callback.callback)
|
2013-07-14 13:09:53 +02:00
|
|
|
{
|
|
|
|
RARCH_LOG("Starting threaded audio driver ...\n");
|
|
|
|
if (!rarch_threaded_audio_init(&driver.audio, &driver.audio_data,
|
|
|
|
*g_settings.audio.device ? g_settings.audio.device : NULL,
|
|
|
|
g_settings.audio.out_rate, g_settings.audio.latency,
|
|
|
|
driver.audio))
|
|
|
|
{
|
|
|
|
RARCH_ERR("Cannot open threaded audio driver ... Exiting ...\n");
|
|
|
|
rarch_fail(1, "init_audio()");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
driver.audio_data = audio_init_func(*g_settings.audio.device ? g_settings.audio.device : NULL,
|
|
|
|
g_settings.audio.out_rate, g_settings.audio.latency);
|
|
|
|
}
|
2011-11-20 02:06:25 +01:00
|
|
|
|
2011-10-15 12:48:15 +02:00
|
|
|
if (!driver.audio_data)
|
2012-04-19 21:09:27 +02:00
|
|
|
{
|
2012-04-21 23:25:32 +02:00
|
|
|
RARCH_ERR("Failed to initialize audio driver. Will continue without audio.\n");
|
2010-12-29 19:18:37 +01:00
|
|
|
g_extern.audio_active = false;
|
2012-04-19 21:09:27 +02:00
|
|
|
}
|
2010-12-24 01:26:36 +01:00
|
|
|
|
2013-09-22 14:30:33 +02:00
|
|
|
g_extern.audio_data.use_float = false;
|
2012-03-29 00:30:50 +02:00
|
|
|
if (g_extern.audio_active && driver.audio->use_float && audio_use_float_func())
|
2011-01-15 20:37:42 +01:00
|
|
|
g_extern.audio_data.use_float = true;
|
2011-01-14 15:34:38 +01:00
|
|
|
|
2010-12-29 19:43:17 +01:00
|
|
|
if (!g_settings.audio.sync && g_extern.audio_active)
|
2011-01-14 15:34:38 +01:00
|
|
|
{
|
2012-03-29 00:30:50 +02:00
|
|
|
audio_set_nonblock_state_func(true);
|
2011-01-14 15:34:38 +01:00
|
|
|
g_extern.audio_data.chunk_size = g_extern.audio_data.nonblock_chunk_size;
|
|
|
|
}
|
2010-12-24 01:26:36 +01:00
|
|
|
|
2013-02-13 12:15:09 +01:00
|
|
|
g_extern.audio_data.orig_src_ratio =
|
|
|
|
g_extern.audio_data.src_ratio =
|
|
|
|
(double)g_settings.audio.out_rate / g_settings.audio.in_rate;
|
|
|
|
|
2013-02-08 11:49:51 +01:00
|
|
|
const char *resampler = *g_settings.audio.resampler ? g_settings.audio.resampler : NULL;
|
|
|
|
if (!rarch_resampler_realloc(&g_extern.audio_data.resampler_data, &g_extern.audio_data.resampler,
|
2013-02-13 12:15:09 +01:00
|
|
|
resampler, g_extern.audio_data.orig_src_ratio))
|
2013-02-08 11:49:51 +01:00
|
|
|
{
|
|
|
|
RARCH_ERR("Failed to initialize resampler \"%s\".\n", resampler ? resampler : "(default)");
|
2011-02-06 13:29:48 +01:00
|
|
|
g_extern.audio_active = false;
|
2013-02-08 11:49:51 +01:00
|
|
|
}
|
2011-01-14 15:34:38 +01:00
|
|
|
|
2012-04-21 23:25:32 +02:00
|
|
|
rarch_assert(g_extern.audio_data.data = (float*)malloc(max_bufsamples * sizeof(float)));
|
2012-07-06 17:36:37 +02:00
|
|
|
|
2011-01-14 15:34:38 +01:00
|
|
|
g_extern.audio_data.data_ptr = 0;
|
2011-12-25 11:45:27 +01:00
|
|
|
|
2012-04-21 23:25:32 +02:00
|
|
|
rarch_assert(g_settings.audio.out_rate < g_settings.audio.in_rate * AUDIO_MAX_RATIO);
|
2013-02-16 12:30:26 +01:00
|
|
|
rarch_assert(g_extern.audio_data.outsamples = (float*)malloc(outsamples_max * sizeof(float)));
|
2011-10-15 14:33:41 +02:00
|
|
|
|
2013-07-14 13:09:53 +02:00
|
|
|
g_extern.audio_data.rate_control = false;
|
2013-09-14 17:26:10 +02:00
|
|
|
if (!g_extern.system.audio_callback.callback && g_extern.audio_active && g_settings.audio.rate_control)
|
2012-02-14 01:16:37 +01:00
|
|
|
{
|
|
|
|
if (driver.audio->buffer_size && driver.audio->write_avail)
|
|
|
|
{
|
2012-03-29 00:30:50 +02:00
|
|
|
g_extern.audio_data.driver_buffer_size = audio_buffer_size_func();
|
2012-02-14 01:16:37 +01:00
|
|
|
g_extern.audio_data.rate_control = true;
|
|
|
|
}
|
|
|
|
else
|
2012-04-21 23:25:32 +02:00
|
|
|
RARCH_WARN("Audio rate control was desired, but driver does not support needed features.\n");
|
2012-02-14 01:16:37 +01:00
|
|
|
}
|
|
|
|
|
2012-11-03 14:15:03 +01:00
|
|
|
g_extern.audio_data.volume_db = g_settings.audio.volume;
|
|
|
|
g_extern.audio_data.volume_gain = db_to_gain(g_settings.audio.volume);
|
|
|
|
|
2011-12-01 22:36:26 +01:00
|
|
|
#ifdef HAVE_DYLIB
|
2011-05-13 21:05:28 +02:00
|
|
|
init_dsp_plugin();
|
2011-12-01 22:36:26 +01:00
|
|
|
#endif
|
2013-01-18 10:38:43 +01:00
|
|
|
|
2013-02-04 21:46:56 +01:00
|
|
|
g_extern.measure_data.buffer_free_samples_count = 0;
|
2013-07-14 13:09:53 +02:00
|
|
|
|
2013-09-14 17:26:10 +02:00
|
|
|
if (g_extern.audio_active && !g_extern.audio_data.mute && g_extern.system.audio_callback.callback) // Threaded driver is initially stopped.
|
2013-07-14 13:09:53 +02:00
|
|
|
audio_start_func();
|
2013-01-18 10:38:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void compute_audio_buffer_statistics(void)
|
|
|
|
{
|
2013-10-22 15:08:17 +02:00
|
|
|
unsigned i, samples;
|
|
|
|
samples = min(g_extern.measure_data.buffer_free_samples_count, AUDIO_BUFFER_FREE_SAMPLES_COUNT);
|
2013-02-09 23:26:24 +01:00
|
|
|
if (samples < 3)
|
2013-01-18 10:38:43 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
uint64_t accum = 0;
|
2013-10-22 15:08:17 +02:00
|
|
|
for (i = 1; i < samples; i++)
|
2013-02-04 21:46:56 +01:00
|
|
|
accum += g_extern.measure_data.buffer_free_samples[i];
|
2013-01-18 10:38:43 +01:00
|
|
|
|
2013-02-09 23:26:24 +01:00
|
|
|
int avg = accum / (samples - 1);
|
2013-01-18 10:38:43 +01:00
|
|
|
|
|
|
|
uint64_t accum_var = 0;
|
2013-10-22 15:08:17 +02:00
|
|
|
for (i = 1; i < samples; i++)
|
2013-01-18 10:38:43 +01:00
|
|
|
{
|
2013-02-04 21:46:56 +01:00
|
|
|
int diff = avg - g_extern.measure_data.buffer_free_samples[i];
|
2013-01-18 10:38:43 +01:00
|
|
|
accum_var += diff * diff;
|
|
|
|
}
|
|
|
|
|
2013-02-09 23:26:24 +01:00
|
|
|
unsigned stddev = (unsigned)sqrt((double)accum_var / (samples - 2));
|
2013-01-18 10:38:43 +01:00
|
|
|
|
|
|
|
float avg_filled = 1.0f - (float)avg / g_extern.audio_data.driver_buffer_size;
|
|
|
|
float deviation = (float)stddev / g_extern.audio_data.driver_buffer_size;
|
|
|
|
|
|
|
|
unsigned low_water_size = g_extern.audio_data.driver_buffer_size * 3 / 4;
|
|
|
|
unsigned high_water_size = g_extern.audio_data.driver_buffer_size / 4;
|
|
|
|
|
|
|
|
unsigned low_water_count = 0;
|
|
|
|
unsigned high_water_count = 0;
|
2013-10-22 15:08:17 +02:00
|
|
|
for (i = 1; i < samples; i++)
|
2013-01-18 10:38:43 +01:00
|
|
|
{
|
2013-02-04 21:46:56 +01:00
|
|
|
if (g_extern.measure_data.buffer_free_samples[i] >= low_water_size)
|
2013-01-18 10:38:43 +01:00
|
|
|
low_water_count++;
|
2013-02-04 21:46:56 +01:00
|
|
|
else if (g_extern.measure_data.buffer_free_samples[i] <= high_water_size)
|
2013-01-18 10:38:43 +01:00
|
|
|
high_water_count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
RARCH_LOG("Average audio buffer saturation: %.2f %%, standard deviation (percentage points): %.2f %%.\n",
|
|
|
|
avg_filled * 100.0, deviation * 100.0);
|
|
|
|
RARCH_LOG("Amount of time spent close to underrun: %.2f %%. Close to blocking: %.2f %%.\n",
|
2013-02-09 23:26:24 +01:00
|
|
|
(100.0 * low_water_count) / (samples - 1),
|
|
|
|
(100.0 * high_water_count) / (samples - 1));
|
2010-12-24 01:26:36 +01:00
|
|
|
}
|
|
|
|
|
2013-06-07 14:10:42 +02:00
|
|
|
bool driver_monitor_fps_statistics(double *refresh_rate, double *deviation, unsigned *sample_points)
|
2013-02-04 21:46:56 +01:00
|
|
|
{
|
2013-10-22 15:08:17 +02:00
|
|
|
unsigned i;
|
2013-02-16 02:21:43 +01:00
|
|
|
if (g_settings.video.threaded)
|
2013-06-07 14:10:42 +02:00
|
|
|
return false;
|
2013-02-16 02:21:43 +01:00
|
|
|
|
2013-06-07 14:10:42 +02:00
|
|
|
unsigned samples = min(MEASURE_FRAME_TIME_SAMPLES_COUNT, g_extern.measure_data.frame_time_samples_count);
|
|
|
|
if (samples < 2)
|
|
|
|
return false;
|
2013-02-04 21:46:56 +01:00
|
|
|
|
2013-02-05 09:41:10 +01:00
|
|
|
// Measure statistics on frame time (microsecs), *not* FPS.
|
|
|
|
rarch_time_t accum = 0;
|
2013-10-22 15:08:17 +02:00
|
|
|
for (i = 0; i < samples; i++)
|
2013-02-05 09:41:10 +01:00
|
|
|
accum += g_extern.measure_data.frame_time_samples[i];
|
2013-02-04 21:46:56 +01:00
|
|
|
|
2013-02-10 00:02:18 +01:00
|
|
|
#if 0
|
2013-10-22 15:08:17 +02:00
|
|
|
for (i = 0; i < samples; i++)
|
2013-02-10 00:02:18 +01:00
|
|
|
RARCH_LOG("Interval #%u: %d usec / frame.\n",
|
|
|
|
i, (int)g_extern.measure_data.frame_time_samples[i]);
|
|
|
|
#endif
|
|
|
|
|
2013-02-10 14:34:03 +01:00
|
|
|
rarch_time_t avg = accum / samples;
|
2013-02-05 09:41:10 +01:00
|
|
|
rarch_time_t accum_var = 0;
|
2013-02-09 23:26:24 +01:00
|
|
|
|
|
|
|
// Drop first measurement. It is likely to be bad.
|
2013-10-22 15:08:17 +02:00
|
|
|
for (i = 0; i < samples; i++)
|
2013-02-04 21:46:56 +01:00
|
|
|
{
|
2013-02-10 01:42:56 +01:00
|
|
|
rarch_time_t diff = g_extern.measure_data.frame_time_samples[i] - avg;
|
2013-02-04 21:46:56 +01:00
|
|
|
accum_var += diff * diff;
|
|
|
|
}
|
|
|
|
|
2013-06-07 14:10:42 +02:00
|
|
|
*deviation = sqrt((double)accum_var / (samples - 1)) / avg;
|
|
|
|
*refresh_rate = 1000000.0 / avg;
|
|
|
|
*sample_points = samples;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void compute_monitor_fps_statistics(void)
|
|
|
|
{
|
2013-08-03 12:18:40 +02:00
|
|
|
if (g_settings.video.threaded)
|
|
|
|
{
|
|
|
|
RARCH_LOG("Monitor FPS estimation is disabled for threaded video.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-06-07 14:10:42 +02:00
|
|
|
if (g_extern.measure_data.frame_time_samples_count < 2 * MEASURE_FRAME_TIME_SAMPLES_COUNT)
|
|
|
|
{
|
|
|
|
RARCH_LOG("Does not have enough samples for monitor refresh rate estimation. Requires to run for at least %u frames.\n",
|
|
|
|
2 * MEASURE_FRAME_TIME_SAMPLES_COUNT);
|
|
|
|
return;
|
|
|
|
}
|
2013-02-10 01:42:56 +01:00
|
|
|
|
2013-06-07 14:10:42 +02:00
|
|
|
double avg_fps = 0.0;
|
|
|
|
double stddev = 0.0;
|
|
|
|
unsigned samples = 0;
|
|
|
|
if (driver_monitor_fps_statistics(&avg_fps, &stddev, &samples))
|
|
|
|
{
|
|
|
|
RARCH_LOG("Average monitor Hz: %.6f Hz. (%.3f %% frame time deviation, based on %u last samples).\n",
|
|
|
|
avg_fps, 100.0 * stddev, samples);
|
|
|
|
}
|
2013-02-04 21:46:56 +01:00
|
|
|
}
|
|
|
|
|
2010-12-24 01:26:36 +01:00
|
|
|
void uninit_audio(void)
|
|
|
|
{
|
2013-07-15 21:35:47 +02:00
|
|
|
if (driver.audio_data && driver.audio)
|
|
|
|
driver.audio->free(driver.audio_data);
|
|
|
|
|
2011-12-25 19:31:05 +01:00
|
|
|
free(g_extern.audio_data.conv_outsamples);
|
|
|
|
g_extern.audio_data.conv_outsamples = NULL;
|
2012-07-06 17:36:37 +02:00
|
|
|
g_extern.audio_data.data_ptr = 0;
|
2011-12-25 19:31:05 +01:00
|
|
|
|
2011-11-20 02:06:25 +01:00
|
|
|
free(g_extern.audio_data.rewind_buf);
|
|
|
|
g_extern.audio_data.rewind_buf = NULL;
|
|
|
|
|
2010-12-29 19:43:17 +01:00
|
|
|
if (!g_settings.audio.enable)
|
2010-12-24 01:26:36 +01:00
|
|
|
{
|
2010-12-29 19:18:37 +01:00
|
|
|
g_extern.audio_active = false;
|
2010-12-24 01:26:36 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-02-08 11:49:51 +01:00
|
|
|
rarch_resampler_freep(&g_extern.audio_data.resampler, &g_extern.audio_data.resampler_data);
|
2011-01-14 15:34:38 +01:00
|
|
|
|
2011-11-20 02:06:25 +01:00
|
|
|
free(g_extern.audio_data.data);
|
|
|
|
g_extern.audio_data.data = NULL;
|
2011-12-25 19:31:05 +01:00
|
|
|
|
2011-11-20 02:06:25 +01:00
|
|
|
free(g_extern.audio_data.outsamples);
|
|
|
|
g_extern.audio_data.outsamples = NULL;
|
2011-05-13 21:05:28 +02:00
|
|
|
|
2011-12-01 22:36:26 +01:00
|
|
|
#ifdef HAVE_DYLIB
|
2011-05-13 21:05:28 +02:00
|
|
|
deinit_dsp_plugin();
|
2011-12-01 22:36:26 +01:00
|
|
|
#endif
|
2013-01-18 10:38:43 +01:00
|
|
|
|
|
|
|
compute_audio_buffer_statistics();
|
2010-12-24 01:26:36 +01:00
|
|
|
}
|
|
|
|
|
2011-05-11 17:52:16 +02:00
|
|
|
#ifdef HAVE_DYLIB
|
2012-10-21 22:58:33 +02:00
|
|
|
static void deinit_filter(void)
|
|
|
|
{
|
|
|
|
g_extern.filter.active = false;
|
|
|
|
|
|
|
|
if (g_extern.filter.lib)
|
|
|
|
dylib_close(g_extern.filter.lib);
|
|
|
|
g_extern.filter.lib = NULL;
|
|
|
|
|
|
|
|
free(g_extern.filter.buffer);
|
|
|
|
free(g_extern.filter.colormap);
|
|
|
|
free(g_extern.filter.scaler_out);
|
|
|
|
g_extern.filter.buffer = NULL;
|
|
|
|
g_extern.filter.colormap = NULL;
|
|
|
|
g_extern.filter.scaler_out = NULL;
|
|
|
|
|
|
|
|
scaler_ctx_gen_reset(&g_extern.filter.scaler);
|
|
|
|
memset(&g_extern.filter.scaler, 0, sizeof(g_extern.filter.scaler));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void init_filter(bool rgb32)
|
2010-12-24 01:26:36 +01:00
|
|
|
{
|
2013-10-22 15:08:17 +02:00
|
|
|
unsigned i;
|
2011-03-07 19:12:14 +01:00
|
|
|
if (g_extern.filter.active)
|
|
|
|
return;
|
2012-10-21 22:58:33 +02:00
|
|
|
if (!*g_settings.video.filter_path)
|
2011-03-07 19:12:14 +01:00
|
|
|
return;
|
2010-12-24 01:26:36 +01:00
|
|
|
|
2013-03-28 12:27:40 +01:00
|
|
|
if (g_extern.system.hw_render_callback.context_type)
|
|
|
|
{
|
|
|
|
RARCH_WARN("Cannot use CPU filters when hardware rendering is used.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-04-21 23:25:32 +02:00
|
|
|
RARCH_LOG("Loading bSNES filter from \"%s\"\n", g_settings.video.filter_path);
|
2011-03-07 19:12:14 +01:00
|
|
|
g_extern.filter.lib = dylib_load(g_settings.video.filter_path);
|
|
|
|
if (!g_extern.filter.lib)
|
|
|
|
{
|
2012-04-21 23:25:32 +02:00
|
|
|
RARCH_ERR("Failed to load filter \"%s\"\n", g_settings.video.filter_path);
|
2011-03-07 19:12:14 +01:00
|
|
|
return;
|
|
|
|
}
|
2010-12-29 20:50:50 +01:00
|
|
|
|
2012-10-21 23:24:25 +02:00
|
|
|
struct retro_game_geometry *geom = &g_extern.system.av_info.geometry;
|
|
|
|
unsigned width = geom->max_width;
|
|
|
|
unsigned height = geom->max_height;
|
|
|
|
unsigned pow2_x = 0;
|
|
|
|
unsigned pow2_y = 0;
|
|
|
|
unsigned maxsize = 0;
|
|
|
|
|
2011-05-31 15:03:59 +02:00
|
|
|
g_extern.filter.psize =
|
|
|
|
(void (*)(unsigned*, unsigned*))dylib_proc(g_extern.filter.lib, "filter_size");
|
|
|
|
g_extern.filter.prender =
|
|
|
|
(void (*)(uint32_t*, uint32_t*,
|
|
|
|
unsigned, const uint16_t*,
|
|
|
|
unsigned, unsigned, unsigned))dylib_proc(g_extern.filter.lib, "filter_render");
|
2012-06-18 00:34:47 +02:00
|
|
|
|
2011-03-07 19:12:14 +01:00
|
|
|
if (!g_extern.filter.psize || !g_extern.filter.prender)
|
2010-12-30 01:33:40 +01:00
|
|
|
{
|
2012-04-21 23:25:32 +02:00
|
|
|
RARCH_ERR("Failed to find functions in filter...\n");
|
2012-10-21 22:58:33 +02:00
|
|
|
goto error;
|
2010-12-30 01:33:40 +01:00
|
|
|
}
|
2011-03-07 19:12:14 +01:00
|
|
|
|
|
|
|
g_extern.filter.active = true;
|
|
|
|
g_extern.filter.psize(&width, &height);
|
|
|
|
|
2012-10-21 23:24:25 +02:00
|
|
|
pow2_x = next_pow2(width);
|
|
|
|
pow2_y = next_pow2(height);
|
|
|
|
maxsize = pow2_x > pow2_y ? pow2_x : pow2_y;
|
2012-04-21 23:25:32 +02:00
|
|
|
g_extern.filter.scale = maxsize / RARCH_SCALE_BASE;
|
2011-03-07 19:12:14 +01:00
|
|
|
|
2012-06-18 00:34:47 +02:00
|
|
|
g_extern.filter.buffer = (uint32_t*)malloc(RARCH_SCALE_BASE * RARCH_SCALE_BASE *
|
|
|
|
g_extern.filter.scale * g_extern.filter.scale * sizeof(uint32_t));
|
2012-10-21 22:58:33 +02:00
|
|
|
if (!g_extern.filter.buffer)
|
|
|
|
goto error;
|
2011-03-07 19:12:14 +01:00
|
|
|
|
2012-06-18 00:34:47 +02:00
|
|
|
g_extern.filter.pitch = RARCH_SCALE_BASE * g_extern.filter.scale * sizeof(uint32_t);
|
|
|
|
|
|
|
|
g_extern.filter.colormap = (uint32_t*)malloc(0x10000 * sizeof(uint32_t));
|
2012-10-21 22:58:33 +02:00
|
|
|
if (!g_extern.filter.colormap)
|
|
|
|
goto error;
|
2011-03-07 19:12:14 +01:00
|
|
|
|
2011-05-28 14:11:37 +02:00
|
|
|
// Set up conversion map from 16-bit XRGB1555 to 32-bit ARGB.
|
2013-10-22 15:08:17 +02:00
|
|
|
for (i = 0; i < 0x10000; i++)
|
2011-03-07 19:12:14 +01:00
|
|
|
{
|
2012-06-18 00:34:47 +02:00
|
|
|
unsigned r = (i >> 10) & 0x1f;
|
|
|
|
unsigned g = (i >> 5) & 0x1f;
|
|
|
|
unsigned b = (i >> 0) & 0x1f;
|
2011-03-07 19:12:14 +01:00
|
|
|
|
|
|
|
r = (r << 3) | (r >> 2);
|
|
|
|
g = (g << 3) | (g >> 2);
|
|
|
|
b = (b << 3) | (b >> 2);
|
2011-05-28 14:11:37 +02:00
|
|
|
g_extern.filter.colormap[i] = (r << 16) | (g << 8) | (b << 0);
|
2011-03-07 19:12:14 +01:00
|
|
|
}
|
|
|
|
|
2012-10-21 22:58:33 +02:00
|
|
|
g_extern.filter.scaler_out = (uint16_t*)malloc(sizeof(uint16_t) * geom->max_width * geom->max_height);
|
|
|
|
if (!g_extern.filter.scaler_out)
|
|
|
|
goto error;
|
2012-03-12 21:45:43 +01:00
|
|
|
|
2012-10-21 22:58:33 +02:00
|
|
|
g_extern.filter.scaler.scaler_type = SCALER_TYPE_POINT;
|
|
|
|
g_extern.filter.scaler.in_fmt = rgb32 ? SCALER_FMT_ARGB8888 : SCALER_FMT_RGB565;
|
|
|
|
g_extern.filter.scaler.out_fmt = SCALER_FMT_0RGB1555;
|
|
|
|
|
|
|
|
if (!scaler_ctx_gen_filter(&g_extern.filter.scaler))
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
error:
|
|
|
|
RARCH_ERR("CPU filter init failed.\n");
|
|
|
|
deinit_filter();
|
2011-03-07 19:12:14 +01:00
|
|
|
}
|
2011-12-01 21:54:42 +01:00
|
|
|
#endif
|
2011-03-07 19:12:14 +01:00
|
|
|
|
2012-06-23 15:31:22 +02:00
|
|
|
static void deinit_shader_dir(void)
|
|
|
|
{
|
|
|
|
// It handles NULL, no worries :D
|
|
|
|
dir_list_free(g_extern.shader_dir.list);
|
|
|
|
g_extern.shader_dir.list = NULL;
|
|
|
|
g_extern.shader_dir.ptr = 0;
|
|
|
|
}
|
|
|
|
|
2011-03-29 18:04:41 +02:00
|
|
|
static void init_shader_dir(void)
|
|
|
|
{
|
2013-10-22 15:08:17 +02:00
|
|
|
unsigned i;
|
2011-03-29 18:04:41 +02:00
|
|
|
if (!*g_settings.video.shader_dir)
|
|
|
|
return;
|
|
|
|
|
2013-04-16 12:01:50 +02:00
|
|
|
g_extern.shader_dir.list = dir_list_new(g_settings.video.shader_dir, "shader|cg|cgp|glsl|glslp", false);
|
|
|
|
if (!g_extern.shader_dir.list || g_extern.shader_dir.list->size == 0)
|
2012-06-23 15:31:22 +02:00
|
|
|
{
|
|
|
|
deinit_shader_dir();
|
|
|
|
return;
|
|
|
|
}
|
2012-06-18 01:11:03 +02:00
|
|
|
|
2012-06-23 15:31:22 +02:00
|
|
|
g_extern.shader_dir.ptr = 0;
|
|
|
|
dir_list_sort(g_extern.shader_dir.list, false);
|
2011-03-29 18:04:41 +02:00
|
|
|
|
2013-10-22 15:08:17 +02:00
|
|
|
for (i = 0; i < g_extern.shader_dir.list->size; i++)
|
2012-06-23 15:31:22 +02:00
|
|
|
RARCH_LOG("Found shader \"%s\"\n", g_extern.shader_dir.list->elems[i].data);
|
2011-03-29 18:04:41 +02:00
|
|
|
}
|
|
|
|
|
2012-11-23 22:45:36 +01:00
|
|
|
static void deinit_pixel_converter(void)
|
|
|
|
{
|
|
|
|
scaler_ctx_gen_reset(&driver.scaler);
|
|
|
|
memset(&driver.scaler, 0, sizeof(driver.scaler));
|
|
|
|
free(driver.scaler_out);
|
|
|
|
driver.scaler_out = NULL;
|
|
|
|
}
|
|
|
|
|
2012-10-20 01:12:02 +02:00
|
|
|
static bool init_video_pixel_converter(unsigned size)
|
|
|
|
{
|
2012-11-23 22:45:36 +01:00
|
|
|
// This function can be called multiple times without deiniting first on consoles.
|
|
|
|
deinit_pixel_converter();
|
|
|
|
|
2012-10-20 01:12:02 +02:00
|
|
|
if (g_extern.system.pix_fmt == RETRO_PIXEL_FORMAT_0RGB1555)
|
|
|
|
{
|
|
|
|
RARCH_WARN("0RGB1555 pixel format is deprecated, and will be slower. For 15/16-bit, RGB565 format is preferred.\n");
|
|
|
|
|
|
|
|
driver.scaler.scaler_type = SCALER_TYPE_POINT;
|
|
|
|
driver.scaler.in_fmt = SCALER_FMT_0RGB1555;
|
|
|
|
|
|
|
|
// TODO: Pick either ARGB8888 or RGB565 depending on driver ...
|
|
|
|
driver.scaler.out_fmt = SCALER_FMT_RGB565;
|
|
|
|
|
|
|
|
if (!scaler_ctx_gen_filter(&driver.scaler))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
driver.scaler_out = calloc(sizeof(uint16_t), size * size);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-03-07 19:12:14 +01:00
|
|
|
void init_video_input(void)
|
|
|
|
{
|
2011-05-11 17:52:16 +02:00
|
|
|
#ifdef HAVE_DYLIB
|
2012-10-21 22:58:33 +02:00
|
|
|
init_filter(g_extern.system.pix_fmt == RETRO_PIXEL_FORMAT_XRGB8888);
|
2010-12-29 19:43:17 +01:00
|
|
|
#endif
|
2010-12-24 01:26:36 +01:00
|
|
|
|
2011-03-29 18:04:41 +02:00
|
|
|
init_shader_dir();
|
|
|
|
|
2012-04-09 22:19:51 +02:00
|
|
|
const struct retro_game_geometry *geom = &g_extern.system.av_info.geometry;
|
2012-04-07 11:55:37 +02:00
|
|
|
unsigned max_dim = max(geom->max_width, geom->max_height);
|
2012-04-21 23:25:32 +02:00
|
|
|
unsigned scale = next_pow2(max_dim) / RARCH_SCALE_BASE;
|
2011-10-27 23:40:34 +02:00
|
|
|
scale = max(scale, 1);
|
2011-03-07 19:12:14 +01:00
|
|
|
|
|
|
|
if (g_extern.filter.active)
|
|
|
|
scale = g_extern.filter.scale;
|
|
|
|
|
2013-10-26 18:29:47 +02:00
|
|
|
// Update core-dependent aspect ratio values.
|
|
|
|
gfx_set_square_pixel_viewport(geom->base_width, geom->base_height);
|
|
|
|
gfx_set_core_viewport();
|
|
|
|
gfx_set_config_viewport();
|
|
|
|
|
|
|
|
// Update CUSTOM viewport.
|
|
|
|
rarch_viewport_t *custom_vp = &g_extern.console.screen.viewports.custom_vp;
|
|
|
|
if (g_settings.video.aspect_ratio_idx == ASPECT_RATIO_CUSTOM)
|
2012-04-15 21:48:01 +02:00
|
|
|
{
|
2013-10-26 18:29:47 +02:00
|
|
|
float default_aspect = aspectratio_lut[ASPECT_RATIO_CORE].value;
|
|
|
|
aspectratio_lut[ASPECT_RATIO_CUSTOM].value = (custom_vp->width && custom_vp->height) ?
|
|
|
|
(float)custom_vp->width / custom_vp->height : default_aspect;
|
2012-04-15 21:48:01 +02:00
|
|
|
}
|
|
|
|
|
2013-10-26 18:29:47 +02:00
|
|
|
g_extern.system.aspect_ratio = aspectratio_lut[g_settings.video.aspect_ratio_idx].value;
|
|
|
|
|
2011-05-05 11:38:57 +02:00
|
|
|
unsigned width;
|
|
|
|
unsigned height;
|
|
|
|
if (g_settings.video.fullscreen)
|
|
|
|
{
|
|
|
|
width = g_settings.video.fullscreen_x;
|
|
|
|
height = g_settings.video.fullscreen_y;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-04-15 21:48:01 +02:00
|
|
|
if (g_settings.video.force_aspect)
|
2011-05-05 11:38:57 +02:00
|
|
|
{
|
2013-10-26 18:29:47 +02:00
|
|
|
// Do rounding here to simplify integer scale correctness.
|
|
|
|
unsigned base_width = roundf(geom->base_height * g_extern.system.aspect_ratio);
|
2013-06-05 21:48:52 +02:00
|
|
|
width = roundf(base_width * g_settings.video.xscale);
|
2012-04-07 11:55:37 +02:00
|
|
|
height = roundf(geom->base_height * g_settings.video.yscale);
|
2011-05-05 11:38:57 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-04-07 11:55:37 +02:00
|
|
|
width = roundf(geom->base_width * g_settings.video.xscale);
|
|
|
|
height = roundf(geom->base_height * g_settings.video.yscale);
|
2011-05-05 11:38:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-20 01:12:02 +02:00
|
|
|
if (width && height)
|
|
|
|
RARCH_LOG("Video @ %ux%u\n", width, height);
|
|
|
|
else
|
|
|
|
RARCH_LOG("Video @ fullscreen\n");
|
2011-10-27 23:40:34 +02:00
|
|
|
|
2012-09-28 22:38:42 +02:00
|
|
|
driver.display_type = RARCH_DISPLAY_NONE;
|
|
|
|
driver.video_display = 0;
|
|
|
|
driver.video_window = 0;
|
|
|
|
|
2012-10-20 01:12:02 +02:00
|
|
|
if (!init_video_pixel_converter(RARCH_SCALE_BASE * scale))
|
|
|
|
{
|
|
|
|
RARCH_ERR("Failed to init pixel converter.\n");
|
|
|
|
rarch_fail(1, "init_video_input()");
|
|
|
|
}
|
|
|
|
|
2011-12-24 13:46:12 +01:00
|
|
|
video_info_t video = {0};
|
|
|
|
video.width = width;
|
|
|
|
video.height = height;
|
|
|
|
video.fullscreen = g_settings.video.fullscreen;
|
2012-08-15 20:43:26 +02:00
|
|
|
video.vsync = g_settings.video.vsync && !g_extern.system.force_nonblock;
|
2011-12-24 13:46:12 +01:00
|
|
|
video.force_aspect = g_settings.video.force_aspect;
|
|
|
|
video.smooth = g_settings.video.smooth;
|
|
|
|
video.input_scale = scale;
|
2012-10-20 01:12:02 +02:00
|
|
|
video.rgb32 = g_extern.filter.active || (g_extern.system.pix_fmt == RETRO_PIXEL_FORMAT_XRGB8888);
|
2010-12-24 01:26:36 +01:00
|
|
|
|
|
|
|
const input_driver_t *tmp = driver.input;
|
2013-10-06 17:23:49 +02:00
|
|
|
find_video_driver(); // Need to grab the "real" video driver interface on a reinit.
|
2013-10-07 16:26:06 +02:00
|
|
|
#ifdef HAVE_THREADS
|
2013-03-30 21:19:45 +01:00
|
|
|
if (g_settings.video.threaded && !g_extern.system.hw_render_callback.context_type) // Can't do hardware rendering with threaded driver currently.
|
2013-02-16 02:21:43 +01:00
|
|
|
{
|
|
|
|
RARCH_LOG("Starting threaded video driver ...\n");
|
|
|
|
if (!rarch_threaded_video_init(&driver.video, &driver.video_data,
|
|
|
|
&driver.input, &driver.input_data,
|
|
|
|
driver.video, &video))
|
|
|
|
{
|
|
|
|
RARCH_ERR("Cannot open threaded video driver ... Exiting ...\n");
|
|
|
|
rarch_fail(1, "init_video_input()");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
driver.video_data = video_init_func(&video, &driver.input, &driver.input_data);
|
2010-12-24 01:26:36 +01:00
|
|
|
|
2011-09-20 11:58:21 +02:00
|
|
|
if (driver.video_data == NULL)
|
2010-12-24 01:26:36 +01:00
|
|
|
{
|
2012-04-21 23:25:32 +02:00
|
|
|
RARCH_ERR("Cannot open video driver ... Exiting ...\n");
|
|
|
|
rarch_fail(1, "init_video_input()");
|
2010-12-24 01:26:36 +01:00
|
|
|
}
|
|
|
|
|
2013-03-10 01:20:16 +01:00
|
|
|
driver.video_poke = NULL;
|
2013-03-10 01:16:56 +01:00
|
|
|
if (driver.video->poke_interface)
|
|
|
|
driver.video->poke_interface(driver.video_data, &driver.video_poke);
|
|
|
|
|
2013-10-26 18:29:47 +02:00
|
|
|
// Force custom viewport to have sane parameters.
|
2013-10-26 18:51:00 +02:00
|
|
|
if (driver.video->viewport_info && (!custom_vp->width || !custom_vp->height))
|
2013-10-26 18:29:47 +02:00
|
|
|
{
|
|
|
|
custom_vp->width = width;
|
|
|
|
custom_vp->height = height;
|
|
|
|
driver.video->viewport_info(driver.video_data, custom_vp);
|
|
|
|
}
|
|
|
|
|
2013-09-22 11:45:04 +02:00
|
|
|
if (driver.video->set_rotation)
|
|
|
|
video_set_rotation_func((g_settings.video.rotation + g_extern.system.rotation) % 4);
|
2012-04-01 19:20:37 +02:00
|
|
|
|
2012-09-28 22:38:42 +02:00
|
|
|
#ifdef HAVE_X11
|
|
|
|
if (driver.display_type == RARCH_DISPLAY_X11)
|
|
|
|
{
|
|
|
|
RARCH_LOG("Suspending screensaver (X11).\n");
|
|
|
|
x11_suspend_screensaver(driver.video_window);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-01-06 20:01:32 +01:00
|
|
|
// Video driver didn't provide an input driver so we use configured one.
|
|
|
|
if (driver.input == NULL)
|
2010-12-24 01:26:36 +01:00
|
|
|
{
|
2012-09-30 15:03:53 +02:00
|
|
|
RARCH_LOG("Graphics driver did not initialize an input driver. Attempting to pick a suitable driver.\n");
|
2010-12-24 01:26:36 +01:00
|
|
|
driver.input = tmp;
|
|
|
|
if (driver.input != NULL)
|
|
|
|
{
|
2012-03-29 00:30:50 +02:00
|
|
|
driver.input_data = input_init_func();
|
2011-09-20 11:58:21 +02:00
|
|
|
if (driver.input_data == NULL)
|
2011-01-06 18:34:11 +01:00
|
|
|
{
|
2012-04-21 23:25:32 +02:00
|
|
|
RARCH_ERR("Cannot init input driver. Exiting ...\n");
|
|
|
|
rarch_fail(1, "init_video_input()");
|
2011-01-06 18:34:11 +01:00
|
|
|
}
|
2010-12-24 01:26:36 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-04-21 23:25:32 +02:00
|
|
|
RARCH_ERR("Cannot find input driver. Exiting ...\n");
|
|
|
|
rarch_fail(1, "init_video_input()");
|
2010-12-24 01:26:36 +01:00
|
|
|
}
|
|
|
|
}
|
2012-12-20 15:33:54 +01:00
|
|
|
|
2012-12-23 18:36:58 +01:00
|
|
|
#ifdef HAVE_OVERLAY
|
2012-12-20 15:53:09 +01:00
|
|
|
if (driver.overlay)
|
2012-12-20 20:23:53 +01:00
|
|
|
{
|
2012-12-20 15:53:09 +01:00
|
|
|
input_overlay_free(driver.overlay);
|
2012-12-20 20:23:53 +01:00
|
|
|
driver.overlay = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*g_settings.input.overlay)
|
|
|
|
{
|
|
|
|
driver.overlay = input_overlay_new(g_settings.input.overlay);
|
|
|
|
if (!driver.overlay)
|
|
|
|
RARCH_ERR("Failed to load overlay.\n");
|
|
|
|
}
|
2012-12-23 18:36:58 +01:00
|
|
|
#endif
|
2013-02-04 21:46:56 +01:00
|
|
|
|
2013-02-05 09:41:10 +01:00
|
|
|
g_extern.measure_data.frame_time_samples_count = 0;
|
2010-12-24 01:26:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void uninit_video_input(void)
|
|
|
|
{
|
2012-12-23 18:36:58 +01:00
|
|
|
#ifdef HAVE_OVERLAY
|
2012-12-20 15:33:54 +01:00
|
|
|
if (driver.overlay)
|
|
|
|
{
|
|
|
|
input_overlay_free(driver.overlay);
|
|
|
|
driver.overlay = NULL;
|
2013-09-05 18:19:07 -04:00
|
|
|
memset(&driver.overlay_state, 0, sizeof(driver.overlay_state));
|
2012-12-20 15:33:54 +01:00
|
|
|
}
|
2012-12-23 18:36:58 +01:00
|
|
|
#endif
|
2012-12-20 15:33:54 +01:00
|
|
|
|
2011-09-20 11:58:21 +02:00
|
|
|
if (driver.input_data != driver.video_data && driver.input)
|
2012-03-29 00:30:50 +02:00
|
|
|
input_free_func();
|
2011-03-07 19:56:40 +01:00
|
|
|
|
2011-09-20 11:58:21 +02:00
|
|
|
if (driver.video_data && driver.video)
|
2012-03-29 00:30:50 +02:00
|
|
|
video_free_func();
|
2011-08-09 00:11:09 +02:00
|
|
|
|
2012-10-20 01:12:02 +02:00
|
|
|
deinit_pixel_converter();
|
|
|
|
|
2011-12-01 21:54:42 +01:00
|
|
|
#ifdef HAVE_DYLIB
|
2011-03-07 19:56:40 +01:00
|
|
|
deinit_filter();
|
2011-12-01 21:54:42 +01:00
|
|
|
#endif
|
2011-03-29 18:04:41 +02:00
|
|
|
|
|
|
|
deinit_shader_dir();
|
2013-02-04 21:46:56 +01:00
|
|
|
compute_monitor_fps_statistics();
|
2010-12-24 01:26:36 +01:00
|
|
|
}
|
|
|
|
|
2010-12-29 20:05:57 +01:00
|
|
|
driver_t driver;
|
|
|
|
|