[Freeswitch-svn] [commit] r7379 - freeswitch/trunk/src/mod/codecs/mod_g729
Freeswitch SVN
brian at freeswitch.org
Sat Jan 26 21:50:50 EST 2008
Author: brian
Date: Sat Jan 26 21:50:50 2008
New Revision: 7379
Modified:
freeswitch/trunk/src/mod/codecs/mod_g729/mod_g729.c
Log:
cleanup
Modified: freeswitch/trunk/src/mod/codecs/mod_g729/mod_g729.c
==============================================================================
--- freeswitch/trunk/src/mod/codecs/mod_g729/mod_g729.c (original)
+++ freeswitch/trunk/src/mod/codecs/mod_g729/mod_g729.c Sat Jan 26 21:50:50 2008
@@ -252,7 +252,7 @@
/*.encode */ switch_g729_encode,
/*.decode */ switch_g729_decode,
/*.destroy */ switch_g729_destroy,
- &g729_40ms_8k_implementation
+ /*.next */ &g729_40ms_8k_implementation
};
static switch_codec_implementation_t g729_10ms_8k_implementation = {
@@ -274,7 +274,7 @@
/*.encode */ switch_g729_encode,
/*.decode */ switch_g729_decode,
/*.destroy */ switch_g729_destroy,
- &g729_30ms_8k_implementation
+ /*.next */ &g729_30ms_8k_implementation
};
static switch_codec_implementation_t g729_8k_implementation = {
@@ -296,7 +296,7 @@
/*.encode */ switch_g729_encode,
/*.decode */ switch_g729_decode,
/*.destroy */ switch_g729_destroy,
- &g729_10ms_8k_implementation
+ /*.next */ &g729_10ms_8k_implementation
};
SWITCH_MODULE_LOAD_FUNCTION(mod_g729_load)
More information about the Freeswitch-svn
mailing list