mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-21 22:55:53 +00:00
21 lines
386 B
C++
21 lines
386 B
C++
//
|
|
// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
//
|
|
#pragma once
|
|
|
|
#include "MFCC.hpp"
|
|
|
|
/* Class to provide DS-CNN specific MFCC calculation requirements. */
|
|
class DsCnnMFCC : public MFCC
|
|
{
|
|
|
|
public:
|
|
|
|
explicit DsCnnMFCC(MfccParams& params)
|
|
: MFCC(params)
|
|
{}
|
|
DsCnnMFCC() = delete;
|
|
~DsCnnMFCC() = default;
|
|
};
|