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
|
// ------------------------------------------------------------------------
// eca-audio-position.cpp: Base class for representing position and length
// of a audio stream.
// Copyright (C) 1999-2002,2007,2008 Kai Vehmanen
//
// Attributes:
// eca-style-version: 3 (see Ecasound Programmer's Guide)
//
// 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 <cmath>
#include <math.h> /* ceil() */
#include <kvu_dbc.h>
#include "eca-audio-position.h"
ECA_AUDIO_POSITION::ECA_AUDIO_POSITION(void)
{
length_set_rep = false;
position_in_samples_rep = 0;
length_in_samples_rep = 0;
}
ECA_AUDIO_POSITION::~ECA_AUDIO_POSITION(void)
{
}
SAMPLE_SPECS::sample_pos_t ECA_AUDIO_POSITION::length_in_samples(void) const
{
return length_in_samples_rep;
}
int ECA_AUDIO_POSITION::length_in_seconds(void) const
{
DBC_CHECK(samples_per_second() != 0);
return (int)ceil((double)length_in_samples() /
(double)samples_per_second());
}
double ECA_AUDIO_POSITION::length_in_seconds_exact(void) const
{
DBC_CHECK(samples_per_second() != 0);
return (double)length_in_samples() / (double)samples_per_second();
}
void ECA_AUDIO_POSITION::set_length_in_samples(SAMPLE_SPECS::sample_pos_t pos)
{
length_in_samples_rep = pos;
length_set_rep = true;
}
void ECA_AUDIO_POSITION::set_length_in_seconds(int pos_in_seconds)
{
DBC_CHECK(samples_per_second() != 0);
set_length_in_seconds((double)pos_in_seconds);
}
void ECA_AUDIO_POSITION::set_length_in_seconds(double pos_in_seconds)
{
DBC_CHECK(samples_per_second() != 0);
set_length_in_samples(static_cast<SAMPLE_SPECS::sample_pos_t>(pos_in_seconds * samples_per_second()));
}
SAMPLE_SPECS::sample_pos_t ECA_AUDIO_POSITION::position_in_samples(void) const
{
return position_in_samples_rep;
}
int ECA_AUDIO_POSITION::position_in_seconds(void) const
{
DBC_CHECK(samples_per_second() != 0);
return (int)ceil((double)position_in_samples() /
(double)samples_per_second());
}
double ECA_AUDIO_POSITION::position_in_seconds_exact(void) const
{
DBC_CHECK(samples_per_second() != 0);
return (double)position_in_samples() / (double)samples_per_second();
}
void ECA_AUDIO_POSITION::set_position_in_samples(SAMPLE_SPECS::sample_pos_t pos)
{
position_in_samples_rep = pos;
if (position_in_samples_rep < 0) {
position_in_samples_rep = 0;
}
}
void ECA_AUDIO_POSITION::change_position_in_samples(SAMPLE_SPECS::sample_pos_t pos)
{
position_in_samples_rep += pos;
}
void ECA_AUDIO_POSITION::change_position_in_seconds(double pos_in_seconds)
{
DBC_CHECK(samples_per_second() != 0);
change_position_in_samples(static_cast<SAMPLE_SPECS::sample_pos_t>(pos_in_seconds * samples_per_second()));
}
void ECA_AUDIO_POSITION::set_position_in_seconds(int pos_in_seconds)
{
DBC_CHECK(samples_per_second() != 0);
set_position_in_seconds((double)pos_in_seconds);
}
void ECA_AUDIO_POSITION::set_position_in_seconds(double pos_in_seconds)
{
DBC_CHECK(samples_per_second() != 0);
set_position_in_samples(static_cast<SAMPLE_SPECS::sample_pos_t>(pos_in_seconds * samples_per_second()));
}
void ECA_AUDIO_POSITION::seek_first(void)
{
seek_position_in_samples(0);
}
void ECA_AUDIO_POSITION::seek_last(void)
{
seek_position_in_samples(length_in_samples());
}
void ECA_AUDIO_POSITION::seek_position_in_samples(SAMPLE_SPECS::sample_pos_t pos_in_samples)
{
SAMPLE_SPECS::sample_pos_t res =
seek_position(pos_in_samples);
set_position_in_samples(res);
}
void ECA_AUDIO_POSITION::seek_position_in_samples_advance(SAMPLE_SPECS::sample_pos_t pos)
{
seek_position_in_samples(position_in_samples() + pos);
}
void ECA_AUDIO_POSITION::seek_position_in_seconds(double pos_in_seconds)
{
DBC_CHECK(samples_per_second() != 0);
seek_position_in_samples(static_cast<SAMPLE_SPECS::sample_pos_t>(pos_in_seconds * samples_per_second()));
}
void ECA_AUDIO_POSITION::set_samples_per_second(SAMPLE_SPECS::sample_rate_t new_value)
{
double ratio (new_value);
ratio /= samples_per_second();
set_position_in_samples(static_cast<SAMPLE_SPECS::sample_pos_t>(position_in_samples() * ratio));
if (length_set() == true) {
set_length_in_samples(static_cast<SAMPLE_SPECS::sample_pos_t>(length_in_samples() * ratio));
}
ECA_SAMPLERATE_AWARE::set_samples_per_second(new_value);
}
|