#ifndef COMMON_AUDIO_VAD_VAD_UNITTEST_H_
#define COMMON_AUDIO_VAD_VAD_UNITTEST_H_
#include "test_common.h"
static const int kModes[] = { 0, 1, 2, 3 };
static const size_t kModesSize = sizeof(kModes) / sizeof(*kModes);
static const int kRates[] = { 8000, 12000, 16000, 24000, 32000, 48000 };
static const size_t kRatesSize = sizeof(kRates) / sizeof(*kRates);
#define kMaxFrameLength 1440
static const size_t kFrameLengths[] = { 80, 120, 160, 240, 320, 480, 640, 960,
kMaxFrameLength };
static const size_t kFrameLengthsSize = sizeof(kFrameLengths) / sizeof(*kFrameLengths);
bool ValidRatesAndFrameLengths(int rate, size_t frame_length);
#endif