1 // 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. */ 10 class DsCnnMFCC : public MFCC 11 { 12 13 public: 14 DsCnnMFCC(MfccParams & params)15 explicit DsCnnMFCC(MfccParams& params) 16 : MFCC(params) 17 {} 18 DsCnnMFCC() = delete; 19 ~DsCnnMFCC() = default; 20 }; 21