]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
cleanup
authorBrian West <brian@freeswitch.org>
Sun, 27 Jan 2008 02:50:50 +0000 (02:50 +0000)
committerBrian West <brian@freeswitch.org>
Sun, 27 Jan 2008 02:50:50 +0000 (02:50 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7379 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/mod/codecs/mod_g729/mod_g729.c

index 612ab6d2662dd42a2df8431fe6b676d333817e8b..9d453ae1ef240cf58c1076f46d6711a4d7bcec63 100644 (file)
@@ -252,7 +252,7 @@ static switch_codec_implementation_t g729_30ms_8k_implementation = {
        /*.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 @@ static switch_codec_implementation_t g729_10ms_8k_implementation = {
        /*.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 @@ static switch_codec_implementation_t g729_8k_implementation = {
        /*.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)