client.h | client.h | |||
---|---|---|---|---|
skipping to change at line 72 | skipping to change at line 72 | |||
int audio_channels; | int audio_channels; | |||
char ** audio_routing; | char ** audio_routing; | |||
char * instrument_file; | char * instrument_file; | |||
int instrument_nr; | int instrument_nr; | |||
char * instrument_name; | char * instrument_name; | |||
int instrument_status; | int instrument_status; | |||
int midi_device; | int midi_device; | |||
int midi_port; | int midi_port; | |||
int midi_channel; | int midi_channel; | |||
float volume; | float volume; | |||
int mute; | ||||
int solo; | ||||
} lscp_channel_info_t; | } lscp_channel_info_t; | |||
/** Buffer fill cache struct. */ | /** Buffer fill cache struct. */ | |||
typedef struct _lscp_buffer_fill_t | typedef struct _lscp_buffer_fill_t | |||
{ | { | |||
unsigned int stream_id; | unsigned int stream_id; | |||
unsigned long stream_usage; | unsigned long stream_usage; | |||
} lscp_buffer_fill_t; | } lscp_buffer_fill_t; | |||
skipping to change at line 172 | skipping to change at line 174 | |||
lscp_status_t lscp_set_channel_audio_type (lscp_client_t *pCl ient, int iSamplerChannel, const char *pszAudioType); | lscp_status_t lscp_set_channel_audio_type (lscp_client_t *pCl ient, int iSamplerChannel, const char *pszAudioType); | |||
lscp_status_t lscp_set_channel_audio_device (lscp_client_t *pCl ient, int iSamplerChannel, int iAudioDevice); | lscp_status_t lscp_set_channel_audio_device (lscp_client_t *pCl ient, int iSamplerChannel, int iAudioDevice); | |||
lscp_status_t lscp_set_channel_audio_channel (lscp_client_t *pCl ient, int iSamplerChannel, int iAudioOut, int iAudioIn); | lscp_status_t lscp_set_channel_audio_channel (lscp_client_t *pCl ient, int iSamplerChannel, int iAudioOut, int iAudioIn); | |||
lscp_status_t lscp_set_channel_midi_type (lscp_client_t *pCl ient, int iSamplerChannel, const char *pszMidiType); | lscp_status_t lscp_set_channel_midi_type (lscp_client_t *pCl ient, int iSamplerChannel, const char *pszMidiType); | |||
lscp_status_t lscp_set_channel_midi_device (lscp_client_t *pCl ient, int iSamplerChannel, int iMidiDevice); | lscp_status_t lscp_set_channel_midi_device (lscp_client_t *pCl ient, int iSamplerChannel, int iMidiDevice); | |||
lscp_status_t lscp_set_channel_midi_port (lscp_client_t *pCl ient, int iSamplerChannel, int iMidiPort); | lscp_status_t lscp_set_channel_midi_port (lscp_client_t *pCl ient, int iSamplerChannel, int iMidiPort); | |||
lscp_status_t lscp_set_channel_midi_channel (lscp_client_t *pCl ient, int iSamplerChannel, int iMidiChannel); | lscp_status_t lscp_set_channel_midi_channel (lscp_client_t *pCl ient, int iSamplerChannel, int iMidiChannel); | |||
lscp_status_t lscp_set_channel_volume (lscp_client_t *pCl ient, int iSamplerChannel, float fVolume); | lscp_status_t lscp_set_channel_volume (lscp_client_t *pCl ient, int iSamplerChannel, float fVolume); | |||
lscp_status_t lscp_set_channel_mute (lscp_client_t *pCl | ||||
ient, int iSamplerChannel, int iMute); | ||||
lscp_status_t lscp_set_channel_solo (lscp_client_t *pCl | ||||
ient, int iSamplerChannel, int iSolo); | ||||
lscp_status_t lscp_reset_channel (lscp_client_t *pCl ient, int iSamplerChannel); | lscp_status_t lscp_reset_channel (lscp_client_t *pCl ient, int iSamplerChannel); | |||
lscp_status_t lscp_reset_sampler (lscp_client_t *pCl ient); | lscp_status_t lscp_reset_sampler (lscp_client_t *pCl ient); | |||
lscp_server_info_t * lscp_get_server_info (lscp_client_t *pCl ient); | lscp_server_info_t * lscp_get_server_info (lscp_client_t *pCl ient); | |||
#if defined(__cplusplus) | #if defined(__cplusplus) | |||
} | } | |||
#endif | #endif | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 7 lines changed or added | |||
version.h | version.h | |||
---|---|---|---|---|
skipping to change at line 27 | skipping to change at line 27 | |||
You should have received a copy of the GNU Lesser General Public | You should have received a copy of the GNU Lesser General Public | |||
License along with this library; if not, write to the Free Software | License along with this library; if not, write to the Free Software | |||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |||
*************************************************************************** **/ | *************************************************************************** **/ | |||
#ifndef __LSCP_VERSION_H | #ifndef __LSCP_VERSION_H | |||
#define __LSCP_VERSION_H | #define __LSCP_VERSION_H | |||
#define LSCP_PACKAGE "liblscp" | #define LSCP_PACKAGE "liblscp" | |||
#define LSCP_VERSION "0.3.0" | #define LSCP_VERSION "0.3.1" | |||
#endif // __LSCP_VERSION_H | #endif // __LSCP_VERSION_H | |||
// end of version.h | // end of version.h | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||