From 80173530fa22088f577cecc10d85771f5d486e23 Mon Sep 17 00:00:00 2001 From: Valeriy Kamyshniy Date: Tue, 27 May 2014 22:51:36 -0400 Subject: [PATCH] [P4/git history rebuild] --- .../wavesaudio/waves_audiobackend.latency.cc | 180 +++++++++--------- 1 file changed, 90 insertions(+), 90 deletions(-) diff --git a/libs/backends/wavesaudio/waves_audiobackend.latency.cc b/libs/backends/wavesaudio/waves_audiobackend.latency.cc index c0d2fcd315..e1869cbf1f 100644 --- a/libs/backends/wavesaudio/waves_audiobackend.latency.cc +++ b/libs/backends/wavesaudio/waves_audiobackend.latency.cc @@ -1,90 +1,90 @@ -/* - Copyright (C) 2014 Waves Audio Ltd. - - 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., 675 Mass Ave, Cambridge, MA 02139, USA. - -*/ - -#include "waves_dataport.h" -#include "waves_audiobackend.h" - -using namespace ARDOUR; - - -int -WavesAudioBackend::set_systemic_input_latency (uint32_t systemic_input_latency) -{ - // COMMENTED DBG LOGS */ std::cout << "WavesAudioBackend::set_systemic_input_latency (): " << systemic_input_latency << std::endl; - - _systemic_input_latency = systemic_input_latency; - return 0; -} - - -int -WavesAudioBackend::set_systemic_output_latency (uint32_t systemic_output_latency) -{ - // COMMENTED DBG LOGS */ std::cout << "WavesAudioBackend::set_systemic_output_latency (): " << systemic_output_latency << std::endl; - - _systemic_output_latency = systemic_output_latency; - return 0; -} - -uint32_t -WavesAudioBackend::systemic_input_latency () const -{ - // COMMENTED DBG LOGS */ std::cout << "WavesAudioBackend::systemic_input_latency ()" << std::endl; - - return _systemic_input_latency; -} - - -uint32_t -WavesAudioBackend::systemic_output_latency () const -{ - // COMMENTED DBG LOGS */ std::cout << "WavesAudioBackend::systemic_output_latency ()" << std::endl; - - return _systemic_output_latency; -} - - -void -WavesAudioBackend::update_latencies () -{ - // COMMENTED DBG LOGS */ std::cout << "update_latencies:" << std::endl; -} - - -void -WavesAudioBackend::set_latency_range (PortHandle port_handle, bool for_playback, LatencyRange latency_range) -{ - if (!_registered (port_handle)) { - std::cerr << "WavesAudioBackend::set_latency_range (): Failed to find port [" << std::hex << port_handle << std::dec << "]!" << std::endl; - return; - } - ((WavesDataPort*)port_handle)->set_latency_range (latency_range, for_playback); -} - - -LatencyRange -WavesAudioBackend::get_latency_range (PortHandle port_handle, bool for_playback) -{ - if (!_registered (port_handle)) { - std::cerr << "WavesAudioBackend::get_latency_range (): Failed to find port [" << std::hex << port_handle << std::dec << "]!" << std::endl; - LatencyRange lr = {0,0}; - return lr; - } - return ((WavesDataPort*)port_handle)->latency_range (for_playback); -} +/* + Copyright (C) 2013 Valeriy Kamyshniy + + 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., 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +#include "waves_dataport.h" +#include "waves_audiobackend.h" + +using namespace ARDOUR; + + +int +WavesAudioBackend::set_systemic_input_latency (uint32_t systemic_input_latency) +{ + // COMMENTED DBG LOGS */ std::cout << "WavesAudioBackend::set_systemic_input_latency (): " << systemic_input_latency << std::endl; + + _systemic_input_latency = systemic_input_latency; + return 0; +} + + +int +WavesAudioBackend::set_systemic_output_latency (uint32_t systemic_output_latency) +{ + // COMMENTED DBG LOGS */ std::cout << "WavesAudioBackend::set_systemic_output_latency (): " << systemic_output_latency << std::endl; + + _systemic_output_latency = systemic_output_latency; + return 0; +} + +uint32_t +WavesAudioBackend::systemic_input_latency () const +{ + // COMMENTED DBG LOGS */ std::cout << "WavesAudioBackend::systemic_input_latency ()" << std::endl; + + return _systemic_input_latency; +} + + +uint32_t +WavesAudioBackend::systemic_output_latency () const +{ + // COMMENTED DBG LOGS */ std::cout << "WavesAudioBackend::systemic_output_latency ()" << std::endl; + + return _systemic_output_latency; +} + + +void +WavesAudioBackend::update_latencies () +{ + // COMMENTED DBG LOGS */ std::cout << "update_latencies:" << std::endl; +} + + +void +WavesAudioBackend::set_latency_range (PortHandle port_handle, bool for_playback, LatencyRange latency_range) +{ + if (!_registered (port_handle)) { + std::cerr << "WavesAudioBackend::set_latency_range (): Failed to find port [" << std::hex << port_handle << std::dec << "]!" << std::endl; + return; + } + ((WavesDataPort*)port_handle)->set_latency_range (latency_range, for_playback); +} + + +LatencyRange +WavesAudioBackend::get_latency_range (PortHandle port_handle, bool for_playback) +{ + if (!_registered (port_handle)) { + std::cerr << "WavesAudioBackend::get_latency_range (): Failed to find port [" << std::hex << port_handle << std::dec << "]!" << std::endl; + LatencyRange lr = {0,0}; + return lr; + } + return ((WavesDataPort*)port_handle)->latency_range (for_playback); +}