mirror of
https://github.com/JvanKatwijk/dab-cmdline
synced 2025-10-06 08:02:52 +02:00
86 lines
2.5 KiB
C++
86 lines
2.5 KiB
C++
![]() |
#
|
||
|
/*
|
||
|
* Copyright (C) 2011, 2012, 2013
|
||
|
* Jan van Katwijk (J.vanKatwijk@gmail.com)
|
||
|
* Lazy Chair Computing
|
||
|
*
|
||
|
* This file is part of the main program of the DAB library
|
||
|
*
|
||
|
* DAB library 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.
|
||
|
*
|
||
|
* DAB library 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 DAB library; if not, write to the Free Software
|
||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||
|
*/
|
||
|
|
||
|
#include "newconverter.h"
|
||
|
|
||
|
newConverter::newConverter (int32_t inRate, int32_t outRate,
|
||
|
int32_t inSize) {
|
||
|
int err;
|
||
|
this -> inRate = inRate;
|
||
|
this -> outRate = outRate;
|
||
|
inputLimit = inSize;
|
||
|
ratio = double(outRate) / inRate;
|
||
|
// fprintf (stderr, "ratio = %f\n", ratio);
|
||
|
outputLimit = inSize * ratio;
|
||
|
converter = src_new (SRC_SINC_BEST_QUALITY, 2, &err);
|
||
|
// converter = src_new (SRC_LINEAR, 2, &err);
|
||
|
// converter = src_new (SRC_SINC_MEDIUM_QUALITY, 2, &err);
|
||
|
src_data = new SRC_DATA;
|
||
|
inBuffer = new float [2 * inputLimit + 20];
|
||
|
outBuffer = new float [2 * outputLimit + 20];
|
||
|
src_data-> data_in = inBuffer;
|
||
|
src_data-> data_out = outBuffer;
|
||
|
src_data-> src_ratio = ratio;
|
||
|
src_data-> end_of_input = 0;
|
||
|
inp = 0;
|
||
|
}
|
||
|
|
||
|
newConverter::~newConverter (void) {
|
||
|
src_delete (converter);
|
||
|
delete [] inBuffer;
|
||
|
delete [] outBuffer;
|
||
|
delete src_data;
|
||
|
}
|
||
|
|
||
|
bool newConverter::convert (DSPCOMPLEX v,
|
||
|
DSPCOMPLEX *out, int32_t *amount) {
|
||
|
int32_t i;
|
||
|
int32_t framesOut;
|
||
|
int res;
|
||
|
|
||
|
inBuffer [2 * inp] = real (v);
|
||
|
inBuffer [2 * inp + 1] = imag (v);
|
||
|
inp ++;
|
||
|
if (inp < inputLimit)
|
||
|
return false;
|
||
|
|
||
|
src_data -> input_frames = inp;
|
||
|
src_data -> output_frames = outputLimit + 10;
|
||
|
res = src_process (converter, src_data);
|
||
|
if (res != 0) {
|
||
|
fprintf (stderr, "error %s\n", src_strerror (res));
|
||
|
return false;
|
||
|
}
|
||
|
inp = 0;
|
||
|
framesOut = src_data -> output_frames_gen;
|
||
|
for (i = 0; i < framesOut; i ++)
|
||
|
out [i] = DSPCOMPLEX (outBuffer [2 * i], outBuffer [2 * i + 1]);
|
||
|
*amount = framesOut;
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
int32_t newConverter::getOutputsize (void) {
|
||
|
return outputLimit;
|
||
|
}
|
||
|
|