]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
add g729a as a registered codec type.
authorBrian West <brian@freeswitch.org>
Wed, 10 Jan 2007 19:40:06 +0000 (19:40 +0000)
committerBrian West <brian@freeswitch.org>
Wed, 10 Jan 2007 19:40:06 +0000 (19:40 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3938 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/codecs/mod_g729/mod_g729.c

index d05c1ced6c921f5dcd012108b7bc277a7ffc68ca..90857372b3cc922f2ff2696177a5c230d6fd42d7 100644 (file)
@@ -262,9 +262,51 @@ static const switch_codec_implementation_t g729_8k_implementation = {
        &g729_10ms_8k_implementation
 };
 
+static const switch_codec_implementation_t g729a_10ms_8k_implementation = { 
+       /*.codec_type */ SWITCH_CODEC_TYPE_AUDIO, 
+       /*.ianacode */ 18, 
+       /*.iananame */ "G729a", 
+       /*.fmtp */ NULL,
+       /*.samples_per_second */ 8000, 
+       /*.bits_per_second */ 32000, 
+       /*.microseconds_per_frame */ 10000, 
+       /*.samples_per_frame */ 80, 
+       /*.bytes_per_frame */ 160, 
+       /*.encoded_bytes_per_frame */ 10, 
+       /*.number_of_channels */ 1, 
+       /*.pref_frames_per_packet */ 1, 
+       /*.max_frames_per_packet */ 1, 
+       /*.init */ switch_g729_init, 
+       /*.encode */ switch_g729_encode, 
+       /*.decode */ switch_g729_decode, 
+       /*.destroy */ switch_g729_destroy, 
+    &g729_8k_implementation
+};
+
+static const switch_codec_implementation_t g729a_8k_implementation = { 
+       /*.codec_type */ SWITCH_CODEC_TYPE_AUDIO, 
+       /*.ianacode */ 18, 
+       /*.iananame */ "G729a", 
+       /*.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 */ 20, 
+       /*.number_of_channels */ 1, 
+       /*.pref_frames_per_packet */ 1, 
+       /*.max_frames_per_packet */ 1, 
+       /*.init */ switch_g729_init, 
+       /*.encode */ switch_g729_encode, 
+       /*.decode */ switch_g729_decode, 
+       /*.destroy */ switch_g729_destroy, 
+       &g729a_10ms_8k_implementation
+};
+
 static const switch_codec_interface_t g729_codec_interface = {
        /*.interface_name */ "g729",
-       /*.implementations */ &g729_8k_implementation,
+       /*.implementations */ &g729a_8k_implementation,
        /*.next */ NULL
 };