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-05-26 19:00:55 +02:00
|
|
|
* Copyright (C) 2011-2014 - Daniel De Matteis
|
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"
|
2013-12-17 19:10:21 +01:00
|
|
|
#include "libretro.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"
|
2014-05-20 12:28:33 +02:00
|
|
|
#include "audio/dsp_filter.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
|
|
|
|
|
2014-05-30 17:49:04 +02:00
|
|
|
#ifdef HAVE_MENU
|
|
|
|
#include "frontend/menu/menu_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
|
2014-02-17 14:26:03 +01:00
|
|
|
#ifdef PSP
|
|
|
|
&audio_psp1,
|
|
|
|
#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
|
2014-03-07 20:21:12 +01:00
|
|
|
#if defined(_XBOX) && (defined(HAVE_D3D8) || defined(HAVE_D3D9)) || defined(HAVE_WIN32_D3D9)
|
2014-01-01 01:09:31 +01:00
|
|
|
&video_d3d,
|
2012-10-26 21:09:30 +02:00
|
|
|
#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
|
2014-02-12 17:18:45 +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
|
2014-01-24 15:15:55 -06:00
|
|
|
#ifdef HAVE_LIMA
|
|
|
|
&video_lima,
|
|
|
|
#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
|
2013-12-07 14:13:40 +01:00
|
|
|
#ifdef HAVE_UDEV
|
|
|
|
&input_udev,
|
|
|
|
#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
|
2014-05-20 02:48:11 +02:00
|
|
|
#ifdef __QNX__
|
2013-03-18 18:56:07 -04:00
|
|
|
&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-11-13 00:27:31 +01:00
|
|
|
#ifdef HAVE_OSK
|
2014-05-26 19:00:55 +02:00
|
|
|
#include "driver-contexts/osk_driver.c"
|
2013-11-13 00:27:31 +01:00
|
|
|
#endif
|
|
|
|
|
2013-11-11 14:26:57 +01:00
|
|
|
#ifdef HAVE_CAMERA
|
2014-05-26 19:00:55 +02:00
|
|
|
#include "driver-contexts/camera_driver.c"
|
2013-11-11 14:26:57 +01:00
|
|
|
#endif
|
|
|
|
|
2013-12-19 01:51:51 +01:00
|
|
|
#ifdef HAVE_LOCATION
|
2014-05-26 19:00:55 +02:00
|
|
|
#include "driver-contexts/location_driver.c"
|
2013-12-19 01:51:51 +01:00
|
|
|
#endif
|
|
|
|
|
2014-05-26 19:00:55 +02:00
|
|
|
#ifdef HAVE_MENU
|
|
|
|
#include "driver-contexts/menu_driver.c"
|
2013-12-19 01:51:51 +01:00
|
|
|
#endif
|
|
|
|
|
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
|
|
|
{
|
2014-05-30 18:22:49 +02:00
|
|
|
// No need to enforce GL if HW render. This is done at driver initialize anyways.
|
2013-10-30 23:36:52 +01:00
|
|
|
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
|
|
|
{
|
2014-05-30 18:22:49 +02:00
|
|
|
// No need to enforce GL if HW render. This is done at driver initialize anyways.
|
2013-10-30 23:36:52 +01:00
|
|
|
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();
|
2013-11-11 14:26:57 +01:00
|
|
|
#ifdef HAVE_CAMERA
|
|
|
|
find_camera_driver();
|
|
|
|
#endif
|
2013-12-19 01:51:51 +01:00
|
|
|
#ifdef HAVE_LOCATION
|
|
|
|
find_location_driver();
|
|
|
|
#endif
|
2013-11-13 00:27:31 +01:00
|
|
|
#ifdef HAVE_OSK
|
|
|
|
find_osk_driver();
|
|
|
|
#endif
|
2014-05-26 23:20:00 +02:00
|
|
|
#ifdef HAVE_MENU
|
2014-05-26 23:18:49 +02:00
|
|
|
find_menu_driver();
|
2014-05-26 23:20:00 +02:00
|
|
|
#endif
|
2012-04-01 19:38:50 +02:00
|
|
|
}
|
|
|
|
|
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-11-03 12:06:14 +01:00
|
|
|
bool driver_set_sensor_state(unsigned port, enum retro_sensor_action action, unsigned rate)
|
|
|
|
{
|
|
|
|
if (driver.input && driver.input_data && driver.input->set_sensor_state)
|
|
|
|
return driver.input->set_sensor_state(driver.input_data, port, action, rate);
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-01-20 14:59:06 +01:00
|
|
|
float driver_sensor_get_input(unsigned port, unsigned id)
|
2014-01-20 14:52:53 +01:00
|
|
|
{
|
|
|
|
if (driver.input && driver.input_data && driver.input->get_sensor_input)
|
2014-01-20 14:59:06 +01:00
|
|
|
return driver.input->get_sensor_input(driver.input_data, port, id);
|
2014-01-20 14:52:53 +01:00
|
|
|
else
|
|
|
|
return 0.0f;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2014-02-20 22:48:31 +01:00
|
|
|
bool driver_update_system_av_info(const struct retro_system_av_info *info)
|
|
|
|
{
|
|
|
|
g_extern.system.av_info = *info;
|
2014-06-01 00:42:36 +02:00
|
|
|
rarch_reinit_drivers();
|
2014-02-20 22:48:31 +01:00
|
|
|
// Cannot continue recording with different parameters.
|
|
|
|
// Take the easiest route out and just restart the recording.
|
2014-05-03 00:21:07 +02:00
|
|
|
#ifdef HAVE_RECORD
|
2014-02-20 22:48:31 +01:00
|
|
|
if (g_extern.recording)
|
|
|
|
{
|
|
|
|
static const char *msg = "Restarting FFmpeg recording due to driver reinit.";
|
|
|
|
msg_queue_push(g_extern.msg_queue, msg, 2, 180);
|
|
|
|
RARCH_WARN("%s\n", msg);
|
|
|
|
rarch_deinit_recording();
|
|
|
|
rarch_init_recording();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-05-30 17:49:04 +02:00
|
|
|
#ifdef HAVE_MENU
|
2014-06-06 00:51:56 +02:00
|
|
|
static void init_menu(void)
|
2014-05-30 17:49:04 +02:00
|
|
|
{
|
2014-05-31 23:22:20 +02:00
|
|
|
if (driver.menu)
|
|
|
|
return;
|
2014-05-30 17:49:04 +02:00
|
|
|
|
2014-05-31 23:22:20 +02:00
|
|
|
find_menu_driver();
|
2014-05-30 17:49:04 +02:00
|
|
|
if (!(driver.menu = (rgui_handle_t*)menu_init(driver.menu_ctx)))
|
|
|
|
{
|
|
|
|
RARCH_ERR("Cannot initialize menu.\n");
|
|
|
|
rarch_fail(1, "init_menu()");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-12-24 01:26:36 +01:00
|
|
|
void init_drivers(void)
|
|
|
|
{
|
2014-05-30 02:37:48 +02:00
|
|
|
driver.video_data_own = false;
|
|
|
|
driver.audio_data_own = false;
|
|
|
|
driver.input_data_own = false;
|
2013-11-11 14:26:57 +01:00
|
|
|
#ifdef HAVE_CAMERA
|
2014-05-30 02:37:48 +02:00
|
|
|
driver.camera_data_own = false;
|
2013-11-11 14:26:57 +01:00
|
|
|
#endif
|
2013-12-19 01:51:51 +01:00
|
|
|
#ifdef HAVE_LOCATION
|
2014-05-30 02:37:48 +02:00
|
|
|
driver.location_data_own = false;
|
2013-12-19 01:51:51 +01:00
|
|
|
#endif
|
2013-11-13 00:27:31 +01:00
|
|
|
#ifdef HAVE_OSK
|
2014-05-30 02:37:48 +02:00
|
|
|
driver.osk_data_own = false;
|
2013-11-13 00:27:31 +01:00
|
|
|
#endif
|
2014-05-30 17:49:04 +02:00
|
|
|
#ifdef HAVE_MENU
|
2014-05-31 23:53:03 +02:00
|
|
|
// By default, we want the menu to persist through driver reinits.
|
|
|
|
driver.menu_data_own = true;
|
2014-05-30 17:49:04 +02:00
|
|
|
#endif
|
2012-12-25 23:18:19 +01:00
|
|
|
|
2014-05-28 08:48:49 +02:00
|
|
|
adjust_system_rates();
|
|
|
|
|
|
|
|
g_extern.frame_count = 0;
|
2014-05-30 17:49:04 +02:00
|
|
|
|
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
|
|
|
|
2013-11-11 14:26:57 +01:00
|
|
|
#ifdef HAVE_CAMERA
|
2014-05-30 18:22:49 +02:00
|
|
|
// Only initialize camera driver if we're ever going to use it.
|
2013-12-19 10:15:55 +01:00
|
|
|
if (g_extern.camera_active)
|
2013-11-12 16:00:18 +01:00
|
|
|
init_camera();
|
2013-11-11 14:26:57 +01:00
|
|
|
#endif
|
|
|
|
|
2013-12-19 01:51:51 +01:00
|
|
|
#ifdef HAVE_LOCATION
|
2014-05-30 18:22:49 +02:00
|
|
|
// Only initialize location driver if we're ever going to use it.
|
2013-12-19 10:15:55 +01:00
|
|
|
if (g_extern.location_active)
|
2013-12-19 03:16:13 +01:00
|
|
|
init_location();
|
2013-12-19 01:51:51 +01:00
|
|
|
#endif
|
|
|
|
|
2013-11-13 00:27:31 +01:00
|
|
|
#ifdef HAVE_OSK
|
|
|
|
init_osk();
|
|
|
|
#endif
|
|
|
|
|
2014-05-30 17:49:04 +02:00
|
|
|
#ifdef HAVE_MENU
|
|
|
|
init_menu();
|
2014-06-06 00:51:56 +02:00
|
|
|
|
|
|
|
if (driver.menu && driver.menu_ctx && driver.menu_ctx->context_reset)
|
|
|
|
driver.menu_ctx->context_reset(driver.menu);
|
2014-05-30 17:49:04 +02:00
|
|
|
#endif
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-05-30 02:37:48 +02:00
|
|
|
void rarch_deinit_filter(void)
|
|
|
|
{
|
|
|
|
rarch_softfilter_free(g_extern.filter.filter);
|
|
|
|
free(g_extern.filter.buffer);
|
|
|
|
memset(&g_extern.filter, 0, sizeof(g_extern.filter));
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void compute_monitor_fps_statistics(void)
|
|
|
|
{
|
|
|
|
if (g_settings.video.threaded)
|
|
|
|
{
|
|
|
|
RARCH_LOG("Monitor FPS estimation is disabled for threaded video.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-06 00:51:56 +02:00
|
|
|
void uninit_drivers(void)
|
2014-06-05 20:26:21 +02:00
|
|
|
{
|
2014-06-06 00:51:56 +02:00
|
|
|
uninit_audio();
|
|
|
|
|
|
|
|
if (g_extern.system.hw_render_callback.context_destroy && !driver.video_cache_context)
|
|
|
|
g_extern.system.hw_render_callback.context_destroy();
|
|
|
|
|
|
|
|
#ifdef HAVE_MENU
|
2014-06-02 18:08:08 +02:00
|
|
|
if (driver.menu && driver.menu_ctx && driver.menu_ctx->context_destroy)
|
2014-05-31 23:22:20 +02:00
|
|
|
driver.menu_ctx->context_destroy(driver.menu);
|
|
|
|
|
2014-05-30 17:49:04 +02:00
|
|
|
if (!driver.menu_data_own)
|
2014-05-31 23:22:20 +02:00
|
|
|
{
|
2014-05-30 17:49:04 +02:00
|
|
|
menu_free(driver.menu);
|
2014-05-31 23:22:20 +02:00
|
|
|
driver.menu = NULL;
|
|
|
|
}
|
2014-05-30 17:49:04 +02:00
|
|
|
#endif
|
|
|
|
|
2011-12-25 19:31:05 +01:00
|
|
|
uninit_video_input();
|
2012-12-25 23:18:19 +01:00
|
|
|
|
2014-05-30 02:37:48 +02:00
|
|
|
if (!driver.video_data_own)
|
|
|
|
driver.video_data = NULL;
|
2013-11-11 14:26:57 +01:00
|
|
|
|
2014-05-30 02:37:48 +02:00
|
|
|
#ifdef HAVE_CAMERA
|
|
|
|
if (!driver.camera_data_own)
|
|
|
|
{
|
|
|
|
uninit_camera();
|
2013-11-11 14:26:57 +01:00
|
|
|
driver.camera_data = NULL;
|
2014-05-30 02:37:48 +02:00
|
|
|
}
|
2013-11-13 00:27:31 +01:00
|
|
|
#endif
|
2013-12-19 01:51:51 +01:00
|
|
|
|
|
|
|
#ifdef HAVE_LOCATION
|
2014-05-30 02:37:48 +02:00
|
|
|
if (!driver.location_data_own)
|
|
|
|
{
|
|
|
|
uninit_location();
|
2013-12-19 01:51:51 +01:00
|
|
|
driver.location_data = NULL;
|
2014-05-30 02:37:48 +02:00
|
|
|
}
|
2013-12-19 01:51:51 +01:00
|
|
|
#endif
|
|
|
|
|
2013-11-13 00:27:31 +01:00
|
|
|
#ifdef HAVE_OSK
|
2014-05-30 02:37:48 +02:00
|
|
|
if (!driver.osk_data_own)
|
|
|
|
{
|
|
|
|
uninit_osk();
|
2013-11-13 00:27:31 +01:00
|
|
|
driver.osk_data = NULL;
|
2014-05-30 02:37:48 +02:00
|
|
|
}
|
2013-11-11 14:26:57 +01:00
|
|
|
#endif
|
2014-05-30 02:37:48 +02:00
|
|
|
|
|
|
|
if (!driver.input_data_own)
|
2012-12-25 23:18:19 +01:00
|
|
|
driver.input_data = NULL;
|
2014-05-30 02:37:48 +02:00
|
|
|
|
|
|
|
if (!driver.audio_data_own)
|
2014-05-30 01:48:55 +02:00
|
|
|
driver.audio_data = NULL;
|
2010-12-24 01:26:36 +01:00
|
|
|
}
|
|
|
|
|
2014-04-27 18:15:41 +02:00
|
|
|
void rarch_init_dsp_filter(void)
|
2011-05-13 21:05:28 +02:00
|
|
|
{
|
2014-05-20 12:28:33 +02:00
|
|
|
rarch_deinit_dsp_filter();
|
|
|
|
if (!*g_settings.audio.dsp_plugin)
|
2011-05-13 21:05:28 +02:00
|
|
|
return;
|
2012-07-06 17:36:37 +02:00
|
|
|
|
2014-05-20 12:28:33 +02:00
|
|
|
g_extern.audio_data.dsp = rarch_dsp_filter_new(g_settings.audio.dsp_plugin, g_settings.audio.in_rate);
|
|
|
|
if (!g_extern.audio_data.dsp)
|
2014-05-30 18:22:49 +02:00
|
|
|
RARCH_ERR("[DSP]: Failed to initialize DSP filter \"%s\".\n", g_settings.audio.dsp_plugin);
|
2011-05-13 21:05:28 +02:00
|
|
|
}
|
|
|
|
|
2014-04-27 18:15:41 +02:00
|
|
|
void rarch_deinit_dsp_filter(void)
|
2011-05-13 21:05:28 +02:00
|
|
|
{
|
2014-05-20 12:28:33 +02:00
|
|
|
if (g_extern.audio_data.dsp)
|
|
|
|
rarch_dsp_filter_free(g_extern.audio_data.dsp);
|
|
|
|
g_extern.audio_data.dsp = NULL;
|
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
|
|
|
if (!rarch_resampler_realloc(&g_extern.audio_data.resampler_data, &g_extern.audio_data.resampler,
|
2014-02-25 09:56:39 +01:00
|
|
|
g_settings.audio.resampler, g_extern.audio_data.orig_src_ratio))
|
2013-02-08 11:49:51 +01:00
|
|
|
{
|
2014-02-25 09:56:39 +01:00
|
|
|
RARCH_ERR("Failed to initialize resampler \"%s\".\n", g_settings.audio.resampler);
|
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
|
|
|
}
|
|
|
|
|
2014-04-27 18:15:41 +02:00
|
|
|
rarch_init_dsp_filter();
|
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
|
|
|
}
|
|
|
|
|
2013-11-11 14:26:57 +01:00
|
|
|
|
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.
|
2013-12-17 19:10:21 +01:00
|
|
|
retro_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-12-17 19:10:21 +01:00
|
|
|
retro_time_t avg = accum / samples;
|
|
|
|
retro_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-12-17 19:10:21 +01:00
|
|
|
retro_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;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2014-04-27 18:15:41 +02:00
|
|
|
rarch_deinit_dsp_filter();
|
2013-01-18 10:38:43 +01:00
|
|
|
|
|
|
|
compute_audio_buffer_statistics();
|
2010-12-24 01:26:36 +01:00
|
|
|
}
|
|
|
|
|
2014-04-15 05:13:56 +02:00
|
|
|
void rarch_init_filter(enum retro_pixel_format colfmt)
|
2010-12-24 01:26:36 +01:00
|
|
|
{
|
2014-04-15 00:03:55 +02:00
|
|
|
rarch_deinit_filter();
|
2014-05-30 18:22:49 +02:00
|
|
|
#ifndef HAVE_FILTERS_BUILTIN
|
2012-10-21 22:58:33 +02:00
|
|
|
if (!*g_settings.video.filter_path)
|
2011-03-07 19:12:14 +01:00
|
|
|
return;
|
2014-05-30 18:22:49 +02:00
|
|
|
#endif
|
2010-12-24 01:26:36 +01:00
|
|
|
|
2014-04-15 12:22:01 +02:00
|
|
|
// Deprecated format. Gets pre-converted.
|
|
|
|
if (colfmt == RETRO_PIXEL_FORMAT_0RGB1555)
|
|
|
|
colfmt = RETRO_PIXEL_FORMAT_RGB565;
|
|
|
|
|
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-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;
|
|
|
|
|
2014-05-30 18:22:49 +02:00
|
|
|
#ifndef HAVE_FILTERS_BUILTIN
|
2014-04-15 00:03:55 +02:00
|
|
|
RARCH_LOG("Loading softfilter from \"%s\"\n", g_settings.video.filter_path);
|
2014-04-16 03:33:10 +02:00
|
|
|
#endif
|
2014-04-15 00:03:55 +02:00
|
|
|
g_extern.filter.filter = rarch_softfilter_new(g_settings.video.filter_path,
|
2014-04-15 05:13:56 +02:00
|
|
|
RARCH_SOFTFILTER_THREADS_AUTO, colfmt, width, height);
|
2012-06-18 00:34:47 +02:00
|
|
|
|
2014-04-15 00:03:55 +02:00
|
|
|
if (!g_extern.filter.filter)
|
2010-12-30 01:33:40 +01:00
|
|
|
{
|
2014-05-30 09:11:56 +02:00
|
|
|
RARCH_ERR("Failed to load filter.\n");
|
2014-04-15 00:03:55 +02:00
|
|
|
return;
|
2010-12-30 01:33:40 +01:00
|
|
|
}
|
2011-03-07 19:12:14 +01:00
|
|
|
|
2014-04-15 19:24:50 +02:00
|
|
|
rarch_softfilter_get_max_output_size(g_extern.filter.filter, &width, &height);
|
|
|
|
pow2_x = next_pow2(width);
|
|
|
|
pow2_y = next_pow2(height);
|
2014-04-15 00:03:55 +02:00
|
|
|
maxsize = max(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
|
|
|
|
2014-04-15 00:03:55 +02:00
|
|
|
g_extern.filter.out_rgb32 = rarch_softfilter_get_output_format(g_extern.filter.filter) == RETRO_PIXEL_FORMAT_XRGB8888;
|
|
|
|
g_extern.filter.out_bpp = g_extern.filter.out_rgb32 ? sizeof(uint32_t) : sizeof(uint16_t);
|
2012-10-21 22:58:33 +02:00
|
|
|
|
2014-04-15 00:03:55 +02:00
|
|
|
// TODO: Aligned output.
|
|
|
|
g_extern.filter.buffer = malloc(width * height * g_extern.filter.out_bpp);
|
|
|
|
if (!g_extern.filter.buffer)
|
2012-10-21 22:58:33 +02:00
|
|
|
goto error;
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
error:
|
2014-05-30 09:11:56 +02:00
|
|
|
RARCH_ERR("Softfilter initialization failed.\n");
|
2014-04-13 18:29:57 +02:00
|
|
|
rarch_deinit_filter();
|
2011-03-07 19:12:14 +01:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
2014-05-25 23:40:14 +02:00
|
|
|
g_extern.shader_dir.list = dir_list_new(g_settings.video.shader_dir, "cg|cgp|glsl|glslp", false);
|
2013-04-16 12:01:50 +02:00
|
|
|
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-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;
|
|
|
|
}
|
|
|
|
|
2014-05-10 20:26:58 +02:00
|
|
|
|
2011-03-07 19:12:14 +01:00
|
|
|
void init_video_input(void)
|
|
|
|
{
|
2014-04-15 05:13:56 +02:00
|
|
|
rarch_init_filter(g_extern.system.pix_fmt);
|
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
|
|
|
|
2014-04-15 00:03:55 +02:00
|
|
|
if (g_extern.filter.filter)
|
2011-03-07 19:12:14 +01:00
|
|
|
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))
|
|
|
|
{
|
2014-05-30 18:22:49 +02:00
|
|
|
RARCH_ERR("Failed to initialize pixel converter.\n");
|
2012-10-20 01:12:02 +02:00
|
|
|
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;
|
2014-04-15 00:03:55 +02:00
|
|
|
video.rgb32 = g_extern.filter.filter ? g_extern.filter.out_rgb32 : (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
|
|
|
}
|
|
|
|
|
2014-05-30 17:49:04 +02: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
|
|
|
{
|
2014-05-30 18:22:49 +02:00
|
|
|
RARCH_ERR("Cannot initialize input driver. Exiting ...\n");
|
2012-04-21 23:25:32 +02:00
|
|
|
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
|
|
|
|
2014-05-30 02:37:48 +02:00
|
|
|
if (!driver.input_data_own && driver.input_data != driver.video_data && driver.input && driver.input->free)
|
2012-03-29 00:30:50 +02:00
|
|
|
input_free_func();
|
2011-03-07 19:56:40 +01:00
|
|
|
|
2014-05-30 17:49:04 +02:00
|
|
|
|
2014-05-30 02:37:48 +02:00
|
|
|
if (!driver.video_data_own && driver.video_data && driver.video && driver.video->free)
|
2012-03-29 00:30:50 +02:00
|
|
|
video_free_func();
|
2014-05-30 03:14:10 +02:00
|
|
|
|
|
|
|
deinit_pixel_converter();
|
|
|
|
|
|
|
|
rarch_deinit_filter();
|
|
|
|
|
|
|
|
deinit_shader_dir();
|
|
|
|
compute_monitor_fps_statistics();
|
2010-12-24 01:26:36 +01:00
|
|
|
}
|
|
|
|
|
2010-12-29 20:05:57 +01:00
|
|
|
driver_t driver;
|
|
|
|
|