summaryrefslogtreecommitdiff
path: root/orkaudio/audiofile/LibSndFileFile.h
diff options
context:
space:
mode:
Diffstat (limited to 'orkaudio/audiofile/LibSndFileFile.h')
-rw-r--r--orkaudio/audiofile/LibSndFileFile.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/orkaudio/audiofile/LibSndFileFile.h b/orkaudio/audiofile/LibSndFileFile.h
deleted file mode 100644
index e0516a8..0000000
--- a/orkaudio/audiofile/LibSndFileFile.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * 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 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
-