parent
3572cacfd3
commit
760e5d4418
@ -0,0 +1,61 @@
|
|||||||
|
// 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.
|
||||||
|
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "base/common.h"
|
||||||
|
#include "frontend/feature_extractor_interface.h"
|
||||||
|
|
||||||
|
namespace ppspeech {
|
||||||
|
|
||||||
|
// waves cache
|
||||||
|
class AudioCache : public FeatureExtractorInterface {
|
||||||
|
public:
|
||||||
|
explicit AudioCache(int buffer_size = kint16max);
|
||||||
|
|
||||||
|
virtual void Accept(const kaldi::VectorBase<BaseFloat>& waves);
|
||||||
|
|
||||||
|
virtual bool Read(kaldi::Vector<kaldi::BaseFloat>* waves);
|
||||||
|
|
||||||
|
// the audio dim is 1, one sample
|
||||||
|
virtual size_t Dim() const { return 1; }
|
||||||
|
|
||||||
|
virtual void SetFinished() {
|
||||||
|
std::lock_guard<std::mutex> lock(mutex_);
|
||||||
|
finished_ = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
virtual bool IsFinished() const { return finished_; }
|
||||||
|
|
||||||
|
virtual void Reset() {
|
||||||
|
offset_ = 0;
|
||||||
|
size_ = 0;
|
||||||
|
finished_ = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
std::vector<kaldi::BaseFloat> ring_buffer_;
|
||||||
|
size_t offset_; // offset in ring_buffer_
|
||||||
|
size_t size_; // samples in ring_buffer_ now
|
||||||
|
size_t capacity_; // capacity of ring_buffer_
|
||||||
|
bool finished_; // reach audio end
|
||||||
|
mutable std::mutex mutex_;
|
||||||
|
std::condition_variable ready_feed_condition_;
|
||||||
|
kaldi::int32 timeout_; // millisecond
|
||||||
|
|
||||||
|
DISALLOW_COPY_AND_ASSIGN(AudioCache);
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace ppspeech
|
Loading…
Reference in new issue