aec_common.cpp
上传用户:gelin96
上传日期:2017-01-08
资源大小:20993k
文件大小:11k
源码类别:

MTK

开发平台:

C++ Builder

  1. /*****************************************************************************
  2. *  Copyright Statement:
  3. *  --------------------
  4. *  This software is protected by Copyright and the information contained
  5. *  herein is confidential. The software may not be copied and the information
  6. *  contained herein may not be used or disclosed except with the written
  7. *  permission of MediaTek Inc. (C) 2005
  8. *
  9. *  BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
  10. *  THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
  11. *  RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON
  12. *  AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
  13. *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
  14. *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
  15. *  NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
  16. *  SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
  17. *  SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH
  18. *  THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO
  19. *  NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S
  20. *  SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM.
  21. *
  22. *  BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE
  23. *  LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
  24. *  AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
  25. *  OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO
  26. *  MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
  27. *
  28. *  THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE
  29. *  WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF
  30. *  LAWS PRINCIPLES.  ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND
  31. *  RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER
  32. *  THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC).
  33. *
  34. *****************************************************************************/
  35. /*****************************************************************************
  36.  *
  37.  * Filename:
  38.  * ---------
  39.  *   AEC_common.cpp
  40.  *
  41.  * Project:
  42.  * --------
  43.  *   Maui META APP
  44.  *
  45.  * Description:
  46.  * ------------
  47.  *  Acoustic Echo Cancellation (AEC) calibration common source
  48.  *
  49.  * Author:
  50.  * -------
  51.  *  Andy Ueng (mtk00490)
  52.  *
  53.  *============================================================================
  54.  *             HISTORY
  55.  * Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
  56.  *------------------------------------------------------------------------------
  57.  * $Revision$
  58.  * $Modtime$
  59.  * $Log$
  60.  * 
  61.  *------------------------------------------------------------------------------
  62.  * Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
  63.  *============================================================================
  64.  ****************************************************************************/
  65. //---------------------------------------------------------------------------
  66. #include <IniFiles.hpp>
  67. #pragma hdrstop
  68. #ifndef _AEC_H_
  69. #include "aec.h"
  70. #endif
  71. #ifndef  _MAN_ACTIVE_H_
  72. #include "man_active.h"
  73. #endif
  74. #ifndef  _FT_UTILS_H_
  75. #include "ft_utils.h"
  76. #endif
  77. //---------------------------------------------------------------------------
  78. #pragma package(smart_init)
  79. //===========================================================================
  80. static CAECCMN*  g_aec_cmn_ptr;
  81. static bool g_bIsRunning = false;
  82. //===========================================================================
  83. CAECCMN::CAECCMN(void)
  84. {
  85.    g_bIsRunning = false;
  86.    ConfirmCallback = NULL;
  87. }
  88. //---------------------------------------------------------------------------
  89. CAECCMN::~CAECCMN()
  90. {
  91.    g_bIsRunning = false;
  92.    ConfirmCallback = NULL;
  93. }
  94. //---------------------------------------------------------------------------
  95. void  CAECCMN::Confirm(E_METAAPP_RESULT_T confirm_state)
  96. {
  97.     if (!g_bIsRunning)
  98.     {
  99.         return;
  100.     }
  101.     g_bIsRunning = false;
  102.     if (NULL == ConfirmCallback)
  103.     {
  104.         return;
  105.     }
  106.     m_eConfirmState = confirm_state;
  107.     ActiveMan->SetActiveFunction(ConfirmCallback);
  108. }
  109. //===========================================================================
  110. //////////////////////////////        File        ///////////////////////////
  111. //===========================================================================
  112. static const AnsiString as_SECTION_NAME = "AEC calibration";
  113. static const AnsiString as_KEY_NAME_NM_DBG = "Normal Mode Debug Parameter";
  114. static const AnsiString as_KEY_NAME_NM_UP_DIGITAL_GAIN = "Normal Mode uplink digital gain";
  115. static const AnsiString as_KEY_NAME_NM_DN_DIGITAL_GAIN = "Normal Mode downlink digital gain";
  116. static const AnsiString as_KEY_NAME_NM_KT_GAIN_STEP = "Normal Mode KT gain step";
  117. //--------------------------------------------------------------------------
  118. bool CAECCMN::REQ_Read_From_File(char *filename, unsigned char uc_se_mode_para_num)
  119. {
  120.     TIniFile   *ini_file;
  121.     AnsiString  as_data;
  122.     ini_file = new TIniFile(filename);
  123.     if (NULL == ini_file)
  124.     {
  125.         return false;
  126.     }
  127.     //-----------------------------------------------------------------
  128.     // loud speaker mode parameter
  129.     // Rx default FIR
  130.     as_data = ini_file->ReadString(as_SECTION_NAME,
  131.                                    "Rx default FIR",
  132.                                    "32767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0" );
  133.     String_To_Array_short(as_data.c_str(), m_sAecIni.m_sAecLsIni.s_fir_coeffs, SPEECH_FIR_45_TAPS_NUM);
  134.     // LoudSpeaker Mode Debug Parameter
  135.     as_data = ini_file->ReadString(as_SECTION_NAME,
  136.                                    "LoudSpeaker Mode Debug Parameter",
  137.                                    "0,479,0,0,0,0,400,0");
  138.     String_To_Array_UnsignedShort(as_data.c_str(), m_sAecIni.m_sAecLsIni.us_dbg, uc_se_mode_para_num);
  139.     // microphone default gain
  140.     m_sAecIni.m_sAecLsIni.uc_mic_gain = ini_file->ReadInteger(as_SECTION_NAME, "microphone default gain", 0);
  141.     // speaker default gain
  142.     m_sAecIni.m_sAecLsIni.uc_speaker_gain = ini_file->ReadInteger(as_SECTION_NAME, "speaker default gain", 18);
  143.     // uplink digital gain
  144.     m_sAecIni.m_sAecLsIni.us_up_digital_gain = ini_file->ReadInteger(as_SECTION_NAME, "uplink digital gain", 0x1400);
  145.     // downlink digital gain
  146.     m_sAecIni.m_sAecLsIni.us_dn_digital_gain = ini_file->ReadInteger(as_SECTION_NAME, "downlink digital gain", 0x1000);
  147.     AnsiString as_key_name;
  148.     for (int i=0; i<3; i++)
  149.     {
  150.         as_key_name = "KT gain step" +IntToStr(i+1);
  151.         m_sAecIni.m_sAecLsIni.us_kt_gain[i] = ini_file->ReadInteger(as_SECTION_NAME, as_key_name, 0x3fff);
  152.     }
  153.     //-----------------------------------------------------------------
  154.     // normal mode parameter
  155.     // debug parameter
  156.     as_data = ini_file->ReadString(as_SECTION_NAME,
  157.                                    as_KEY_NAME_NM_DBG,
  158.                                    "0,479,0,0,0,0,400,0");
  159.     String_To_Array_UnsignedShort(as_data.c_str(), m_sAecIni.m_sAecNmIni.us_dbg, uc_se_mode_para_num);
  160.     // uplink digital gain
  161.     m_sAecIni.m_sAecNmIni.us_up_digital_gain = (unsigned short) ini_file->ReadInteger(as_SECTION_NAME, as_KEY_NAME_NM_UP_DIGITAL_GAIN, 0x1400);
  162.     // downlink digital gain
  163.     m_sAecIni.m_sAecNmIni.us_dn_digital_gain = (unsigned short) ini_file->ReadInteger(as_SECTION_NAME, as_KEY_NAME_NM_DN_DIGITAL_GAIN, 0x1000);
  164.     for (int i=0; i<3; i++)
  165.     {
  166.         as_key_name = as_KEY_NAME_NM_KT_GAIN_STEP + IntToStr(i+1);
  167.         m_sAecIni.m_sAecNmIni.us_kt_gain[i] = ini_file->ReadInteger(as_SECTION_NAME, as_key_name, 0x3800);
  168.     }
  169.     delete ini_file;
  170.     return true;
  171. }
  172. //===========================================================================
  173. /////////////////////////////        Query        ///////////////////////////
  174. //===========================================================================
  175. bool CAECCMN::Query_AEC_Support_Start(void)
  176. {
  177.     g_aec_cmn_ptr = this;
  178.     g_bIsRunning = true;
  179.     bool support = Query_AEC_Support();
  180.     return support;
  181. }
  182. //--------------------------------------------------------------------------
  183. bool CAECCMN::Query_AEC_Support(void)
  184. {
  185.     META_RESULT  MetaResult = META_QueryIfFunctionSupportedByTarget_r(m_META_HANDLE_Obj.Get_MainHandle(), 300, "META_Audio_Tone_Loop_Back_Rec");
  186.     if (MetaResult != META_SUCCESS)
  187.     {
  188.         MetaResult = META_QueryIfFunctionSupportedByTarget_r(m_META_HANDLE_Obj.Get_MainHandle(), 300, "META_Audio_Tone_Loop_Back_Rec_2K_r");
  189.         if (MetaResult != META_SUCCESS)
  190.         {
  191.             return false;
  192.         }
  193.     }
  194.     return true;
  195. }
  196. //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  197. bool CAECCMN::Query_DRC_Support_Start(void)
  198. {
  199.     g_aec_cmn_ptr = this;
  200.     g_bIsRunning = true;
  201.     m_bDRCSupport = Query_DRC_Support();
  202.     return m_bDRCSupport;
  203. }
  204. //--------------------------------------------------------------------------
  205. bool CAECCMN::Query_DRC_Support(void)
  206. {
  207.     META_RESULT  MetaResult = META_QueryIfTargetSupportDRC_r(m_META_HANDLE_Obj.Get_MainHandle(), 300);
  208.     if (MetaResult != META_SUCCESS)
  209.     {
  210.         return false;
  211.     }
  212.     return true;
  213. }
  214. //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  215. bool CAECCMN::Query_Aec2kSupport_Start(void)
  216. {
  217.     META_RESULT MetaResult = META_QueryIfFunctionSupportedByTarget_r(m_META_HANDLE_Obj.Get_MainHandle(), 500, "META_Audio_Tone_Loop_Back_Rec_2K_r");
  218.     if (MetaResult != META_SUCCESS)
  219.     {
  220.         m_bAec2kSupport = false;
  221.     }
  222.     else
  223.     {
  224.         m_bAec2kSupport = true;
  225.     }
  226.     return m_bAec2kSupport;
  227. }
  228. //--------------------------------------------------------------------------
  229. bool CAECCMN::Query_AEC_NM_Support_Start(void)
  230. {
  231.     META_RESULT MetaResult = META_QueryIfFunctionSupportedByTarget_r(m_META_HANDLE_Obj.Get_MainHandle(), 500, "META_Audio_Tone_Loop_Back_Rec_2K_r");
  232.     if (MetaResult != META_SUCCESS)
  233.     {
  234.         m_bAecNMSupport = false;
  235.     }
  236.     else
  237.     {
  238.         m_bAecNMSupport = true;
  239.     }
  240.     return m_bAecNMSupport;
  241. }
  242. //===========================================================================
  243. ////////////////////////////  Global information  ///////////////////////////
  244. //===========================================================================
  245. E_METAAPP_RESULT_T CAECCMN::Get_ConfirmState(void)
  246. {
  247.     return m_eConfirmState;
  248. }
  249. //---------------------------------------------------------------------------
  250. void CAECCMN::Get_AecNmIni(S_AEC_NM_INI_T& aec_ini)
  251. {
  252.     aec_ini = m_sAecIni.m_sAecNmIni;
  253. }