Module: Seal
- Defined in:
- src/rubyext.c,
src/rubyext.c
Overview
The top-level namespace of Seal. This module contains interfaces for global Seal operations.
Defined Under Namespace
Modules: Format Classes: Buffer, EffectSlot, Listener, Reverb, SealError, Source, Stream
Constant Summary
- VERSION =
A string indicating the version of Seal.
rb_str_new2(seal_get_version())
- LISTENER =
The singleton Listener instance.
listener
Class Method Summary (collapse)
-
+ (nil) cleanup
Uninitializes Seal and invalidate all Seal objects.
-
+ (Object) listener
Gets the singleton Listener instance.
-
+ (Fixnum) per_source_effect_limit
Returns the maximum number of effect slots a source can feed concurrently.
-
+ (Object) startup
Initializes Seal by specifying the device name str.
Class Method Details
+ (nil) cleanup
Uninitializes Seal and invalidate all Seal objects. Thread-unsafe.
345 346 347 348 349 350 351 352 |
# File 'src/rubyext.c', line 345
static
VALUE
cleanup()
{
seal_cleanup();
return Qnil;
}
|
+ (Object) listener
Gets the singleton Listener instance.
1701 1702 1703 1704 1705 1706 |
# File 'src/rubyext.c', line 1701
static
VALUE
get_listener()
{
return rb_const_get(mSeal, rb_intern("LISTENER"));
}
|
+ (Fixnum) per_source_effect_limit
Returns the maximum number of effect slots a source can feed concurrently.
360 361 362 363 364 365 |
# File 'src/rubyext.c', line 360
static
VALUE
per_source_effect_limit()
{
return INT2NUM(seal_get_per_src_effect_limit());
}
|
+ (nil) startup + (nil) startup(str)
Initializes Seal by specifying the device name str. This function
is not re-entrant nor thread-safe and should be called only once per Seal
session. Match a call to seal_startup
with a call to
seal_cleanup
and never call seal_starup
twice in
a row.
326 327 328 329 330 331 332 333 334 335 336 337 |
# File 'src/rubyext.c', line 326
static
VALUE
startup(int argc, VALUE* argv)
{
VALUE rstring;
rb_scan_args(argc, argv, "01", &rstring);
check_seal_err(seal_startup(NIL_P(rstring)
? 0 : rb_string_value_ptr(&rstring)));
return Qnil;
}
|