1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
/*
* Copyright (C) Volition, Inc. 1999. All rights reserved.
*
* All source code herein is the property of Volition, Inc. You may not sell
* or otherwise commercially exploit the source or things you created based on the
* source.
*
*/
#ifndef __RTVOICE_H__
#define __RTVOICE_H__
// general
void rtvoice_set_qos(int qos);
// recording
int rtvoice_init_recording(int qos);
void rtvoice_close_recording();
int rtvoice_start_recording( void (*user_callback)() = NULL, int callback_time = 175 );
void rtvoice_stop_recording();
void rtvoice_get_data(unsigned char **outbuf, int *size, double *gain);
// playback
int rtvoice_init_playback();
void rtvoice_close_playback();
int rtvoice_create_playback_buffer();
void rtvoice_free_playback_buffer(int index);
void rtvoice_uncompress(unsigned char *data_in, int size_in, double gain, unsigned char *data_out, int size_out);
// return a sound handle, _NOT_ a buffer handle
int rtvoice_play(int handle, unsigned char *data, int size);
// pass in buffer handle returned from rtvoice_create_playback_buffer(), kills the _sound_ only
void rtvoice_stop_playback(int handle);
void rtvoice_stop_playback_all();
#endif
|