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 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
|
/***************************************************************************
SampleRatePlugin.cpp - sample rate conversion
-------------------
begin : Tue Jul 07 2009
copyright : (C) 2009 by Thomas Eschenbacher
email : Thomas.Eschenbacher@gmx.de
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#include "config.h"
#include <errno.h>
#include <KLocalizedString> // for the i18n macro
#include <QList>
#include <QListIterator>
#include <QStringList>
#include "libkwave/Connect.h"
#include "libkwave/FileInfo.h"
#include "libkwave/MetaDataList.h"
#include "libkwave/MultiTrackReader.h"
#include "libkwave/MultiTrackWriter.h"
#include "libkwave/PluginManager.h"
#include "libkwave/SignalManager.h"
#include "libkwave/Utils.h"
#include "libkwave/Writer.h"
#include "libkwave/modules/RateConverter.h"
#include "libkwave/undo/UndoTransactionGuard.h"
#include "libkwave/undo/UndoAddMetaDataAction.h"
#include "libkwave/undo/UndoDeleteMetaDataAction.h"
#include "SampleRatePlugin.h"
KWAVE_PLUGIN(samplerate, SampleRatePlugin)
//***************************************************************************
Kwave::SampleRatePlugin::SampleRatePlugin(QObject *parent,
const QVariantList &args)
:Kwave::Plugin(parent, args), m_params(), m_new_rate(0.0),
m_whole_signal(false)
{
}
//***************************************************************************
Kwave::SampleRatePlugin::~SampleRatePlugin()
{
}
//***************************************************************************
int Kwave::SampleRatePlugin::interpreteParameters(QStringList ¶ms)
{
bool ok = false;
QString param;
// set defaults
m_new_rate = 44100.0;
m_whole_signal = false;
// evaluate the parameter list
if (params.count() < 1) return -EINVAL;
param = params[0];
m_new_rate = param.toDouble(&ok);
if (!ok) return -EINVAL;
// check whether we should change the whole signal (optional)
if (params.count() == 2) {
if (params[1] != _("all"))
return -EINVAL;
m_whole_signal = true;
}
// all parameters accepted
m_params = params;
return 0;
}
//***************************************************************************
void Kwave::SampleRatePlugin::run(QStringList params)
{
Kwave::SignalManager &mgr = signalManager();
// parse parameters
if (interpreteParameters(params) < 0)
return;
double old_rate = Kwave::FileInfo(signalManager().metaData()).rate();
if ((old_rate <= 0) || qFuzzyCompare(old_rate, m_new_rate)) return;
Kwave::UndoTransactionGuard undo_guard(*this, i18n("Change sample rate"));
// get the current selection and the list of affected tracks
sample_index_t first = 0;
sample_index_t last = 0;
sample_index_t length;
QVector<unsigned int> tracks;
if (m_whole_signal) {
length = signalLength();
last = (length) ? (length - 1) : 0;
tracks = mgr.allTracks();
} else {
length = selection(&tracks, &first, &last, true);
if ((length == signalLength()) &&
(tracks.count() == Kwave::toInt(mgr.tracks())))
{
// manually selected the whole signal
m_whole_signal = true;
}
}
qDebug("SampleRatePlugin: from %9lu - %9lu (%9lu)",
static_cast<unsigned long int>(first),
static_cast<unsigned long int>(last),
static_cast<unsigned long int>(length));
if (!length || tracks.isEmpty()) return;
// calculate the new length
double ratio = m_new_rate / old_rate;
sample_index_t new_length =
static_cast<sample_index_t>(double(length) * ratio);
if ((new_length == length) || !new_length) return;
Kwave::MetaDataList meta = mgr.metaData().selectByRange(first, last);
if (!meta.isEmpty()) {
// delete the meta data from the original range
Kwave::UndoDeleteMetaDataAction *undo_del_meta = new(std::nothrow)
Kwave::UndoDeleteMetaDataAction(meta);
if (!undo_guard.registerUndoAction(undo_del_meta))
return;
mgr.metaData().deleteRange(first, last);
}
// if the new length is bigger than the current length,
// insert some space at the end
if (new_length > length) {
qDebug("SampleRatePlugin: inserting %lu at %lu",
static_cast<unsigned long int>(new_length - length + 1),
static_cast<unsigned long int>(last + 1));
mgr.insertSpace(last + 1, new_length - length + 1, tracks);
}
Kwave::MultiTrackReader source(Kwave::SinglePassForward,
mgr, tracks, first, last);
// connect the progress dialog
connect(&source, SIGNAL(progress(qreal)),
this, SLOT(updateProgress(qreal)),
Qt::BlockingQueuedConnection);
emit setProgressText(
i18n("Changing sample rate from %1 kHz to %2 kHz...",
(old_rate / 1E3), (m_new_rate / 1E3))
);
// create the converter
Kwave::MultiTrackSource<Kwave::RateConverter, true> converter(
static_cast<unsigned int>(tracks.count()), this);
converter.setAttribute(SLOT(setRatio(QVariant)), QVariant(ratio));
// create the writer with the appropriate length
Kwave::MultiTrackWriter sink(mgr, tracks, Kwave::Overwrite,
first, first + new_length - 1);
// connect the objects
bool ok = Kwave::connect(
source, SIGNAL(output(Kwave::SampleArray)),
converter, SLOT(input(Kwave::SampleArray)));
if (ok) ok = Kwave::connect(
converter, SIGNAL(output(Kwave::SampleArray)),
sink, SLOT(input(Kwave::SampleArray)));
if (!ok) {
return;
}
while (!shouldStop() && !source.eof()) {
source.goOn();
converter.goOn();
}
sink.flush();
// find out how many samples have been written and delete the leftovers
sample_index_t written = sink[0]->position() - first;
// qDebug("SampleRatePlugin: old=%u, expexted=%u, written=%u",
// length, new_length, written);
if (written < length) {
sample_index_t to_delete = length - written;
mgr.deleteRange(written, to_delete, tracks);
}
// adjust meta data locations
if (!meta.isEmpty()) {
// adjust all meta data positions
meta.shiftLeft(first, first);
meta.scalePositions(ratio);
meta.shiftRight(0, first);
Kwave::UndoAddMetaDataAction *undo_add_meta = new(std::nothrow)
Kwave::UndoAddMetaDataAction(meta);
if (!undo_guard.registerUndoAction(undo_add_meta)) {
undo_guard.abort();
return;
}
// add the updated meta data items again
mgr.metaData().add(meta);
}
// update the selection if it was not empty
length = selection(nullptr, &first, &last, false);
if (length) {
if (m_whole_signal) {
// if whole signal selected -> adjust start and end
first = sample_index_t(static_cast<double>(first) * ratio);
last = sample_index_t(static_cast<double>(last) * ratio);
length = last - first + 1;
} else {
// only a portion selected -> adjust only length
length = sample_index_t(static_cast<double>(length) * ratio);
}
mgr.selectRange(first, length);
}
// set the sample rate if we modified the whole signal
if (m_whole_signal) {
Kwave::FileInfo info(signalManager().metaData());
info.setRate(m_new_rate);
mgr.setFileInfo(info, false);
}
}
//***************************************************************************
#include "SampleRatePlugin.moc"
//***************************************************************************
//***************************************************************************
#include "moc_SampleRatePlugin.cpp"
|