/************************************
        SV_RemoveAccTick.h
/************************************/

#include "SV_common_include.h"

typedef struct{
    int frmVAD_Rx_AEC;
} SV_RemoveAccTick_T;

// Processing
extern void SV_RemoveAccTick_Exe(ComplexInt* inout_sp,int nsp,SV_RemoveAccTick_T* p_struct);
//inout_sp - input and output spectrum
//p_struct - pointer to the module internal structure

// Setting parameters
extern void SV_RemoveAccTick_SetPar(     int frmVAD_Rx_AEC,
                                                                SV_RemoveAccTick_T* p_struct
                                                                );
// frmVAD_Rx_AEC - ???
// p_struct - pointer to the module structure (to be initialized)

// Init
extern void SV_RemoveAccTick_Init(int Fs, SV_RemoveAccTick_T* p_struct);
// Fs - {8000, 16000}
// p_struct - pointer to the module structure (to be initialized)
