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
|
// ------------------------------------------------------------------------
// audioio-device.cpp: Virtual base class for real-time devices.
// Copyright (C) 1999-2001,2010,2013,2015 Kai Vehmanen
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
// ------------------------------------------------------------------------
#include <kvu_dbc.h>
#include <kvu_message_item.h>
#include "audioio-device.h"
#include "samplebuffer.h"
AUDIO_IO_DEVICE::AUDIO_IO_DEVICE(void)
: is_running_rep(false),
is_prepared_rep(false),
ignore_xruns_rep(true),
max_buffers_rep(true)
{
}
AUDIO_IO_DEVICE::~AUDIO_IO_DEVICE(void)
{
if (is_open() == true)
close();
DBC_CHECK(is_running() != true);
}
bool AUDIO_IO_DEVICE::is_realtime_object(const AUDIO_IO* aobj)
{
const AUDIO_IO_DEVICE* p = dynamic_cast<const AUDIO_IO_DEVICE*>(aobj);
if (p != 0) return(true);
return(false);
}
string AUDIO_IO_DEVICE::status(void) const
{
MESSAGE_ITEM mitem;
mitem << "realtime-device; position ";
mitem << position_in_samples() << ", delay ";
mitem << delay() << ".\n -> ";
if (is_open() == true)
mitem << "open, ";
else
mitem << "closed, ";
mitem << format_string() << "/" << channels() << "ch/" << samples_per_second();
mitem << "Hz, buffer " << buffersize() << ".";
return(mitem.to_string());
}
void AUDIO_IO_DEVICE::write_buffer(SAMPLE_BUFFER* sbuf)
{
long int payload = sbuf->length_in_samples();
if (payload != buffersize() &&
sbuf->event_tag_test(SAMPLE_BUFFER::tag_var_length) != true) {
// Unless explicitly allowed with 'tag_var_length' tag, pad the
// buffer to full buffersize(). SAMPLE_BUFFER will ensure the
// added samples are muted.
sbuf->length_in_samples(buffersize());
}
AUDIO_IO_BUFFERED::write_buffer(sbuf);
}
|