Blender V2.61 - r43446
|
00001 /* 00002 * ***** BEGIN GPL LICENSE BLOCK ***** 00003 * 00004 * Copyright 2009-2011 Jörg Hermann Müller 00005 * 00006 * This file is part of AudaSpace. 00007 * 00008 * Audaspace is free software; you can redistribute it and/or modify 00009 * it under the terms of the GNU General Public License as published by 00010 * the Free Software Foundation; either version 2 of the License, or 00011 * (at your option) any later version. 00012 * 00013 * AudaSpace is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 * GNU General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU General Public License 00019 * along with Audaspace; if not, write to the Free Software Foundation, 00020 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 00021 * 00022 * ***** END GPL LICENSE BLOCK ***** 00023 */ 00024 00030 #ifndef AUD_JOSRESAMPLEREADER 00031 #define AUD_JOSRESAMPLEREADER 00032 00033 #include "AUD_ResampleReader.h" 00034 #include "AUD_Buffer.h" 00035 00039 class AUD_JOSResampleReader : public AUD_ResampleReader 00040 { 00041 private: 00042 typedef void (AUD_JOSResampleReader::*AUD_resample_f)(double target_factor, int length, sample_t* buffer); 00043 00047 static const int m_len; 00048 00052 static const int m_L; 00053 00057 static const float m_coeff[]; 00058 00062 AUD_Channels m_channels; 00063 00067 unsigned int m_n; 00068 00072 double m_P; 00073 00077 AUD_Buffer m_buffer; 00078 00082 AUD_Buffer m_sums; 00083 00087 int m_cache_valid; 00088 00092 AUD_resample_f m_resample; 00093 00097 double m_last_factor; 00098 00099 // hide copy constructor and operator= 00100 AUD_JOSResampleReader(const AUD_JOSResampleReader&); 00101 AUD_JOSResampleReader& operator=(const AUD_JOSResampleReader&); 00102 00106 void reset(); 00107 00114 void updateBuffer(int size, double factor, int samplesize); 00115 00116 void resample(double target_factor, int length, sample_t* buffer); 00117 void resample_mono(double target_factor, int length, sample_t* buffer); 00118 void resample_stereo(double target_factor, int length, sample_t* buffer); 00119 00120 public: 00126 AUD_JOSResampleReader(AUD_Reference<AUD_IReader> reader, AUD_Specs specs); 00127 00128 virtual void seek(int position); 00129 virtual int getLength() const; 00130 virtual int getPosition() const; 00131 virtual AUD_Specs getSpecs() const; 00132 virtual void read(int& length, bool& eos, sample_t* buffer); 00133 }; 00134 00135 #endif //AUD_JOSRESAMPLEREADER