summaryrefslogtreecommitdiff
path: root/libs/backends/wavesaudio/waves_audiobackend.latency.cc
blob: fd00912faee7fa8fa19f808273964c95ac1335ba (plain)
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
/*
    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);
}