/************************************
        SV_RemoveAccTick.c
/************************************/

#include"SV_RemoveAccTick.h"

// Processing
extern void SV_RemoveAccTick_Exe(ComplexInt* Outer1_sp,int nsp,SV_RemoveAccTick_T* p_struct)
{
    // do nothing
}

// SetPar
void SV_RemoveAccTick_SetPar(   int frmVAD_Rx_AEC,
                                                        SV_RemoveAccTick_T* p_struct
                                                        )
{
    p_struct->frmVAD_Rx_AEC=frmVAD_Rx_AEC;
}

// Init
extern void SV_RemoveAccTick_Init(int Fs, SV_RemoveAccTick_T* p_struct)
{
    // Init
    p_struct->frmVAD_Rx_AEC=0;
}

