This repository has been archived on 2025-08-26. You can view files and clone it, but cannot push or open issues or pull requests.
Files
enginex-mr_series-sherpa-onnx/sherpa-onnx/csrc/alsa.h
2023-02-21 22:04:21 +08:00

47 lines
1.2 KiB
C++

// sherpa-onnx/csrc/sherpa-alsa.h
//
// Copyright (c) 2022-2023 Xiaomi Corporation
#ifndef SHERPA_ONNX_CSRC_ALSA_H_
#define SHERPA_ONNX_CSRC_ALSA_H_
#include <memory>
#include <vector>
#include "alsa/asoundlib.h"
#include "sherpa-onnx/csrc/resample.h"
namespace sherpa_onnx {
class Alsa {
public:
explicit Alsa(const char *device_name);
~Alsa();
// This is a blocking read.
//
// @param num_samples Number of samples to read.
//
// The returned value is valid until the next call to Read().
const std::vector<float> &Read(int32_t num_samples);
int32_t GetExpectedSampleRate() const { return expected_sample_rate_; }
int32_t GetActualSampleRate() const { return actual_sample_rate_; }
private:
snd_pcm_t *capture_handle_;
int32_t expected_sample_rate_ = 16000;
int32_t actual_sample_rate_;
int32_t actual_channel_count_ = 1;
std::unique_ptr<LinearResample> resampler_;
std::vector<int16_t> samples_; // directly from the microphone
std::vector<float> samples1_; // normalized version of samples_
std::vector<float> samples2_; // possibly resampled from samples1_
};
} // namespace sherpa_onnx
#endif // SHERPA_ONNX_CSRC_ALSA_H_