paulstretch_cpp

PaulStretch
Log | Files | Refs | LICENSE

VorbisInputS.h (1200B)


      1 /*
      2   Copyright (C) 2006-2011 Nasca Octavian Paul
      3   Author: Nasca Octavian Paul
      4 
      5   This program is free software; you can redistribute it and/or modify
      6   it under the terms of version 2 of the GNU General Public License 
      7   as published by the Free Software Foundation.
      8 
      9   This program is distributed in the hope that it will be useful,
     10   but WITHOUT ANY WARRANTY; without even the implied warranty of
     11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     12   GNU General Public License (version 2) for more details.
     13 
     14   You should have received a copy of the GNU General Public License (version 2)
     15   along with this program; if not, write to the Free Software Foundation,
     16   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
     17 */
     18 
     19 #ifndef VORBIS_INPUT_H
     20 #define VORBIS_INPUT_H
     21 #include <string>
     22 #include <vorbis/vorbisfile.h>
     23 
     24 #include "InputS.h"
     25 
     26 class VorbisInputS:public InputS{
     27     public:
     28 	VorbisInputS();
     29 	~VorbisInputS();
     30 	
     31 	bool open(std::string filename);
     32 	void close();
     33 
     34 	int read(int nsmps,short int *smps);
     35 	void seek(double pos);//0=start,1.0=end
     36 	
     37     private:
     38 	OggVorbis_File vorbisfile;
     39 	bool vorbis_opened;
     40 	int real_channels;
     41 
     42 	short int *buf;
     43 	int bufsize;
     44 };
     45 #endif