Blame view
src/online/online-audio-source.cc
6.45 KB
8dcb6dfcb first commit |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
// online/online-audio-source.cc // Copyright 2012 Cisco Systems (author: Matthias Paulik) // Modifications to the original contribution by Cisco Systems made by: // Vassil Panayotov // See ../../COPYING for clarification regarding multiple authors // // 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 // // THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY // KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED // WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, // MERCHANTABLITY OR NON-INFRINGEMENT. // See the Apache 2 License for the specific language governing permissions and // limitations under the License. #include <algorithm> #include <cmath> #include <vector> #ifndef KALDI_NO_PORTAUDIO #include "base/timer.h" #endif // KALDI_NO_PORTAUDIO #include "online-audio-source.h" namespace kaldi { #ifndef KALDI_NO_PORTAUDIO // The actual PortAudio callback - delegates to OnlinePaSource->PaCallback() int PaCallback(const void *input, void *output, long unsigned frame_count, const PaStreamCallbackTimeInfo *time_info, PaStreamCallbackFlags status_flags, void *user_data) { OnlinePaSource *pa_src = reinterpret_cast<OnlinePaSource*>(user_data); return pa_src->Callback(input, output, frame_count, time_info, status_flags); } OnlinePaSource::OnlinePaSource(const uint32 timeout, const uint32 sample_rate, const uint32 rb_size, const uint32 report_interval) : timeout_(timeout), timed_out_(false), sample_rate_(sample_rate), pa_started_(false), report_interval_(report_interval), nread_calls_(0), noverflows_(0), samples_lost_(0) { using namespace std; // Note this will work for 32bit integers but not for 64bit. // For 64bit integers even double wouldn't work // You would ahve to use something like // int64 rb_bits = 0; while (rb_size != 0) {++rb_bits; rb_size >>= 1;} // it would be much faster than two logs of FP numbers (even floats), too, // but I dont have the time to test it. float f = Log(static_cast<float>(rb_size)) / Log(static_cast<float>(2)); int32 rb_bits = static_cast<int32>(ceil(f)); if (rb_bits > 30) // ok, this limit is somewhat arbitrary throw invalid_argument("PortAudio ring buffer too large!"); rb_size_ = 1 << rb_bits; ring_buffer_ = new char[rb_size_]; ring_buffer_size_t rbs = PaUtil_InitializeRingBuffer( &pa_ringbuf_, sizeof(SampleType), rb_size_ / sizeof(SampleType), ring_buffer_); if (rbs != 0) KALDI_ERR << "PortAudio ring buffer init error"; PaError paerr = Pa_Initialize(); if (paerr != paNoError) KALDI_ERR << "PortAudio initialization error"; // Monophone, 16-bit input hardcoded KALDI_ASSERT(sizeof(SampleType) == 2 && "The current OnlinePaSource code assumes 16-bit input"); paerr = Pa_OpenDefaultStream(&pa_stream_, 1, 0, paInt16, sample_rate_, 0, PaCallback, this); if (paerr != paNoError) KALDI_ERR << "PortAudio failed to open the default stream"; } OnlinePaSource::~OnlinePaSource() { if (pa_started_) Pa_StopStream(pa_stream_); if (pa_stream_ != 0) { Pa_CloseStream(pa_stream_); Pa_Terminate(); } if (ring_buffer_ != 0) delete [] ring_buffer_; } bool OnlinePaSource::Read(Vector<BaseFloat> *data) { if (!pa_started_) { // start stream the first time Read() is called PaError paerr = Pa_StartStream(pa_stream_); if (paerr != paNoError) KALDI_ERR << "Error while trying to open PortAudio stream"; pa_started_ = true; } Timer timer; if (report_interval_ != 0 && (++nread_calls_ % report_interval_) == 0 && noverflows_ > 0) { KALDI_VLOG(1) << noverflows_ << " PortAudio ring buffer overflows detected " << "and " << samples_lost_ << " sample(s) were lost"; samples_lost_ = noverflows_ = 0; } uint32 nsamples_req = data->Dim(); // samples to request timed_out_ = false; while (true) { ring_buffer_size_t nsamples; nsamples = PaUtil_GetRingBufferReadAvailable(&pa_ringbuf_); if (nsamples >= nsamples_req) break; if (timeout_ > 0) { int32 elapsed = static_cast<int32>(timer.Elapsed() * 1000); if (elapsed > timeout_) { nsamples_req = nsamples; timed_out_ = true; KALDI_VLOG(2) << "OnlinePaSource::Read() timeout"; break; } } Pa_Sleep(2); } std::vector<int16> buf(nsamples_req); rbs_t nsamples_rcv; nsamples_rcv = PaUtil_ReadRingBuffer(&pa_ringbuf_, buf.data(), nsamples_req); if (nsamples_rcv != nsamples_req) { KALDI_WARN << "Requested: " << nsamples_req << "; Received: " << nsamples_rcv << " samples"; // This would be a PortAudio error. } data->Resize(nsamples_rcv); for (int i = 0; i < nsamples_rcv; ++i) (*data)(i) = static_cast<BaseFloat>(buf[i]); return (nsamples_rcv != 0); // NOTE (Dan): I'm pretty sure this return value is not right, it could be // this way because we're waiting. Vassil or someone will have to figure this // out. } // Accepts the data and writes it to the ring buffer int OnlinePaSource::Callback(const void *input, void *output, ring_buffer_size_t frame_count, const PaStreamCallbackTimeInfo *time_info, PaStreamCallbackFlags status_flags) { if (report_interval_ != 0) { if (frame_count > PaUtil_GetRingBufferWriteAvailable(&pa_ringbuf_)) ++noverflows_; } rbs_t written = PaUtil_WriteRingBuffer(&pa_ringbuf_, input, frame_count); samples_lost_ += frame_count - written; return paContinue; } #endif // KALDI_NO_PORTAUDIO bool OnlineVectorSource::Read(Vector<BaseFloat> *data) { KALDI_ASSERT(data->Dim() > 0); int32 n_elem = std::min(src_.Dim() - pos_, static_cast<uint32>(data->Dim())); if (n_elem > 0) { SubVector<BaseFloat> subsrc(src_, pos_, n_elem); if (data->Dim() == subsrc.Dim()) { data->CopyFromVec(subsrc); } else { for (int32 i = 0; i < subsrc.Dim(); ++i) (*data)(i) = subsrc(i); } pos_ += n_elem; } return (pos_ < src_.Dim()); } } // namespace kaldi |