OpenTok C SDK
audio_data.h
Go to the documentation of this file.
1 
6 #ifndef audio_data_h
7 #define audio_data_h
8 
9 #include "config.h"
10 
11 OTC_BEGIN_DECL
12 
18  const void* sample_buffer;
19  const int bits_per_sample;
20  const int sample_rate;
21  const size_t number_of_channels;
22  const size_t number_of_samples;
23 };
24 
25 OTC_END_DECL
26 
27 #endif /* audio_data_h */
28 
Definition: audio_data.h:17
const size_t number_of_channels
Definition: audio_data.h:21
const void * sample_buffer
Definition: audio_data.h:18
const size_t number_of_samples
Definition: audio_data.h:22
const int bits_per_sample
Definition: audio_data.h:19
const int sample_rate
Definition: audio_data.h:20