VorbisOutputS.h (1333B)
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 VORBISOUTPUT_H 20 #define VORBISOUTPUT_H 21 #include <string> 22 #include <stdio.h> 23 #include <vorbis/vorbisenc.h> 24 #ifndef REALTYPE 25 #define REALTYPE float 26 #endif 27 28 class VorbisOutputS{ 29 public: 30 VorbisOutputS(); 31 ~VorbisOutputS(); 32 33 bool newfile(std::string filename,int samplerate,REALTYPE quality=3.5);//quality 0.0-10.0 34 void close(); 35 36 void write(int nsmps, REALTYPE *smpsl,REALTYPE *smpr); 37 38 private: 39 bool opened; 40 41 ogg_stream_state os; 42 ogg_page og; 43 ogg_packet op; 44 45 vorbis_info vi; 46 vorbis_comment vc; 47 48 vorbis_dsp_state vd; 49 vorbis_block vb; 50 51 FILE *outfile; 52 }; 53 #endif