本文整理汇总了C++中SoundFile::open方法的典型用法代码示例。如果您正苦于以下问题:C++ SoundFile::open方法的具体用法?C++ SoundFile::open怎么用?C++ SoundFile::open使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SoundFile
的用法示例。
在下文中一共展示了SoundFile::open方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: play
void ISoundDevice::play(const char *filename, Dumais::Sound::SoundFormat format)
{
if (this->getSampleSize() == 0) return;
LOG("Adding " << filename << " in sound device queue");
SoundFile *file = new SoundFile();
if (file->open(filename,format))
{
this->mSoundQueue.put(file);
this->setWorking();
} else {
delete file;
}
}
示例2: SoundFile_open
static VALUE SoundFile_open(VALUE self, VALUE filename)
{
// We want a string here...
Check_Type(filename, T_STRING);
// get the Unit instance
SoundFile *ugen;
Data_Get_Struct(self, SoundFile, ugen);
// Open the file, rethrowing errors as necessary
try {
ugen->open(StringValuePtr(filename));
}
catch(StkError &error) {
return self;
}
return self;
}
示例3: SoundFile_initialize
static VALUE SoundFile_initialize(int argc, VALUE *argv, VALUE self)
{
VALUE options;
/* One mandatory, one optional argument */
rb_scan_args(argc, argv, "01", &options);
SoundFile *soundfileugen;
Data_Get_Struct(self, SoundFile, soundfileugen);
if(options != Qnil){
Check_Type(options, T_HASH);
VALUE filename = rb_hash_aref(options, ID2SYM(rb_intern("file")));
soundfileugen->open(StringValuePtr(filename));
}
return self;
}