/* Registration */
-
static const switch_codec_implementation_t g711u_8k_60ms_implementation = {
/*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
/*.ianacode */ 0,
/*.destroy */ switch_g711u_destroy
};
-#if 0
static const switch_codec_implementation_t g711u_8k_30ms_implementation = {
/*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
/*.ianacode */ 0,
/*.encode */ switch_g711u_encode,
/*.decode */ switch_g711u_decode,
/*.destroy */ switch_g711u_destroy,
- /*.next */ NULL
+ /*.next*/ &g711u_8k_60ms_implementation
};
-static const switch_codec_implementation_t g711u_16k_implementation = {
+static const switch_codec_implementation_t g711u_8k_20ms_implementation = {
/*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
/*.ianacode */ 0,
/*.iananame */ "PCMU",
/*.fmtp */ NULL,
- /*.samples_per_second */ 16000,
- /*.bits_per_second */ 128000,
+ /*.samples_per_second */ 8000,
+ /*.bits_per_second */ 64000,
/*.microseconds_per_frame */ 20000,
- /*.samples_per_frame */ 320,
- /*.bytes_per_frame */ 640,
- /*.encoded_bytes_per_frame */ 320,
+ /*.samples_per_frame */ 160,
+ /*.bytes_per_frame */ 320,
+ /*.encoded_bytes_per_frame */ 160,
/*.number_of_channels */ 1,
/*.pref_frames_per_packet */ 1,
/*.max_frames_per_packet */ 1,
/*.encode */ switch_g711u_encode,
/*.decode */ switch_g711u_decode,
/*.destroy */ switch_g711u_destroy,
- /*.next */ &g711u_8k_30ms_implementation
+ /*.next*/ &g711u_8k_30ms_implementation
};
-#endif
-static const switch_codec_implementation_t g711u_8k_implementation = {
+static const switch_codec_implementation_t g711u_8k_10ms_implementation = {
/*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
/*.ianacode */ 0,
/*.iananame */ "PCMU",
/*.fmtp */ NULL,
/*.samples_per_second */ 8000,
/*.bits_per_second */ 64000,
- /*.microseconds_per_frame */ 20000,
- /*.samples_per_frame */ 160,
- /*.bytes_per_frame */ 320,
- /*.encoded_bytes_per_frame */ 160,
+ /*.microseconds_per_frame */ 10000,
+ /*.samples_per_frame */ 80,
+ /*.bytes_per_frame */ 160,
+ /*.encoded_bytes_per_frame */ 80,
/*.number_of_channels */ 1,
/*.pref_frames_per_packet */ 1,
/*.max_frames_per_packet */ 1,
/*.encode */ switch_g711u_encode,
/*.decode */ switch_g711u_decode,
/*.destroy */ switch_g711u_destroy,
- ///*.next */ &g711u_16k_implementation
- &g711u_8k_60ms_implementation
+ /*.next*/ &g711u_8k_20ms_implementation
};
-static const switch_codec_implementation_t g711a_8k_implementation = {
+
+
+static const switch_codec_implementation_t g711a_8k_60ms_implementation = {
+ /*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
+ /*.ianacode */ 8,
+ /*.iananame */ "PCMA",
+ /*.fmtp */ NULL,
+ /*.samples_per_second */ 8000,
+ /*.bits_per_second */ 19200,
+ /*.microseconds_per_frame */ 60000,
+ /*.samples_per_frame */ 480,
+ /*.bytes_per_frame */ 960,
+ /*.encoded_bytes_per_frame */ 480,
+ /*.number_of_channels */ 1,
+ /*.pref_frames_per_packet */ 1,
+ /*.max_frames_per_packet */ 1,
+ /*.init */ switch_g711u_init,
+ /*.encode */ switch_g711u_encode,
+ /*.decode */ switch_g711u_decode,
+ /*.destroy */ switch_g711u_destroy,
+};
+
+static const switch_codec_implementation_t g711a_8k_30ms_implementation = {
+ /*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
+ /*.ianacode */ 8,
+ /*.iananame */ "PCMA",
+ /*.fmtp */ NULL,
+ /*.samples_per_second */ 8000,
+ /*.bits_per_second */ 96000,
+ /*.microseconds_per_frame */ 30000,
+ /*.samples_per_frame */ 240,
+ /*.bytes_per_frame */ 480,
+ /*.encoded_bytes_per_frame */ 240,
+ /*.number_of_channels */ 1,
+ /*.pref_frames_per_packet */ 1,
+ /*.max_frames_per_packet */ 1,
+ /*.init */ switch_g711u_init,
+ /*.encode */ switch_g711u_encode,
+ /*.decode */ switch_g711u_decode,
+ /*.destroy */ switch_g711u_destroy,
+ /*.next*/ &g711a_8k_60ms_implementation
+};
+
+static const switch_codec_implementation_t g711a_8k_20ms_implementation = {
/*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
/*.ianacode */ 8,
/*.iananame */ "PCMA",
/*.init */ switch_g711a_init,
/*.encode */ switch_g711a_encode,
/*.decode */ switch_g711a_decode,
- /*.destroy */ switch_g711a_destroy
+ /*.destroy */ switch_g711a_destroy,
+ /*.next*/ &g711a_8k_30ms_implementation
};
+static const switch_codec_implementation_t g711a_8k_10ms_implementation = {
+ /*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
+ /*.ianacode */ 8,
+ /*.iananame */ "PCMA",
+ /*.fmtp */ NULL,
+ /*.samples_per_second */ 8000,
+ /*.bits_per_second */ 64000,
+ /*.microseconds_per_frame */ 10000,
+ /*.samples_per_frame */ 80,
+ /*.bytes_per_frame */ 160,
+ /*.encoded_bytes_per_frame */ 80,
+ /*.number_of_channels */ 1,
+ /*.pref_frames_per_packet */ 1,
+ /*.max_frames_per_packet */ 1,
+ /*.init */ switch_g711u_init,
+ /*.encode */ switch_g711u_encode,
+ /*.decode */ switch_g711u_decode,
+ /*.destroy */ switch_g711u_destroy,
+ /*.next*/ &g711a_8k_20ms_implementation
+};
+
+
static const switch_codec_interface_t g711a_codec_interface = {
/*.interface_name */ "g711 alaw",
- /*.implementations */ &g711a_8k_implementation
+ /*.implementations */ &g711a_8k_10ms_implementation
};
static const switch_codec_interface_t g711u_codec_interface = {
/*.interface_name */ "g711 ulaw",
- /*.implementations */ &g711u_8k_implementation,
+ /*.implementations */ &g711u_8k_10ms_implementation,
/*.next */ &g711a_codec_interface
};
return SWITCH_STATUS_SUCCESS;
}
-static const switch_codec_implementation_t raw_32k_implementation = {
+static const switch_codec_implementation_t raw_32k_60ms_implementation = {
+ /*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
+ /*.ianacode */ 10,
+ /*.iananame */ "L16",
+ /*.fmtp */ NULL,
+ /*.samples_per_second = */ 32000,
+ /*.bits_per_second = */ 512000,
+ /*.microseconds_per_frame = */ 60000,
+ /*.samples_per_frame = */ 1920,
+ /*.bytes_per_frame = */ 3840,
+ /*.encoded_bytes_per_frame = */ 3840,
+ /*.number_of_channels = */ 1,
+ /*.pref_frames_per_packet = */ 1,
+ /*.max_frames_per_packet = */ 1,
+ /*.init = */ switch_raw_init,
+ /*.encode = */ switch_raw_encode,
+ /*.decode = */ switch_raw_decode,
+ /*.destroy = */ switch_raw_destroy
+ /*.next = */
+};
+
+static const switch_codec_implementation_t raw_32k_30ms_implementation = {
+ /*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
+ /*.ianacode */ 10,
+ /*.iananame */ "L16",
+ /*.fmtp */ NULL,
+ /*.samples_per_second = */ 32000,
+ /*.bits_per_second = */ 512000,
+ /*.microseconds_per_frame = */ 30000,
+ /*.samples_per_frame = */ 960,
+ /*.bytes_per_frame = */ 1920,
+ /*.encoded_bytes_per_frame = */ 1920,
+ /*.number_of_channels = */ 1,
+ /*.pref_frames_per_packet = */ 1,
+ /*.max_frames_per_packet = */ 1,
+ /*.init = */ switch_raw_init,
+ /*.encode = */ switch_raw_encode,
+ /*.decode = */ switch_raw_decode,
+ /*.destroy = */ switch_raw_destroy,
+ /*.next = */ &raw_32k_60ms_implementation
+};
+
+static const switch_codec_implementation_t raw_32k_20ms_implementation = {
/*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
/*.ianacode */ 10,
/*.iananame */ "L16",
/*.init = */ switch_raw_init,
/*.encode = */ switch_raw_encode,
/*.decode = */ switch_raw_decode,
- /*.destroy = */ switch_raw_destroy
+ /*.destroy = */ switch_raw_destroy,
+ /*.next = */ &raw_32k_30ms_implementation
};
-static const switch_codec_implementation_t raw_22k_implementation = {
+static const switch_codec_implementation_t raw_32k_10ms_implementation = {
+ /*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
+ /*.ianacode */ 10,
+ /*.iananame */ "L16",
+ /*.fmtp */ NULL,
+ /*.samples_per_second = */ 32000,
+ /*.bits_per_second = */ 512000,
+ /*.microseconds_per_frame = */ 10000,
+ /*.samples_per_frame = */ 320,
+ /*.bytes_per_frame = */ 960,
+ /*.encoded_bytes_per_frame = */ 960,
+ /*.number_of_channels = */ 1,
+ /*.pref_frames_per_packet = */ 1,
+ /*.max_frames_per_packet = */ 1,
+ /*.init = */ switch_raw_init,
+ /*.encode = */ switch_raw_encode,
+ /*.decode = */ switch_raw_decode,
+ /*.destroy = */ switch_raw_destroy,
+ /*.next = */ &raw_32k_20ms_implementation
+};
+
+static const switch_codec_implementation_t raw_22k_20ms_implementation = {
/*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
/*.ianacode */ 10,
/*.iananame */ "L16",
/*.encode = */ switch_raw_encode,
/*.decode = */ switch_raw_decode,
/*.destroy = */ switch_raw_destroy,
- /*.next = */ &raw_32k_implementation
+ /*.next = */ &raw_32k_10ms_implementation
+};
+
+static const switch_codec_implementation_t raw_16k_120ms_implementation = {
+ /*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
+ /*.ianacode */ 10,
+ /*.iananame */ "L16",
+ /*.fmtp */ NULL,
+ /*.samples_per_second */ 8000,
+ /*.bits_per_second */ 256000,
+ /*.microseconds_per_frame */ 120000,
+ /*.samples_per_frame */ 1920,
+ /*.bytes_per_frame */ 3840,
+ /*.encoded_bytes_per_frame */ 3840,
+ /*.number_of_channels */ 1,
+ /*.pref_frames_per_packet */ 1,
+ /*.max_frames_per_packet */ 1,
+ /*.init */ switch_raw_init,
+ /*.encode */ switch_raw_encode,
+ /*.decode */ switch_raw_decode,
+ /*.destroy */ switch_raw_destroy,
+ /*.next */ &raw_22k_20ms_implementation
+};
+
+static const switch_codec_implementation_t raw_16k_60ms_implementation = {
+ /*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
+ /*.ianacode */ 10,
+ /*.iananame */ "L16",
+ /*.fmtp */ NULL,
+ /*.samples_per_second */ 16000,
+ /*.bits_per_second */ 256000,
+ /*.microseconds_per_frame */ 60000,
+ /*.samples_per_frame */ 960,
+ /*.bytes_per_frame */ 1920,
+ /*.encoded_bytes_per_frame */ 1920,
+ /*.number_of_channels */ 1,
+ /*.pref_frames_per_packet */ 1,
+ /*.max_frames_per_packet */ 1,
+ /*.init */ switch_raw_init,
+ /*.encode */ switch_raw_encode,
+ /*.decode */ switch_raw_decode,
+ /*.destroy */ switch_raw_destroy,
+ /*.next */ &raw_16k_120ms_implementation
+};
+
+static const switch_codec_implementation_t raw_16k_30ms_implementation = {
+ /*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
+ /*.ianacode */ 10,
+ /*.iananame */ "L16",
+ /*.fmtp */ NULL,
+ /*.samples_per_second */ 16000,
+ /*.bits_per_second */ 256000,
+ /*.microseconds_per_frame */ 30000,
+ /*.samples_per_frame */ 480,
+ /*.bytes_per_frame */ 960,
+ /*.encoded_bytes_per_frame */ 960,
+ /*.number_of_channels */ 1,
+ /*.pref_frames_per_packet */ 1,
+ /*.max_frames_per_packet */ 1,
+ /*.init */ switch_raw_init,
+ /*.encode */ switch_raw_encode,
+ /*.decode */ switch_raw_decode,
+ /*.destroy */ switch_raw_destroy,
+ /*.next */ &raw_16k_60ms_implementation
};
-static const switch_codec_implementation_t raw_16k_implementation = {
+static const switch_codec_implementation_t raw_16k_20ms_implementation = {
/*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
/*.ianacode */ 10,
/*.iananame */ "L16",
/*.encode = */ switch_raw_encode,
/*.decode = */ switch_raw_decode,
/*.destroy = */ switch_raw_destroy,
- /*.next = */ &raw_22k_implementation
+ /*.next = */ &raw_16k_30ms_implementation
};
-static const switch_codec_implementation_t raw_8k_implementation = {
+static const switch_codec_implementation_t raw_16k_10ms_implementation = {
/*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
/*.ianacode */ 10,
/*.iananame */ "L16",
/*.fmtp */ NULL,
- /*.samples_per_second = */ 8000,
- /*.bits_per_second = */ 128000,
- /*.microseconds_per_frame = */ 20000,
+ /*.samples_per_second = */ 16000,
+ /*.bits_per_second = */ 256000,
+ /*.microseconds_per_frame = */ 10000,
/*.samples_per_frame = */ 160,
/*.bytes_per_frame = */ 320,
/*.encoded_bytes_per_frame = */ 320,
/*.encode = */ switch_raw_encode,
/*.decode = */ switch_raw_decode,
/*.destroy = */ switch_raw_destroy,
- /*.next = */ &raw_16k_implementation
+ /*.next = */ &raw_16k_20ms_implementation
};
+///////////////////////////////
-static const switch_codec_implementation_t raw_8k_30ms_implementation = {
+static const switch_codec_implementation_t raw_8k_120ms_implementation = {
/*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
/*.ianacode */ 10,
/*.iananame */ "L16",
/*.fmtp */ NULL,
/*.samples_per_second */ 8000,
- /*.bits_per_second */ 128000,
- /*.microseconds_per_frame */ 30000,
- /*.samples_per_frame */ 240,
- /*.bytes_per_frame */ 480,
- /*.encoded_bytes_per_frame */ 480,
+ /*.bits_per_second */ 512000,
+ /*.microseconds_per_frame */ 120000,
+ /*.samples_per_frame */ 960,
+ /*.bytes_per_frame */ 1920,
+ /*.encoded_bytes_per_frame */ 1920,
/*.number_of_channels */ 1,
/*.pref_frames_per_packet */ 1,
/*.max_frames_per_packet */ 1,
/*.encode */ switch_raw_encode,
/*.decode */ switch_raw_decode,
/*.destroy */ switch_raw_destroy,
- /*.next */ &raw_8k_implementation
+ /*.next */ &raw_16k_10ms_implementation
};
/*.encode */ switch_raw_encode,
/*.decode */ switch_raw_decode,
/*.destroy */ switch_raw_destroy,
- /*.next */ &raw_8k_30ms_implementation
+ /*.next */ &raw_8k_120ms_implementation
};
-static const switch_codec_implementation_t raw_8k_120ms_implementation = {
+static const switch_codec_implementation_t raw_8k_30ms_implementation = {
/*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
/*.ianacode */ 10,
/*.iananame */ "L16",
/*.fmtp */ NULL,
/*.samples_per_second */ 8000,
- /*.bits_per_second */ 512000,
- /*.microseconds_per_frame */ 120000,
- /*.samples_per_frame */ 960,
- /*.bytes_per_frame */ 1920,
- /*.encoded_bytes_per_frame */ 1920,
+ /*.bits_per_second */ 128000,
+ /*.microseconds_per_frame */ 30000,
+ /*.samples_per_frame */ 240,
+ /*.bytes_per_frame */ 480,
+ /*.encoded_bytes_per_frame */ 480,
/*.number_of_channels */ 1,
/*.pref_frames_per_packet */ 1,
/*.max_frames_per_packet */ 1,
/*.destroy */ switch_raw_destroy,
/*.next */ &raw_8k_60ms_implementation
};
+static const switch_codec_implementation_t raw_8k_20ms_implementation = {
+ /*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
+ /*.ianacode */ 10,
+ /*.iananame */ "L16",
+ /*.fmtp */ NULL,
+ /*.samples_per_second = */ 8000,
+ /*.bits_per_second = */ 128000,
+ /*.microseconds_per_frame = */ 20000,
+ /*.samples_per_frame = */ 160,
+ /*.bytes_per_frame = */ 320,
+ /*.encoded_bytes_per_frame = */ 320,
+ /*.number_of_channels = */ 1,
+ /*.pref_frames_per_packet = */ 1,
+ /*.max_frames_per_packet = */ 1,
+ /*.init = */ switch_raw_init,
+ /*.encode = */ switch_raw_encode,
+ /*.decode = */ switch_raw_decode,
+ /*.destroy = */ switch_raw_destroy,
+ /*.next */ &raw_8k_30ms_implementation
+};
+
+
+
+static const switch_codec_implementation_t raw_8k_10ms_implementation = {
+ /*.codec_type */ SWITCH_CODEC_TYPE_AUDIO,
+ /*.ianacode */ 10,
+ /*.iananame */ "L16",
+ /*.fmtp */ NULL,
+ /*.samples_per_second = */ 8000,
+ /*.bits_per_second = */ 128000,
+ /*.microseconds_per_frame = */ 10000,
+ /*.samples_per_frame = */ 80,
+ /*.bytes_per_frame = */ 160,
+ /*.encoded_bytes_per_frame = */ 160,
+ /*.number_of_channels = */ 1,
+ /*.pref_frames_per_packet = */ 1,
+ /*.max_frames_per_packet = */ 1,
+ /*.init = */ switch_raw_init,
+ /*.encode = */ switch_raw_encode,
+ /*.decode = */ switch_raw_decode,
+ /*.destroy = */ switch_raw_destroy,
+ /*.next */ &raw_8k_20ms_implementation
+};
static const switch_codec_interface_t raw_codec_interface = {
/*.interface_name */ "raw signed linear (16 bit)",
- /*.implementations */ &raw_8k_120ms_implementation
+ /*.implementations */ &raw_8k_10ms_implementation
};
static switch_loadable_module_interface_t raw_module_interface = {