185 #if (defined(_WIN32) || defined(__CYGWIN__)) 223 return (p == NULL) ? 0 : p->ref;
228 operator bool()
const 244 return p ? p->sfinfo.frames : 0;
253 return p ? p->sfinfo.format : 0;
260 return p ? p->sfinfo.channels : 0;
267 return p ? p->sfinfo.samplerate : 0;
285 int error(
void)
const;
303 int command(
int cmd,
void *data,
int datasize);
356 int setString(
int str_type,
const char *str);
366 const char *
getString(
int str_type)
const;
561 inline SndfileHandle::SNDFILE_ref::SNDFILE_ref(
void) : sf(NULL), sfinfo(), ref(1)
565 inline SndfileHandle::SNDFILE_ref::~SNDFILE_ref(
void)
574 p =
new (std::nothrow) SNDFILE_ref();
580 p->sfinfo.frames = 0;
581 p->sfinfo.channels = chans;
582 p->sfinfo.format = fmt;
583 p->sfinfo.samplerate = srate;
584 p->sfinfo.sections = 0;
585 p->sfinfo.seekable = 0;
587 p->sf =
sf_open(path, mode, &p->sfinfo);
597 p =
new (std::nothrow) SNDFILE_ref();
603 p->sfinfo.frames = 0;
604 p->sfinfo.channels = chans;
605 p->sfinfo.format = fmt;
606 p->sfinfo.samplerate = srate;
607 p->sfinfo.sections = 0;
608 p->sfinfo.seekable = 0;
610 p->sf =
sf_open(path.c_str(), mode, &p->sfinfo);
623 p =
new (std::nothrow) SNDFILE_ref();
629 p->sfinfo.frames = 0;
630 p->sfinfo.channels = chans;
631 p->sfinfo.format = fmt;
632 p->sfinfo.samplerate = srate;
633 p->sfinfo.sections = 0;
634 p->sfinfo.seekable = 0;
636 p->sf =
sf_open_fd(fd, mode, &p->sfinfo, close_desc);
643 int chans,
int srate)
646 p =
new (std::nothrow) SNDFILE_ref();
652 p->sfinfo.frames = 0;
653 p->sfinfo.channels = chans;
654 p->sfinfo.format = fmt;
655 p->sfinfo.samplerate = srate;
656 p->sfinfo.sections = 0;
657 p->sfinfo.seekable = 0;
667 if (p != NULL && --p->ref == 0)
681 if (p != NULL && --p->ref == 0)
703 return sf_command(p->sf, cmd, data, datasize);
708 return sf_seek(p->sf, frame_count, whence);
856 return (p ? p->sf : NULL);
861 if (p == NULL || (p->ref != 1))
871 #if (defined(_WIN32) || defined(__CYGWIN__)) 876 p =
new (std::nothrow) SNDFILE_ref();
882 p->sfinfo.frames = 0;
883 p->sfinfo.channels = chans;
884 p->sfinfo.format = fmt;
885 p->sfinfo.samplerate = srate;
886 p->sfinfo.sections = 0;
887 p->sfinfo.seekable = 0;
889 p->sf = sf_wchar_open(wpath, mode, &p->sfinfo);
SNDFILE * takeOwnership(void)
Takes ownership of handle, if reference count is 1.
Definition: sndfile2k.hpp:859
int seekable
Indicates that sound file is seekable if set to non-zero value.
Definition: sndfile2k.h:1099
SNDFILE2K_EXPORT sf_count_t sf_writef_float(SNDFILE *sndfile, const float *ptr, sf_count_t frames)
Writes float (32-bit) frames to file.
SNDFILE2K_EXPORT sf_count_t sf_read_short(SNDFILE *sndfile, short *ptr, sf_count_t items)
Reads short (16-bit) samples from file.
bool operator==(const SndfileHandle &rhs) const
Compares one sound file object with other.
Definition: sndfile2k.hpp:235
int64_t sf_count_t
Represents file offset type.
Definition: sndfile2k.h:1078
SNDFILE2K_EXPORT int sf_error(SNDFILE *sndfile)
Returns the current error code for the given SNDFILE.
SNDFILE2K_EXPORT sf_count_t sf_writef_short(SNDFILE *sndfile, const short *ptr, sf_count_t frames)
Writes short (16-bit) frames to file.
sf_count_t writef(const short *ptr, sf_count_t frames)
Writes short (16-bit) frames to file.
Definition: sndfile2k.hpp:824
sf_count_t read(short *ptr, sf_count_t items)
Reads short (16-bit) samples from file.
Definition: sndfile2k.hpp:764
int command(int cmd, void *data, int datasize)
Gets or sets parameters of library or sound file object.
Definition: sndfile2k.hpp:701
Read mode.
Definition: sndfile2k.h:978
SNDFILE2K_EXPORT int sf_command(SNDFILE *sndfile, int command, void *data, int datasize)
Gets or sets parameters of library or sound file.
SNDFILE2K_EXPORT sf_count_t sf_write_float(SNDFILE *sndfile, const float *ptr, sf_count_t items)
Writes float (32-bit) samples to file.
SNDFILE2K_EXPORT SNDFILE * sf_open_fd(int fd, int mode, SF_INFO *sfinfo, int close_desc)
Opens sound file using POSIX file descriptor.
int channels
The count of channels.
Definition: sndfile2k.h:1093
int setString(int str_type, const char *str)
Sets string field.
Definition: sndfile2k.hpp:731
SNDFILE2K_EXPORT sf_count_t sf_write_short(SNDFILE *sndfile, const short *ptr, sf_count_t items)
Writes short (16-bit) samples to file.
SNDFILE2K_EXPORT sf_count_t sf_read_int(SNDFILE *sndfile, int *ptr, sf_count_t items)
Reads integer (32-bit) samples from file.
int sections
Unused.
Definition: sndfile2k.h:1097
sf_count_t readf(short *ptr, sf_count_t frames)
Reads short (16-bit) frames from file.
Definition: sndfile2k.hpp:804
SNDFILE2K_EXPORT const char * sf_strerror(SNDFILE *sndfile)
Returns textual description of the current error code for the given SNDFILE.
SNDFILE2K_EXPORT SNDFILE * sf_open(const char *path, int mode, SF_INFO *sfinfo)
Opens the specified sound file using path.
sf_count_t readRaw(void *ptr, sf_count_t bytes)
Read raw bytes from sound file.
Definition: sndfile2k.hpp:844
SNDFILE2K_EXPORT int sf_set_string(SNDFILE *sndfile, int str_type, const char *str)
Sets string field for given sound file.
SNDFILE2K_EXPORT sf_count_t sf_write_double(SNDFILE *sndfile, const double *ptr, sf_count_t items)
Writes double (64-bit) samples to file.
int samplerate
The sampling rate in Hz.
Definition: sndfile2k.h:1091
SNDFILE2K_EXPORT SNDFILE * sf_open_virtual(SF_VIRTUAL_IO *sfvirtual, int mode, SF_INFO *sfinfo, void *user_data)
Opens sound file using Virtual I/O context.
SndFile2K C API reference.
static int formatCheck(int format, int channels, int samplerate)
Checks correctness of format parameters combination.
Definition: sndfile2k.hpp:748
SNDFILE2K_EXPORT sf_count_t sf_write_raw(SNDFILE *sndfile, const void *ptr, sf_count_t bytes)
Writes raw bytes to sound file.
SndFile class.
Definition: sndfile2k.hpp:60
SNDFILE2K_EXPORT sf_count_t sf_readf_int(SNDFILE *sndfile, int *ptr, sf_count_t frames)
Reads integer (32-bit) frames from file.
int samplerate(void) const
Gets samplerate.
Definition: sndfile2k.hpp:265
int channels(void) const
Gets number of channels.
Definition: sndfile2k.hpp:258
SNDFILE2K_EXPORT int sf_close(SNDFILE *sndfile)
Closes the SNDFILE object.
void writeSync(void)
Forces writing of data to disk.
Definition: sndfile2k.hpp:711
SNDFILE2K_EXPORT void sf_write_sync(SNDFILE *sndfile)
Forces writing of data to disk.
SNDFILE2K_EXPORT sf_count_t sf_writef_int(SNDFILE *sndfile, const int *ptr, sf_count_t frames)
Writes integer (32-bit) frames to file.
SNDFILE2K_EXPORT sf_count_t sf_read_raw(SNDFILE *sndfile, void *ptr, sf_count_t bytes)
Read raw bytes from sound file.
SndfileHandle(void)
SndFileHandle default constructor.
Definition: sndfile2k.hpp:79
SNDFILE2K_EXPORT sf_count_t sf_readf_short(SNDFILE *sndfile, short *ptr, sf_count_t frames)
Reads short (16-bit) frames from file.
int error(void) const
Gets the current error code of sound file object.
Definition: sndfile2k.hpp:691
SNDFILE2K_EXPORT sf_count_t sf_readf_double(SNDFILE *sndfile, double *ptr, sf_count_t frames)
Reads double (64-bit) frames from file.
Defines virtual file I/O context.
Definition: sndfile2k.h:1439
SNDFILE2K_EXPORT sf_count_t sf_write_int(SNDFILE *sndfile, const int *ptr, sf_count_t items)
Writes integer (32-bit) samples to file.
SNDFILE2K_EXPORT sf_count_t sf_read_double(SNDFILE *sndfile, double *ptr, sf_count_t items)
Reads double (64-bit) samples from file.
sf_count_t writeRaw(const void *ptr, sf_count_t bytes)
Writes raw bytes to sound file.
Definition: sndfile2k.hpp:849
int format
Combination of major and minor format flags. See SF_FORMAT for details.
Definition: sndfile2k.h:1095
SNDFILE2K_EXPORT sf_count_t sf_readf_float(SNDFILE *sndfile, float *ptr, sf_count_t frames)
Reads float (32-bit) frames from file.
struct sf_private_tag SNDFILE
Represents opened sound file.
Definition: sndfile2k.h:1072
const char * getString(int str_type) const
Gets string field.
Definition: sndfile2k.hpp:743
SNDFILE2K_EXPORT const char * sf_get_string(SNDFILE *sndfile, int str_type)
Gets string field from given sound file.
int refCount(void) const
Gets number of references to this sound file.
Definition: sndfile2k.hpp:221
SNDFILE2K_EXPORT sf_count_t sf_read_float(SNDFILE *sndfile, float *ptr, sf_count_t items)
Reads float (32-bit) samples from file.
SNDFILE2K_EXPORT sf_count_t sf_seek(SNDFILE *sndfile, sf_count_t frames, int whence)
Changes position of sound file.
~SndfileHandle(void)
SndfileHandle destructor.
Definition: sndfile2k.hpp:665
sf_count_t write(const short *ptr, sf_count_t items)
Writes short (16-bit) samples to file.
Definition: sndfile2k.hpp:784
sf_count_t frames
The count of frames.
Definition: sndfile2k.h:1089
int format(void) const
Gets format.
Definition: sndfile2k.hpp:251
Contains information about format of sound file.
Definition: sndfile2k.h:1086
sf_count_t frames(void) const
Gets number of frames.
Definition: sndfile2k.hpp:242
const char * strError(void) const
Returns textual description of the current error code.
Definition: sndfile2k.hpp:696
SNDFILE2K_EXPORT int sf_format_check(const SF_INFO *info)
Checks correctness of SF_INFO::format field.
sf_count_t seek(sf_count_t frames, int whence)
Changes position of sound file.
Definition: sndfile2k.hpp:706
SNDFILE2K_EXPORT sf_count_t sf_writef_double(SNDFILE *sndfile, const double *ptr, sf_count_t frames)
Writes double (64-bit) frames to file.
SndfileHandle & operator=(const SndfileHandle &rhs)
Assignment operator.
Definition: sndfile2k.hpp:677
SNDFILE * rawHandle(void)
Gets ccess to the raw sound file handle.
Definition: sndfile2k.hpp:854