[Freeswitch-svn] [commit] r6126 - freeswitch/trunk/src/mod/codecs/mod_lpc10

Freeswitch SVN mikej at freeswitch.org
Thu Nov 1 09:04:32 EDT 2007


Author: mikej
Date: Thu Nov  1 09:04:32 2007
New Revision: 6126

Modified:
   freeswitch/trunk/src/mod/codecs/mod_lpc10/mod_lpc10.c

Log:
fix mod_lpc10 module build (part of MODAPP-44)

Modified: freeswitch/trunk/src/mod/codecs/mod_lpc10/mod_lpc10.c
==============================================================================
--- freeswitch/trunk/src/mod/codecs/mod_lpc10/mod_lpc10.c	(original)
+++ freeswitch/trunk/src/mod/codecs/mod_lpc10/mod_lpc10.c	Thu Nov  1 09:04:32 2007
@@ -24,14 +24,18 @@
  * Contributor(s):
  * 
  * Brian K. West <brian.west at mac.com>
+ * Bret McDanel <trixter AT 0xdecafbad.com>
  * 
  *
  * mod_lpc10.c -- LPC10 Codec Module
  *
  */
 
-#include "switch.h"
-#include "lpc10.h"
+#include <switch.h>
+#include <lpc10.h>
+
+SWITCH_MODULE_LOAD_FUNCTION(mod_lpc10_load);
+SWITCH_MODULE_DEFINITION(mod_lpc10, mod_lpc10_load, NULL, NULL);
 
 enum {
 	SamplesPerFrame = 180,
@@ -44,8 +48,6 @@
 #define   MaxSampleValue   32767.0
 #define   MinSampleValue   -32767.0
 
-static const char modname[] = "mod_lpc10";
-
 struct lpc10_context {
 	struct lpc10_encoder_state encoder_object;
 	struct lpc10_decoder_state decoder_object;
@@ -177,24 +179,13 @@
 	/*.destroy */ switch_lpc10_destroy,
 };
 
-const switch_codec_interface_t lpc10_codec_interface = {
-	/*.interface_name */ "LPC-10 2.4kbps",
-	/*.implementations */ &lpc10_implementation,
-};
-
-static switch_loadable_module_interface_t lpc10_module_interface = {
-	/*.module_name */ modname,
-	/*.endpoint_interface */ NULL,
-	/*.timer_interface */ NULL,
-	/*.dialplan_interface */ NULL,
-	/*.codec_interface */ &lpc10_codec_interface,
-	/*.application_interface */ NULL
-};
-
-SWITCH_MOD_DECLARE(switch_status_t) switch_module_load(const switch_loadable_module_interface_t **module_interface, char *filename)
+SWITCH_MODULE_LOAD_FUNCTION(mod_lpc10_load)
 {
+	switch_codec_interface_t *codec_interface;
+
 	/* connect my internal structure to the blank pointer passed to me */
-	*module_interface = &lpc10_module_interface;
+	*module_interface = switch_loadable_module_create_module_interface(pool, modname);
+	SWITCH_ADD_CODEC(codec_interface, "LPC-10 2.4kbps", &lpc10_implementation);
 
 	/* indicate that the module should continue to be loaded */
 	return SWITCH_STATUS_SUCCESS;



More information about the Freeswitch-svn mailing list