summaryrefslogtreecommitdiff
path: root/orkbasecxx/audiofile/LibSndFileFile.h
blob: 3ba2e63476270a49de4b9cf3b4c26ad05f5b1da5 (plain)
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
/*
 * Oreka -- A media capture and retrieval platform
 * 
 * Copyright (C) 2005, orecx LLC
 *
 * http://www.orecx.com
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License.
 * Please refer to http://www.gnu.org/copyleft/gpl.html
 *
 */

#ifndef __LIBSNDFILEFILE_H__
#define __LIBSNDFILEFILE_H__


#include "StdString.h"
#include "AudioCapture.h"
#include "sndfile.h"
#include "AudioFile.h"


/** file accessor class for all file types supported by the libsndfile library. 
	The library can be found at http://www.mega-nerd.com/libsndfile/
*/
class DLL_IMPORT_EXPORT_ORKBASE LibSndFileFile : public AudioFile
{
public:
	LibSndFileFile(int fileFormat);	// fileFormat is described at http://www.mega-nerd.com/libsndfile/api.html
	~LibSndFileFile();

	void Open(CStdString& filename, fileOpenModeEnum mode, bool stereo = false, int sampleRate = 8000);
	void Close();

	void WriteChunk(AudioChunkRef chunkRef);
	int ReadChunkMono(AudioChunkRef& chunk);

	CStdString GetExtension();
private:
	SF_INFO	m_fileInfo;
	SNDFILE*	m_pFile;
};

#endif