sesman: sound.c: no logic change, remove tabs and warning
This commit is contained in:
parent
a46a3130d3
commit
6d3af904d3
@ -146,6 +146,25 @@ static struct xr_wave_format_ex *g_wave_inp_formats[SND_NUM_INP_FORMATS] =
|
|||||||
static int g_client_input_format_index = 0;
|
static int g_client_input_format_index = 0;
|
||||||
static int g_server_input_format_index = 0;
|
static int g_server_input_format_index = 0;
|
||||||
|
|
||||||
|
/* microphone related */
|
||||||
|
static int APP_CC
|
||||||
|
sound_send_server_input_formats(void);
|
||||||
|
static int APP_CC
|
||||||
|
sound_process_input_format(int aindex, int wFormatTag,
|
||||||
|
int nChannels, int nSamplesPerSec,
|
||||||
|
int nAvgBytesPerSec, int nBlockAlign,
|
||||||
|
int wBitsPerSample, int cbSize, char *data);
|
||||||
|
static int APP_CC
|
||||||
|
sound_process_input_formats(struct stream *s, int size);
|
||||||
|
static int APP_CC
|
||||||
|
sound_input_start_recording(void);
|
||||||
|
static int APP_CC
|
||||||
|
sound_input_stop_recording(void);
|
||||||
|
static int APP_CC
|
||||||
|
sound_process_input_data(struct stream *s, int bytes);
|
||||||
|
static int DEFAULT_CC
|
||||||
|
sound_sndsrvr_source_data_in(struct trans *trans);
|
||||||
|
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
static int APP_CC
|
static int APP_CC
|
||||||
sound_send_server_output_formats(void)
|
sound_send_server_output_formats(void)
|
||||||
@ -215,7 +234,6 @@ sound_send_server_output_formats(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
|
|
||||||
static int
|
static int
|
||||||
sound_send_training(void)
|
sound_send_training(void)
|
||||||
{
|
{
|
||||||
@ -435,7 +453,7 @@ sound_send_wave_data(char *data, int data_bytes)
|
|||||||
if (chunk_bytes < 1)
|
if (chunk_bytes < 1)
|
||||||
{
|
{
|
||||||
LOG(10, ("sound_send_wave_data: error"));
|
LOG(10, ("sound_send_wave_data: error"));
|
||||||
error = 1;
|
error = 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
g_memcpy(g_buffer + g_buf_index, data + data_index, chunk_bytes);
|
g_memcpy(g_buffer + g_buf_index, data + data_index, chunk_bytes);
|
||||||
@ -443,11 +461,11 @@ sound_send_wave_data(char *data, int data_bytes)
|
|||||||
if (g_buf_index >= BBUF_SIZE)
|
if (g_buf_index >= BBUF_SIZE)
|
||||||
{
|
{
|
||||||
if (sound_send_wave_data_chunk(g_buffer, BBUF_SIZE) != 0)
|
if (sound_send_wave_data_chunk(g_buffer, BBUF_SIZE) != 0)
|
||||||
{
|
{
|
||||||
LOG(10, ("sound_send_wave_data: error"));
|
LOG(10, ("sound_send_wave_data: error"));
|
||||||
error = 1;
|
error = 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
g_buf_index = 0;
|
g_buf_index = 0;
|
||||||
}
|
}
|
||||||
data_bytes -= chunk_bytes;
|
data_bytes -= chunk_bytes;
|
||||||
@ -476,7 +494,7 @@ sound_send_close(void)
|
|||||||
}
|
}
|
||||||
g_buf_index = 0;
|
g_buf_index = 0;
|
||||||
g_memset(g_sent_flag, 0, sizeof(g_sent_flag));
|
g_memset(g_sent_flag, 0, sizeof(g_sent_flag));
|
||||||
|
|
||||||
/* send close msg */
|
/* send close msg */
|
||||||
make_stream(s);
|
make_stream(s);
|
||||||
init_stream(s, 8182);
|
init_stream(s, 8182);
|
||||||
@ -807,46 +825,45 @@ sound_get_wait_objs(tbus *objs, int *count, int *timeout)
|
|||||||
int APP_CC
|
int APP_CC
|
||||||
sound_check_wait_objs(void)
|
sound_check_wait_objs(void)
|
||||||
{
|
{
|
||||||
|
|
||||||
if (g_audio_l_trans_out != 0)
|
if (g_audio_l_trans_out != 0)
|
||||||
{
|
{
|
||||||
if (trans_check_wait_objs(g_audio_l_trans_out) != 0)
|
if (trans_check_wait_objs(g_audio_l_trans_out) != 0)
|
||||||
{
|
{
|
||||||
LOG(10, ("sound_check_wait_objs: g_audio_l_trans_out returned non-zero"));
|
LOG(10, ("sound_check_wait_objs: g_audio_l_trans_out returned non-zero"));
|
||||||
trans_delete(g_audio_l_trans_out);
|
trans_delete(g_audio_l_trans_out);
|
||||||
g_audio_l_trans_out = 0;
|
g_audio_l_trans_out = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (g_audio_c_trans_out != 0)
|
if (g_audio_c_trans_out != 0)
|
||||||
{
|
{
|
||||||
if (trans_check_wait_objs(g_audio_c_trans_out) != 0)
|
if (trans_check_wait_objs(g_audio_c_trans_out) != 0)
|
||||||
{
|
{
|
||||||
LOG(10, ("sound_check_wait_objs: g_audio_c_trans_out returned non-zero"));
|
LOG(10, ("sound_check_wait_objs: g_audio_c_trans_out returned non-zero"));
|
||||||
trans_delete(g_audio_c_trans_out);
|
trans_delete(g_audio_c_trans_out);
|
||||||
g_audio_c_trans_out = 0;
|
g_audio_c_trans_out = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (g_audio_l_trans_in != 0)
|
if (g_audio_l_trans_in != 0)
|
||||||
{
|
{
|
||||||
if (trans_check_wait_objs(g_audio_l_trans_in) != 0)
|
if (trans_check_wait_objs(g_audio_l_trans_in) != 0)
|
||||||
{
|
{
|
||||||
LOG(10, ("sound_check_wait_objs: g_audio_l_trans_in returned non-zero"));
|
LOG(10, ("sound_check_wait_objs: g_audio_l_trans_in returned non-zero"));
|
||||||
trans_delete(g_audio_l_trans_in);
|
trans_delete(g_audio_l_trans_in);
|
||||||
g_audio_l_trans_in = 0;
|
g_audio_l_trans_in = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (g_audio_c_trans_in != 0)
|
if (g_audio_c_trans_in != 0)
|
||||||
{
|
{
|
||||||
if (trans_check_wait_objs(g_audio_c_trans_in) != 0)
|
if (trans_check_wait_objs(g_audio_c_trans_in) != 0)
|
||||||
{
|
{
|
||||||
LOG(10, ("sound_check_wait_objs: g_audio_c_trans_in returned non-zero"));
|
LOG(10, ("sound_check_wait_objs: g_audio_c_trans_in returned non-zero"));
|
||||||
trans_delete(g_audio_c_trans_in);
|
trans_delete(g_audio_c_trans_in);
|
||||||
g_audio_c_trans_in = 0;
|
g_audio_c_trans_in = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
@ -1015,7 +1032,7 @@ sound_process_input_formats(struct stream *s, int size)
|
|||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
static int APP_CC
|
static int APP_CC
|
||||||
sound_input_start_recording()
|
sound_input_start_recording(void)
|
||||||
{
|
{
|
||||||
struct stream* s;
|
struct stream* s;
|
||||||
|
|
||||||
@ -1049,7 +1066,7 @@ sound_input_start_recording()
|
|||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
static int APP_CC
|
static int APP_CC
|
||||||
sound_input_stop_recording()
|
sound_input_stop_recording(void)
|
||||||
{
|
{
|
||||||
struct stream* s;
|
struct stream* s;
|
||||||
|
|
||||||
|
@ -58,17 +58,4 @@ int APP_CC sound_check_wait_objs(void);
|
|||||||
int APP_CC sound_data_in(struct stream* s, int chan_id, int chan_flags,
|
int APP_CC sound_data_in(struct stream* s, int chan_id, int chan_flags,
|
||||||
int length, int total_length);
|
int length, int total_length);
|
||||||
|
|
||||||
/* microphone related */
|
|
||||||
static int APP_CC sound_send_server_input_formats(void);
|
|
||||||
|
|
||||||
static int APP_CC sound_process_input_format(int aindex, int wFormatTag,
|
|
||||||
int nChannels, int nSamplesPerSec, int nAvgBytesPerSec,
|
|
||||||
int nBlockAlign, int wBitsPerSample, int cbSize, char *data);
|
|
||||||
|
|
||||||
static int APP_CC sound_process_input_formats(struct stream *s, int size);
|
|
||||||
static int APP_CC sound_input_start_recording();
|
|
||||||
static int APP_CC sound_input_stop_recording();
|
|
||||||
static int APP_CC sound_process_input_data(struct stream *s, int bytes);
|
|
||||||
static int DEFAULT_CC sound_sndsrvr_source_data_in(struct trans *trans);
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user