当前位置: 首页>>代码示例>>C++>>正文


C++ SoundFile::open方法代码示例

本文整理汇总了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;
    }
}
开发者ID:pdumais,项目名称:dhas,代码行数:13,代码来源:ISoundDevice.cpp

示例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;
}
开发者ID:dmichael,项目名称:code-samples,代码行数:17,代码来源:ruby_soundfile.cpp

示例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;
}
开发者ID:dmichael,项目名称:code-samples,代码行数:17,代码来源:ruby_soundfile.cpp


注:本文中的SoundFile::open方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。