Plugin API/ABI got incompatible r30242. Bump and sort.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30243 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
98096970e0
commit
589879bb3d
2 changed files with 30 additions and 31 deletions
|
@ -572,8 +572,19 @@ static const struct plugin_api rockbox_api = {
|
||||||
dsp_process,
|
dsp_process,
|
||||||
dsp_input_count,
|
dsp_input_count,
|
||||||
dsp_output_count,
|
dsp_output_count,
|
||||||
#endif /* CONFIG_CODEC == SWCODEC */
|
|
||||||
|
|
||||||
|
mixer_channel_status,
|
||||||
|
mixer_channel_get_buffer,
|
||||||
|
mixer_channel_calculate_peaks,
|
||||||
|
mixer_channel_play_data,
|
||||||
|
mixer_channel_play_pause,
|
||||||
|
mixer_channel_stop,
|
||||||
|
mixer_channel_set_amplitude,
|
||||||
|
mixer_channel_get_bytes_waiting,
|
||||||
|
|
||||||
|
system_sound_play,
|
||||||
|
keyclick_click,
|
||||||
|
#endif
|
||||||
/* playback control */
|
/* playback control */
|
||||||
playlist_amount,
|
playlist_amount,
|
||||||
playlist_resume,
|
playlist_resume,
|
||||||
|
@ -778,18 +789,6 @@ static const struct plugin_api rockbox_api = {
|
||||||
|
|
||||||
/* new stuff at the end, sort into place next time
|
/* new stuff at the end, sort into place next time
|
||||||
the API gets incompatible */
|
the API gets incompatible */
|
||||||
#if CONFIG_CODEC == SWCODEC
|
|
||||||
mixer_channel_status,
|
|
||||||
mixer_channel_get_buffer,
|
|
||||||
mixer_channel_calculate_peaks,
|
|
||||||
mixer_channel_play_data,
|
|
||||||
mixer_channel_play_pause,
|
|
||||||
mixer_channel_stop,
|
|
||||||
mixer_channel_set_amplitude,
|
|
||||||
mixer_channel_get_bytes_waiting,
|
|
||||||
system_sound_play,
|
|
||||||
keyclick_click,
|
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
|
||||||
int plugin_load(const char* plugin, const void* parameter)
|
int plugin_load(const char* plugin, const void* parameter)
|
||||||
|
|
|
@ -146,12 +146,12 @@ void* plugin_get_buffer(size_t *buffer_size);
|
||||||
#define PLUGIN_MAGIC 0x526F634B /* RocK */
|
#define PLUGIN_MAGIC 0x526F634B /* RocK */
|
||||||
|
|
||||||
/* increase this every time the api struct changes */
|
/* increase this every time the api struct changes */
|
||||||
#define PLUGIN_API_VERSION 208
|
#define PLUGIN_API_VERSION 209
|
||||||
|
|
||||||
/* update this to latest version if a change to the api struct breaks
|
/* update this to latest version if a change to the api struct breaks
|
||||||
backwards compatibility (and please take the opportunity to sort in any
|
backwards compatibility (and please take the opportunity to sort in any
|
||||||
new function which are "waiting" at the end of the function table) */
|
new function which are "waiting" at the end of the function table) */
|
||||||
#define PLUGIN_MIN_API_VERSION 205
|
#define PLUGIN_MIN_API_VERSION 209
|
||||||
|
|
||||||
/* plugin return codes */
|
/* plugin return codes */
|
||||||
/* internal returns start at 0x100 to make exit(1..255) work */
|
/* internal returns start at 0x100 to make exit(1..255) work */
|
||||||
|
@ -661,6 +661,22 @@ struct plugin_api {
|
||||||
const char *src[], int count);
|
const char *src[], int count);
|
||||||
int (*dsp_input_count)(struct dsp_config *dsp, int count);
|
int (*dsp_input_count)(struct dsp_config *dsp, int count);
|
||||||
int (*dsp_output_count)(struct dsp_config *dsp, int count);
|
int (*dsp_output_count)(struct dsp_config *dsp, int count);
|
||||||
|
|
||||||
|
enum channel_status (*mixer_channel_status)(enum pcm_mixer_channel channel);
|
||||||
|
void * (*mixer_channel_get_buffer)(enum pcm_mixer_channel channel, int *count);
|
||||||
|
void (*mixer_channel_calculate_peaks)(enum pcm_mixer_channel channel,
|
||||||
|
int *left, int *right);
|
||||||
|
void (*mixer_channel_play_data)(enum pcm_mixer_channel channel,
|
||||||
|
pcm_play_callback_type get_more,
|
||||||
|
unsigned char *start, size_t size);
|
||||||
|
void (*mixer_channel_play_pause)(enum pcm_mixer_channel channel, bool play);
|
||||||
|
void (*mixer_channel_stop)(enum pcm_mixer_channel channel);
|
||||||
|
void (*mixer_channel_set_amplitude)(enum pcm_mixer_channel channel,
|
||||||
|
unsigned int amplitude);
|
||||||
|
size_t (*mixer_channel_get_bytes_waiting)(enum pcm_mixer_channel channel);
|
||||||
|
|
||||||
|
void (*system_sound_play)(enum system_sound sound);
|
||||||
|
void (*keyclick_click)(int button);
|
||||||
#endif /* CONFIG_CODEC == SWCODC */
|
#endif /* CONFIG_CODEC == SWCODC */
|
||||||
|
|
||||||
/* playback control */
|
/* playback control */
|
||||||
|
@ -908,22 +924,6 @@ struct plugin_api {
|
||||||
|
|
||||||
/* new stuff at the end, sort into place next time
|
/* new stuff at the end, sort into place next time
|
||||||
the API gets incompatible */
|
the API gets incompatible */
|
||||||
#if CONFIG_CODEC == SWCODEC
|
|
||||||
enum channel_status (*mixer_channel_status)(enum pcm_mixer_channel channel);
|
|
||||||
void * (*mixer_channel_get_buffer)(enum pcm_mixer_channel channel, int *count);
|
|
||||||
void (*mixer_channel_calculate_peaks)(enum pcm_mixer_channel channel,
|
|
||||||
int *left, int *right);
|
|
||||||
void (*mixer_channel_play_data)(enum pcm_mixer_channel channel,
|
|
||||||
pcm_play_callback_type get_more,
|
|
||||||
unsigned char *start, size_t size);
|
|
||||||
void (*mixer_channel_play_pause)(enum pcm_mixer_channel channel, bool play);
|
|
||||||
void (*mixer_channel_stop)(enum pcm_mixer_channel channel);
|
|
||||||
void (*mixer_channel_set_amplitude)(enum pcm_mixer_channel channel,
|
|
||||||
unsigned int amplitude);
|
|
||||||
size_t (*mixer_channel_get_bytes_waiting)(enum pcm_mixer_channel channel);
|
|
||||||
void (*system_sound_play)(enum system_sound sound);
|
|
||||||
void (*keyclick_click)(int button);
|
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/* plugin header */
|
/* plugin header */
|
||||||
|
|
Loading…
Reference in a new issue