summaryrefslogtreecommitdiff
path: root/server/mm_sound_mgr_codec.c
diff options
context:
space:
mode:
authorKibum Kim <kb0929.kim@samsung.com>2012-01-07 00:48:24 +0900
committerKibum Kim <kb0929.kim@samsung.com>2012-01-07 00:48:24 +0900
commitec7fd09612e09df3e76eed96af42446c07aae7fd (patch)
tree13f45c429a05fa1b797220893d2ab92bb9fd4c7b /server/mm_sound_mgr_codec.c
parent15ef29532556d1797e516bb3ecde2498a9b8c8e0 (diff)
downloadlibmm-sound-ec7fd09612e09df3e76eed96af42446c07aae7fd.tar.gz
libmm-sound-ec7fd09612e09df3e76eed96af42446c07aae7fd.tar.bz2
libmm-sound-ec7fd09612e09df3e76eed96af42446c07aae7fd.zip
Git init
Diffstat (limited to 'server/mm_sound_mgr_codec.c')
-rw-r--r--server/mm_sound_mgr_codec.c684
1 files changed, 684 insertions, 0 deletions
diff --git a/server/mm_sound_mgr_codec.c b/server/mm_sound_mgr_codec.c
new file mode 100644
index 0000000..83b5a46
--- /dev/null
+++ b/server/mm_sound_mgr_codec.c
@@ -0,0 +1,684 @@
+/*
+ * libmm-sound
+ *
+ * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
+ *
+ * Contact: Seungbae Shin <seungbae.shin@samsung.com>
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <pthread.h>
+
+#include <mm_source.h>
+#include <mm_error.h>
+#include <mm_types.h>
+#include <mm_debug.h>
+#include <mm_ipc.h>
+
+#include "include/mm_sound_mgr_common.h"
+#include "include/mm_sound_mgr_codec.h"
+#include "include/mm_sound_plugin_codec.h"
+#include "include/mm_sound_thread_pool.h"
+
+
+
+#define _ENABLE_KEYTONE /* Temporal test code */
+
+typedef struct {
+ int (*callback)(int, void *, void *); /* msg_type(pid) client callback & client data info */
+ void *param;
+ int pid;
+ void *msgcallback;
+ void *msgdata;
+ MMHandleType plughandle;
+
+ int pluginid;
+ int status;
+ int session_type;
+ int session_handle;
+ } __mmsound_mgr_codec_handle_t;
+
+static MMSoundPluginType *g_codec_plugins = NULL;
+static __mmsound_mgr_codec_handle_t g_slots[MANAGER_HANDLE_MAX];
+static mmsound_codec_interface_t g_plugins[MM_SOUND_SUPPORTED_CODEC_NUM];
+static pthread_mutex_t g_slot_mutex;
+
+static int _MMSoundMgrCodecStopCallback(int param);
+static int _MMSoundMgrCodecFindKeytoneSlot(int *slotid);
+static int _MMSoundMgrCodecGetEmptySlot(int *slotid);
+static int _MMSoundMgrCodecFindLocaleSlot(int *slotid);
+static int _MMSoundMgrCodecRegisterInterface(MMSoundPluginType *plugin);
+
+#define STATUS_IDLE 0
+#define STATUS_KEYTONE 1
+#define STATUS_LOCALE 2
+#define STATUS_SOUND 3
+
+#define SOUND_SLOT_START 0
+
+
+
+ASM_cb_result_t
+sound_codec_asm_callback(int handle, ASM_event_sources_t event_src, ASM_sound_commands_t command, unsigned int sound_status, void* cb_data)
+{
+ int slotid = (int)cb_data;
+ int result = MM_ERROR_NONE;
+ ASM_cb_result_t cb_res = ASM_CB_RES_NONE;
+
+ debug_log("Got audio session callback msg for session_handle %d\n", handle);
+
+ switch(command)
+ {
+ case ASM_COMMAND_STOP:
+ case ASM_COMMAND_PAUSE:
+ debug_log("Got msg from asm to Stop or Pause %d\n", command);
+ result = MMSoundMgrCodecStop(slotid);
+ cb_res = ASM_CB_RES_STOP;
+ break;
+ case ASM_COMMAND_RESUME:
+ case ASM_COMMAND_PLAY:
+ debug_log("Got msg from asm to Play or Resume %d\n", command);
+ cb_res = ASM_CB_RES_NONE;;
+ default:
+ break;
+ }
+ return cb_res;
+}
+
+
+int MMSoundMgrCodecInit(const char *targetdir)
+{
+ int loop = 0;
+ int count = 0;
+
+ debug_enter("\n");
+
+ memset (g_slots, 0, sizeof(g_slots));
+
+ if(pthread_mutex_init(&g_slot_mutex, NULL))
+ {
+ debug_error("pthread_mutex_init failed [%s][%d]\n", __func__, __LINE__);
+ return MM_ERROR_SOUND_INTERNAL;
+ }
+
+ for (count = 0; count < MANAGER_HANDLE_MAX; count++)
+ {
+ g_slots[count].status = STATUS_IDLE;
+ g_slots[count].plughandle = -1;
+ }
+
+ if (g_codec_plugins)
+ {
+ debug_warning("Please Check Init twice\n");
+ MMSoundPluginRelease(g_codec_plugins);
+ }
+
+ MMSoundPluginScan(targetdir, MM_SOUND_PLUGIN_TYPE_CODEC, &g_codec_plugins);
+
+ while (g_codec_plugins[loop].type != MM_SOUND_PLUGIN_TYPE_NONE)
+ {
+ _MMSoundMgrCodecRegisterInterface(&g_codec_plugins[loop++]);
+ }
+
+ debug_leave("\n");
+ return MM_ERROR_NONE;
+}
+
+int MMSoundMgrCodecFini(void)
+{
+ debug_enter("\n");
+
+ memset(g_plugins, 0, sizeof(mmsound_codec_interface_t) * MM_SOUND_SUPPORTED_CODEC_NUM);
+ MMSoundPluginRelease(g_codec_plugins);
+ g_codec_plugins = NULL;
+ pthread_mutex_destroy(&g_slot_mutex);
+
+ debug_leave("\n");
+ return MM_ERROR_NONE;
+}
+
+
+int MMSoundMgrCodecPlay(int *slotid, const mmsound_mgr_codec_param_t *param)
+{
+ int count = 0;
+ mmsound_codec_info_t info;
+ mmsound_codec_param_t codec_param;
+ int err = MM_ERROR_NONE;
+
+ debug_enter("\n");
+
+ debug_msg("DTMF : [%d]\n",param->dtmf);
+ debug_msg("Repeat : [%d]\n",param->repeat_count);
+ debug_msg("Volume : [%f]\n",param->volume);
+
+ for (count = 0; g_plugins[count].GetSupportTypes; count++)
+ {
+ /* Find codec */
+ if (g_plugins[count].Parse(param->source, &info) == MM_ERROR_NONE)
+ break;
+ }
+
+ debug_msg("Find plugin codec ::: [%d]\n", count); /*The count num means codec type WAV, MP3 */
+
+ if (g_plugins[count].GetSupportTypes == NULL) /* Codec not found */
+ {
+ debug_error("unsupported file type %d\n", count);
+ err = MM_ERROR_SOUND_UNSUPPORTED_MEDIA_TYPE;
+ goto cleanup;
+ }
+
+ /* KeyTone */
+ if (param->keytone == 1)
+ {
+ /* Find keytone slot */
+ err = _MMSoundMgrCodecFindKeytoneSlot(slotid);
+ /* Not First connect */
+ if (err == MM_ERROR_NONE)
+ {
+ if(g_slots[*slotid].status != STATUS_IDLE)
+ {
+ MMSoundMgrCodecStop(*slotid);
+ }
+ debug_msg("Key tone : Stop to Play !!!\n");
+ }
+ codec_param.keytone = param->keytone;
+ }
+ else if (param->keytone == 2)
+ {
+ /* Find keytone slot */
+ err = _MMSoundMgrCodecFindLocaleSlot(slotid);
+ /* Not First connect */
+ if (err == MM_ERROR_NONE)
+ {
+ if(g_slots[*slotid].status != STATUS_IDLE)
+ {
+ MMSoundMgrCodecStop(*slotid);
+ }
+ debug_msg("Key tone : Stop to Play !!!\n");
+ }
+ codec_param.keytone = param->keytone;
+ }
+ else
+ {
+ debug_msg("Get New handle\n");
+ codec_param.keytone = 0;
+ }
+
+ err = _MMSoundMgrCodecGetEmptySlot(slotid);
+ if(err != MM_ERROR_NONE)
+ {
+ debug_error("Empty g_slot is not found\n");
+ goto cleanup;
+ }
+
+ codec_param.dtmf = param->dtmf;
+ codec_param.volume_table = param->volume_table;
+ codec_param.repeat_count = param->repeat_count;
+ codec_param.volume = param->volume;
+ codec_param.source = param->source;
+ codec_param.priority = param->priority;
+ codec_param.stop_cb = _MMSoundMgrCodecStopCallback;
+ codec_param.param = *slotid;
+ codec_param.pid = (int)param->param;
+ codec_param.handle_route = param->handle_route;
+
+ pthread_mutex_lock(&g_slot_mutex);
+ debug_msg("After Slot_mutex LOCK\n");
+
+ /* In case of KEYTONE */
+ if (param->keytone == 1)
+ g_slots[*slotid].status = STATUS_KEYTONE;
+
+ /* In case of LOCALE */
+ if (param->keytone == 2) /* KeyTone */
+ g_slots[*slotid].status = STATUS_LOCALE;
+
+
+ //
+ /*
+ * Register ASM here
+ */
+ int errorcode = 0;
+ int need_asm_unregister = 0;
+
+ if(param->session_type != ASM_EVENT_CALL && param->session_type != ASM_EVENT_VIDEOCALL)
+ {
+ if(!ASM_register_sound((int)param->param, &param->session_handle, param->session_type, ASM_STATE_PLAYING, sound_codec_asm_callback, (void*)*slotid, ASM_RESOURCE_NONE, &errorcode))
+ {
+ debug_critical("ASM_register_sound() failed %d\n", errorcode);
+ pthread_mutex_unlock(&g_slot_mutex);
+ return MM_ERROR_POLICY_INTERNAL;
+ }
+ }
+ //
+
+ /* Codec id WAV or MP3 */
+ g_slots[*slotid].pluginid = count;
+ g_slots[*slotid].callback = param->callback;
+ g_slots[*slotid].msgcallback = param->msgcallback;
+ g_slots[*slotid].msgdata = param->msgdata;
+ g_slots[*slotid].param = param->param; /* This arg is used callback data */
+ g_slots[*slotid].session_type = param->session_type;
+ g_slots[*slotid].session_handle = param->session_handle;
+
+ debug_msg("Using Slotid : [%d] Slot Status : [%d]\n", *slotid, g_slots[*slotid].status);
+
+
+
+ err = g_plugins[g_slots[*slotid].pluginid].Create(&codec_param, &info, &(g_slots[*slotid].plughandle));
+ debug_msg("Created audio handle : [%d]\n", g_slots[*slotid].plughandle);
+ if (err != MM_ERROR_NONE)
+ {
+ debug_error("Plugin create fail : 0x%08X\n", err);
+ g_slots[*slotid].status = STATUS_IDLE;
+ pthread_mutex_unlock(&g_slot_mutex);
+ debug_warning("After Slot_mutex UNLOCK\n");
+ need_asm_unregister = 1;
+ goto cleanup;
+ }
+
+ err = g_plugins[g_slots[*slotid].pluginid].Play(g_slots[*slotid].plughandle);
+ if (err != MM_ERROR_NONE)
+ {
+ debug_error("Fail to play : 0x%08X\n", err);
+ g_plugins[g_slots[*slotid].pluginid].Destroy(g_slots[*slotid].plughandle);
+ need_asm_unregister = 1;
+ }
+
+ pthread_mutex_unlock(&g_slot_mutex);
+ debug_msg("After Slot_mutex UNLOCK\n");
+
+cleanup:
+ if(param->session_type != ASM_EVENT_CALL && param->session_type != ASM_EVENT_VIDEOCALL && need_asm_unregister == 1)
+ {
+ if(!ASM_unregister_sound(param->session_handle, param->session_type, &errorcode))
+ {
+ debug_error("Unregister sound failed 0x%X\n", errorcode);
+ return MM_ERROR_POLICY_INTERNAL;
+ }
+ }
+
+ debug_leave("\n");
+
+ return err;
+}
+
+#define DTMF_PLUGIN_COUNT 2
+int MMSoundMgrCodecPlayDtmf(int *slotid, const mmsound_mgr_codec_param_t *param)
+{
+ int count = 0;
+ int *codec_type;
+ mmsound_codec_info_t info;
+ mmsound_codec_param_t codec_param;
+ int err = MM_ERROR_NONE;
+
+ debug_enter("\n");
+
+ debug_msg("DTMF : [%d]\n",param->dtmf);
+ debug_msg("Repeat : [%d]\n",param->repeat_count);
+ debug_msg("Volume : [%f]\n",param->volume);
+
+ for (count = 0; g_plugins[count].GetSupportTypes; count++)
+ {
+ /* Find codec */
+ codec_type = g_plugins[count].GetSupportTypes();
+ if(codec_type && (MM_SOUND_SUPPORTED_CODEC_DTMF == codec_type[0]))
+ break;
+ }
+
+ debug_msg("Find plugin codec ::: [%d]\n", count); /*The count num means codec type DTMF */
+
+ if (g_plugins[count].GetSupportTypes == NULL) /* Codec not found */
+ {
+ debug_error("unsupported file type %d\n", count);
+ printf("unsupported file type %d\n", count);
+ err = MM_ERROR_SOUND_UNSUPPORTED_MEDIA_TYPE;
+ goto cleanup;
+ }
+
+ debug_msg("Get New handle\n");
+ codec_param.keytone = 0;
+
+ err = _MMSoundMgrCodecGetEmptySlot(slotid);
+ if(err != MM_ERROR_NONE)
+ {
+ debug_error("Empty g_slot is not found\n");
+ goto cleanup;
+ }
+
+ codec_param.dtmf = param->dtmf;
+ codec_param.priority = 0;
+ codec_param.volume_table = param->volume_table;
+ codec_param.repeat_count = param->repeat_count;
+ codec_param.volume = param->volume;
+ codec_param.stop_cb = _MMSoundMgrCodecStopCallback;
+ codec_param.param = *slotid;
+ codec_param.pid = (int)param->param;
+
+ pthread_mutex_lock(&g_slot_mutex);
+ debug_msg("After Slot_mutex LOCK\n");
+
+ //
+ /*
+ * Register ASM here
+ */
+ int errorcode = 0;
+ int need_asm_unregister = 0;
+
+ if(param->session_type != ASM_EVENT_CALL && param->session_type != ASM_EVENT_VIDEOCALL)
+ {
+ if(!ASM_register_sound((int)param->param, &param->session_handle, param->session_type, ASM_STATE_PLAYING, sound_codec_asm_callback, (void*)*slotid, ASM_RESOURCE_NONE, &errorcode))
+ {
+ debug_critical("ASM_register_sound() failed %d\n", errorcode);
+ pthread_mutex_unlock(&g_slot_mutex);
+ return MM_ERROR_POLICY_INTERNAL;
+ }
+ }
+
+ g_slots[*slotid].pluginid = count;
+ g_slots[*slotid].callback = param->callback;
+ g_slots[*slotid].param = param->param; /* This arg is used callback data */
+ g_slots[*slotid].session_type = param->session_type;
+ g_slots[*slotid].session_handle = param->session_handle;
+
+ debug_msg("Using Slotid : [%d] Slot Status : [%d]\n", *slotid, g_slots[*slotid].status);
+
+ err = g_plugins[g_slots[*slotid].pluginid].Create(&codec_param, &info, &(g_slots[*slotid].plughandle));
+ debug_msg("Created audio handle : [%d]\n", g_slots[*slotid].plughandle);
+ if (err != MM_ERROR_NONE)
+ {
+ debug_error("Plugin create fail : 0x%08X\n", err);
+ g_slots[*slotid].status = STATUS_IDLE;
+ pthread_mutex_unlock(&g_slot_mutex);
+ debug_warning("After Slot_mutex UNLOCK\n");
+ need_asm_unregister = 1;
+ goto cleanup;
+ }
+
+ err = g_plugins[g_slots[*slotid].pluginid].Play(g_slots[*slotid].plughandle);
+ if (err != MM_ERROR_NONE)
+ {
+ debug_error("Fail to play : 0x%08X\n", err);
+ g_plugins[g_slots[*slotid].pluginid].Destroy(g_slots[*slotid].plughandle);
+ need_asm_unregister = 1;
+ };
+
+ pthread_mutex_unlock(&g_slot_mutex);
+
+ debug_msg("Using Slotid : [%d] Slot Status : [%d]\n", *slotid, g_slots[*slotid].status);
+ debug_msg("After Slot_mutex UNLOCK\n")
+
+cleanup:
+ debug_leave("\n");
+
+ return err;
+}
+
+
+int MMSoundMgrCodecStop(const int slotid)
+{
+ int err = MM_ERROR_NONE;
+
+ debug_enter("(Slotid : [%d])\n", slotid);
+
+ if (slotid < 0 || MANAGER_HANDLE_MAX <= slotid)
+ {
+ return MM_ERROR_INVALID_ARGUMENT;
+ }
+
+ pthread_mutex_lock (&g_slot_mutex);
+ debug_msg("After Slot_mutex LOCK\n");
+ if (g_slots[slotid].status == STATUS_IDLE)
+ {
+ err = MM_ERROR_SOUND_INVALID_STATE;
+ debug_warning("The playing slots is not found, Slot ID : [%d]\n", slotid);
+ goto cleanup;
+ }
+ debug_msg("Found slot, Slotid [%d] State [%d]\n", slotid, g_slots[slotid].status);
+
+ err = g_plugins[g_slots[slotid].pluginid].Stop(g_slots[slotid].plughandle);
+ if (err != MM_ERROR_NONE)
+ {
+ debug_error("Fail to STOP Code : 0x%08X\n", err);
+ }
+ debug_msg("Found slot, Slotid [%d] State [%d]\n", slotid, g_slots[slotid].status);
+cleanup:
+ pthread_mutex_unlock(&g_slot_mutex);
+ debug_msg("After Slot_mutex UNLOCK\n");
+ debug_leave("(err : 0x%08X)\n", err);
+
+ return err;
+}
+
+static int _MMSoundMgrCodecStopCallback(int param)
+{
+ int err = MM_ERROR_NONE;
+
+ debug_enter("(Slot : %d)\n", param);
+
+ pthread_mutex_lock(&g_slot_mutex);
+ debug_msg("[CODEC MGR] Slot_mutex lock done\n");
+
+
+ /*
+ * Unregister ASM here
+ */
+
+ int errorcode = 0;
+
+ if(g_slots[param].session_type != ASM_EVENT_CALL && g_slots[param].session_type != ASM_EVENT_VIDEOCALL)
+ {
+ debug_msg("[CODEC MGR] ASM unregister\n");
+ if(!ASM_unregister_sound(g_slots[param].session_handle, g_slots[param].session_type, &errorcode))
+ {
+ debug_error("[CODEC MGR] Unregister sound failed 0x%X\n", errorcode);
+ }
+ }
+
+
+
+ if (g_slots[param].msgcallback)
+ {
+ debug_msg("[CODEC MGR] msgcallback : %p\n", g_slots[param].msgcallback);
+ debug_msg("[CODEC MGR] msg data : %p\n", g_slots[param].msgdata);
+ debug_msg("[CODEC MGR] mgr codec callback : %p\n", g_slots[param].callback);
+ g_slots[param].callback((int)g_slots[param].param, g_slots[param].msgcallback, g_slots[param].msgdata); /*param means client msg_type */
+ }
+ debug_msg("Client callback msg_type (instance) : [%d]\n", (int)g_slots[param].param);
+ debug_msg("Handle allocated handle : [0x%08X]\n", g_slots[param].plughandle);
+ err = g_plugins[g_slots[param].pluginid].Destroy(g_slots[param].plughandle);
+ if (err < 0 ) {
+ debug_critical("[CODEC MGR] Fail to destroy slot number : [%d] err [0x%x]\n", param, err);
+ }
+ memset(&g_slots[param], 0, sizeof(__mmsound_mgr_codec_handle_t));
+ g_slots[param].status = STATUS_IDLE;
+ pthread_mutex_unlock(&g_slot_mutex);
+ debug_msg("[CODEC MGR] Slot_mutex done\n");
+
+ return err;
+}
+
+static int _MMSoundMgrCodecFindKeytoneSlot(int *slotid)
+{
+ int count = 0;
+ int err = MM_ERROR_NONE;
+
+ debug_enter("\n");
+
+ pthread_mutex_lock(&g_slot_mutex);
+ debug_warning("After Slot_mutex LOCK\n");
+
+ for (count = SOUND_SLOT_START; count < MANAGER_HANDLE_MAX ; count++)
+ {
+ if (g_slots[count].status == STATUS_KEYTONE)
+ {
+ break;
+ }
+ }
+ pthread_mutex_unlock(&g_slot_mutex);
+ debug_warning("After Slot_mutex UNLOCK\n");
+ if (count < MANAGER_HANDLE_MAX)
+ {
+ debug_msg("Found keytone handle allocated (Slot : [%d])\n", count);
+ *slotid = count;
+ err = MM_ERROR_NONE;
+ }
+ else
+ {
+ debug_warning("Handle is full handle [KEY TONE] : [%d]\n", count);
+ err = MM_ERROR_SOUND_INTERNAL;
+ }
+
+ debug_leave("\n");
+
+ return err;
+}
+
+static int _MMSoundMgrCodecFindLocaleSlot(int *slotid)
+{
+ int count = 0;
+ int err = MM_ERROR_NONE;
+
+ debug_enter("\n");
+
+ pthread_mutex_lock(&g_slot_mutex);
+ debug_warning("After Slot_mutex LOCK\n");
+
+ for (count = SOUND_SLOT_START; count < MANAGER_HANDLE_MAX ; count++)
+ {
+ if (g_slots[count].status == STATUS_LOCALE)
+ {
+ break;
+ }
+ }
+ pthread_mutex_unlock(&g_slot_mutex);
+
+ debug_warning("After Slot_mutex UNLOCK\n");
+ if (count < MANAGER_HANDLE_MAX)
+ {
+ debug_msg("Found locale handle allocated (Slot : [%d])\n", count);
+ *slotid = count;
+ err = MM_ERROR_NONE;
+ }
+ else
+ {
+ debug_warning("Handle is full handle [KEY TONE] \n");
+ err = MM_ERROR_SOUND_INTERNAL;
+ }
+
+ debug_leave("\n");
+
+ return err;
+}
+
+static int _MMSoundMgrCodecGetEmptySlot(int *slot)
+{
+ int count = 0;
+ int err = MM_ERROR_NONE;
+
+ debug_enter("\n");
+ debug_msg("Codec slot ID : [%d]\n", *slot);
+ pthread_mutex_lock(&g_slot_mutex);
+ debug_msg("After Slot_mutex LOCK\n");
+
+ for (count = SOUND_SLOT_START; count < MANAGER_HANDLE_MAX ; count++)
+ {
+ if (g_slots[count].status == STATUS_IDLE)
+ {
+ g_slots[count].status = STATUS_SOUND;
+ break;
+ }
+ }
+ pthread_mutex_unlock(&g_slot_mutex);
+ debug_msg("After Slot_mutex UNLOCK\n");
+
+
+ if (count < MANAGER_HANDLE_MAX)
+ {
+ debug_msg("New handle allocated (codec slot ID : [%d])\n", count);
+ *slot = count;
+ err = MM_ERROR_NONE;
+ }
+ else
+ {
+ debug_warning("Handle is full handle : [%d]\n", count);
+ *slot = -1;
+ /* Temporal code for reset */
+ while(count--)
+ {
+ g_slots[count].status = STATUS_IDLE;
+ }
+ err = MM_ERROR_SOUND_INTERNAL;
+ }
+
+ debug_leave("\n");
+
+ return err;
+}
+
+static int _MMSoundMgrCodecRegisterInterface(MMSoundPluginType *plugin)
+{
+ int err = MM_ERROR_NONE;
+ int count = 0;
+ void *getinterface = NULL;
+
+ debug_enter("\n");
+
+ /* find emptry slot */
+ for (count = 0; count < MM_SOUND_SUPPORTED_CODEC_NUM; count++)
+ {
+ if (g_plugins[count].GetSupportTypes == NULL)
+ break;
+ }
+
+ if (count == MM_SOUND_SUPPORTED_CODEC_NUM)
+ {
+ debug_critical("The plugin support type is not valid\n");
+ return MM_ERROR_COMMON_OUT_OF_RANGE;
+ }
+
+ debug_msg("Empty slot find : %d\n", count);
+
+ err = MMSoundPluginGetSymbol(plugin, CODEC_GET_INTERFACE_FUNC_NAME, &getinterface);
+ if (err != MM_ERROR_NONE)
+ {
+ debug_error("Get Symbol CODEC_GET_INTERFACE_FUNC_NAME is fail : %x\n", err);
+ goto cleanup;
+ }
+ debug_msg("Getinterface name : %s\n", (char*)getinterface );
+
+ err = MMSoundPlugCodecCastGetInterface(getinterface)(&g_plugins[count]);
+ if (err != MM_ERROR_NONE)
+ {
+ debug_error("Get interface fail : %x\n", err);
+
+cleanup:
+ /* If error occur, clean interface */
+ memset(&g_plugins[count], 0, sizeof(mmsound_codec_interface_t));
+ }
+ else
+ {
+ if (g_plugins[count].SetThreadPool)
+ g_plugins[count].SetThreadPool(MMSoundThreadPoolRun);
+ }
+
+ debug_leave("\n");
+
+ return err;
+}
+