mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-31 15:23:35 +00:00
(Audio DSP) Add NULL entry to initializer lists for 'events'
This commit is contained in:
parent
28aa7a46f9
commit
a716070cdc
@ -202,7 +202,8 @@ static const rarch_dsp_plugin_t dsp_plug = {
|
||||
rarch_dsp_free,
|
||||
RARCH_DSP_API_VERSION,
|
||||
rarch_dsp_config,
|
||||
"Echo (SSE2)"
|
||||
"Echo (SSE2)",
|
||||
NULL
|
||||
};
|
||||
|
||||
RARCH_API_EXPORT const rarch_dsp_plugin_t* RARCH_API_CALLTYPE
|
||||
|
@ -193,7 +193,8 @@ static const rarch_dsp_plugin_t dsp_plug = {
|
||||
dsp_free,
|
||||
RARCH_DSP_API_VERSION,
|
||||
rarch_dsp_config,
|
||||
"Echo (SSE2)"
|
||||
"Echo (SSE2)",
|
||||
NULL
|
||||
};
|
||||
|
||||
RARCH_API_EXPORT const rarch_dsp_plugin_t* RARCH_API_CALLTYPE
|
||||
|
@ -410,7 +410,8 @@ const rarch_dsp_plugin_t dsp_plug = {
|
||||
rarch_dsp_free,
|
||||
RARCH_DSP_API_VERSION,
|
||||
rarch_dsp_config,
|
||||
"Equalizer"
|
||||
"Equalizer",
|
||||
NULL
|
||||
};
|
||||
|
||||
RARCH_API_EXPORT const rarch_dsp_plugin_t* RARCH_API_CALLTYPE rarch_dsp_plugin_init(void)
|
||||
|
@ -375,10 +375,11 @@ const rarch_dsp_plugin_t dsp_plug = {
|
||||
RARCH_DSP_API_VERSION,
|
||||
rarch_dsp_config,
|
||||
#ifdef __SSE2__
|
||||
"IIR (SSE2)"
|
||||
"IIR (SSE2)",
|
||||
#else
|
||||
"IIR"
|
||||
"IIR",
|
||||
#endif
|
||||
NULL
|
||||
};
|
||||
|
||||
|
||||
|
@ -181,7 +181,8 @@ const rarch_dsp_plugin_t dsp_plug = {
|
||||
rarch_dsp_free,
|
||||
RARCH_DSP_API_VERSION,
|
||||
rarch_dsp_config,
|
||||
"Phaser plugin"
|
||||
"Phaser plugin",
|
||||
NULL
|
||||
};
|
||||
|
||||
RARCH_API_EXPORT const rarch_dsp_plugin_t* RARCH_API_CALLTYPE rarch_dsp_plugin_init(void)
|
||||
|
@ -34,14 +34,6 @@ extern "C" {
|
||||
#define RARCH_API_CALLTYPE
|
||||
#endif
|
||||
|
||||
#ifndef RARCH_FALSE
|
||||
#define RARCH_FALSE 0
|
||||
#endif
|
||||
|
||||
#ifndef RARCH_TRUE
|
||||
#define RARCH_TRUE 1
|
||||
#endif
|
||||
|
||||
#define RARCH_DSP_API_VERSION 5
|
||||
|
||||
typedef struct rarch_dsp_info
|
||||
|
@ -385,7 +385,8 @@ const rarch_dsp_plugin_t dsp_plug = {
|
||||
rarch_dsp_free,
|
||||
RARCH_DSP_API_VERSION,
|
||||
rarch_dsp_config,
|
||||
"Reverberatation"
|
||||
"Reverberatation",
|
||||
NULL
|
||||
};
|
||||
|
||||
RARCH_API_EXPORT const rarch_dsp_plugin_t* RARCH_API_CALLTYPE rarch_dsp_plugin_init(void)
|
||||
|
@ -118,7 +118,8 @@ const rarch_dsp_plugin_t dsp_plug = {
|
||||
rarch_dsp_free,
|
||||
RARCH_DSP_API_VERSION,
|
||||
rarch_dsp_config,
|
||||
"Volume"
|
||||
"Volume",
|
||||
NULL
|
||||
};
|
||||
|
||||
RARCH_API_EXPORT const rarch_dsp_plugin_t* RARCH_API_CALLTYPE rarch_dsp_plugin_init(void)
|
||||
|
@ -174,7 +174,8 @@ const rarch_dsp_plugin_t dsp_plug = {
|
||||
rarch_dsp_free,
|
||||
RARCH_DSP_API_VERSION,
|
||||
rarch_dsp_config,
|
||||
"Wah"
|
||||
"Wah",
|
||||
NULL
|
||||
};
|
||||
|
||||
RARCH_API_EXPORT const rarch_dsp_plugin_t* RARCH_API_CALLTYPE rarch_dsp_plugin_init(void)
|
||||
|
Loading…
Reference in New Issue
Block a user