Mercurial > hg > svapp
view audioio/AudioCallbackPlayTarget.cpp @ 5:2edc0757ca75
* Fixes to playback of short looped files, of synthesised content within looped
sections, and a few other fixes
author | Chris Cannam |
---|---|
date | Thu, 26 Jan 2006 11:56:09 +0000 |
parents | df5923e33d01 |
children | c606d3ffa397 |
line wrap: on
line source
/* -*- c-basic-offset: 4 -*- vi:set ts=8 sts=4 sw=4: */ /* A waveform viewer and audio annotation editor. Chris Cannam, Queen Mary University of London, 2005-2006 This is experimental software. Not for distribution. */ #include "AudioCallbackPlayTarget.h" #include "AudioCallbackPlaySource.h" #include <iostream> AudioCallbackPlayTarget::AudioCallbackPlayTarget(AudioCallbackPlaySource *source) : m_source(source), m_outputGain(1.0) { if (m_source) { connect(m_source, SIGNAL(modelReplaced()), this, SLOT(sourceModelReplaced())); } } AudioCallbackPlayTarget::~AudioCallbackPlayTarget() { } void AudioCallbackPlayTarget::setOutputGain(float gain) { m_outputGain = gain; } #ifdef INCLUDE_MOCFILES #ifdef INCLUDE_MOCFILES #include "AudioCallbackPlayTarget.moc.cpp" #endif #endif