2014-06-20 06:03:13 +00:00
|
|
|
#ifndef SNDFILE_DECODER_H
|
|
|
|
#define SNDFILE_DECODER_H
|
|
|
|
|
|
|
|
#include "i_soundinternal.h"
|
2018-03-10 17:45:11 +00:00
|
|
|
#include "files.h"
|
2014-06-20 06:03:13 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_SNDFILE
|
|
|
|
|
2017-04-17 15:05:09 +00:00
|
|
|
#ifndef DYN_SNDFILE
|
2014-06-20 06:03:13 +00:00
|
|
|
#include "sndfile.h"
|
2017-04-17 15:05:09 +00:00
|
|
|
#else
|
|
|
|
#include "thirdparty/sndfile.h"
|
|
|
|
#endif
|
2014-06-20 06:03:13 +00:00
|
|
|
|
|
|
|
struct SndFileDecoder : public SoundDecoder
|
|
|
|
{
|
|
|
|
virtual void getInfo(int *samplerate, ChannelConfig *chans, SampleType *type);
|
|
|
|
|
|
|
|
virtual size_t read(char *buffer, size_t bytes);
|
2017-04-26 18:51:06 +00:00
|
|
|
virtual TArray<uint8_t> readAll();
|
2017-04-25 19:30:11 +00:00
|
|
|
virtual bool seek(size_t ms_offset, bool ms, bool mayrestart);
|
|
|
|
virtual size_t getSampleOffset();
|
2014-06-26 04:14:35 +00:00
|
|
|
virtual size_t getSampleLength();
|
2014-06-20 06:03:13 +00:00
|
|
|
|
2014-06-25 11:25:36 +00:00
|
|
|
SndFileDecoder() : SndFile(0) { }
|
2014-06-20 06:03:13 +00:00
|
|
|
virtual ~SndFileDecoder();
|
|
|
|
|
|
|
|
protected:
|
2018-03-10 17:45:11 +00:00
|
|
|
virtual bool open(FileRdr &reader);
|
2014-06-20 06:03:13 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
SNDFILE *SndFile;
|
|
|
|
SF_INFO SndInfo;
|
|
|
|
|
2018-03-10 17:45:11 +00:00
|
|
|
FileRdr Reader;
|
2014-06-20 06:03:13 +00:00
|
|
|
static sf_count_t file_get_filelen(void *user_data);
|
|
|
|
static sf_count_t file_seek(sf_count_t offset, int whence, void *user_data);
|
|
|
|
static sf_count_t file_read(void *ptr, sf_count_t count, void *user_data);
|
|
|
|
static sf_count_t file_write(const void *ptr, sf_count_t count, void *user_data);
|
|
|
|
static sf_count_t file_tell(void *user_data);
|
|
|
|
|
|
|
|
// Make non-copyable
|
|
|
|
SndFileDecoder(const SndFileDecoder &rhs);
|
|
|
|
SndFileDecoder& operator=(const SndFileDecoder &rhs);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* SNDFILE_DECODER_H */
|