/************************************
        SV_RES.c
/************************************/

#include"SV_RES.h"

// Processing
extern void SV_RES_Exe(ComplexInt* Outer1_sp,int nsp,SV_RES_T* p_struct)
{
    // bypass
}

// SetPar
void SV_RES_SetPar(   int flagTxsilenceAEC,
                                         int flagSingleTalk,
                                         SV_RES_T* p_struct
                                        )
{
    p_struct->flagTxsilenceAEC=flagTxsilenceAEC;
    p_struct->flagSingleTalk=flagSingleTalk;
}

// Init
extern void SV_RES_Init(int Fs, SV_RES_T* p_struct)
{
    // Init
    p_struct->flagTxsilenceAEC=0;
    p_struct->flagSingleTalk=0;
}

