blob: 851e010b2264ceffd58ece2d548e4cef9cf177b1 [file] [log] [blame]
George Gekov23c26272021-08-16 11:32:10 +01001//
2// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5#pragma once
6
7#include "MFCC.hpp"
8
9/* Class to provide DS-CNN specific MFCC calculation requirements. */
10class DsCnnMFCC : public MFCC
11{
12
13public:
14
15 explicit DsCnnMFCC(MfccParams& params)
16 : MFCC(params)
17 {}
18 DsCnnMFCC() = delete;
19 ~DsCnnMFCC() = default;
20};