parent
8d66a254da
commit
42c7537ce6
@ -1,11 +1,2 @@
|
||||
project(frontend)
|
||||
|
||||
add_library(frontend STATIC
|
||||
cmvn.cc
|
||||
db_norm.cc
|
||||
linear_spectrogram.cc
|
||||
audio_cache.cc
|
||||
feature_cache.cc
|
||||
)
|
||||
|
||||
target_link_libraries(frontend PUBLIC kaldi-matrix)
|
||||
add_subdirectory(audio)
|
@ -0,0 +1,11 @@
|
||||
project(frontend)
|
||||
|
||||
add_library(frontend STATIC
|
||||
cmvn.cc
|
||||
db_norm.cc
|
||||
linear_spectrogram.cc
|
||||
audio_cache.cc
|
||||
feature_cache.cc
|
||||
)
|
||||
|
||||
target_link_libraries(frontend PUBLIC kaldi-matrix)
|
@ -1,7 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "base/common.h"
|
||||
#include "frontend/frontend_itf.h"
|
||||
#include "frontend/audio/frontend_itf.h"
|
||||
#include "kaldi/matrix/kaldi-matrix.h"
|
||||
#include "kaldi/util/options-itf.h"
|
||||
|
@ -0,0 +1,4 @@
|
||||
#pragma once
|
||||
|
||||
#include "frontend/audio/cmvn.h"
|
||||
#include "frontend/audio/db_norm.h"
|
@ -1,4 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
#include "frontend/cmvn.h"
|
||||
#include "frontend/db_norm.h"
|
@ -1,15 +0,0 @@
|
||||
// Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// extract the window of kaldi feat.
|
Loading…
Reference in new issue