Vuo  1.1.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Classes | Functions
VuoAudioInputDevice

Description

Information about an audio input device.

Classes

struct  VuoAudioInputDevice
 Information about an audio input device. More...
 

Functions

VuoAudioInputDevice VuoAudioInputDevice_makeFromJson (struct json_object *js)
 Decodes the JSON object js to create a new value.
 
struct json_objectVuoAudioInputDevice_getJson (const VuoAudioInputDevice value)
 Encodes value as a JSON object.
 
char * VuoAudioInputDevice_getSummary (const VuoAudioInputDevice value)
 Returns a compact string representation of value.
 
bool VuoAudioInputDevice_areEqual (VuoAudioInputDevice value1, VuoAudioInputDevice value2)
 Returns true if the two audio input device specifications are identical.
 
static VuoAudioInputDevice VuoAudioInputDevice_make (VuoInteger id, VuoText name, VuoInteger channelCount) __attribute__((const ))
 Returns an audio input device with the specified values.
 
VuoAudioInputDevice VuoAudioInputDevice_makeFromString (const char *str)
 Automatically generated function.
 
char * VuoAudioInputDevice_getString (const VuoAudioInputDevice value)
 Automatically generated function.
 
void VuoAudioInputDevice_retain (VuoAudioInputDevice value)
 Automatically generated function.
 
void VuoAudioInputDevice_release (VuoAudioInputDevice value)
 Automatically generated function.
 

Class Documentation

struct VuoAudioInputDevice
Class Members
VuoInteger channelCount The number of input channels on this device.
VuoInteger id If id is non-negative, use the specified device identifier.
VuoText name If id is negative, use the first device whose name contains name.

Function Documentation

bool VuoAudioInputDevice_areEqual ( VuoAudioInputDevice  value1,
VuoAudioInputDevice  value2 
)

Returns true if the two audio input device specifications are identical.

struct json_object* VuoAudioInputDevice_getJson ( const VuoAudioInputDevice  value)
read

Encodes value as a JSON object.

char* VuoAudioInputDevice_getString ( const VuoAudioInputDevice  value)

Automatically generated function.

char* VuoAudioInputDevice_getSummary ( const VuoAudioInputDevice  value)

Returns a compact string representation of value.

static VuoAudioInputDevice VuoAudioInputDevice_make ( VuoInteger  id,
VuoText  name,
VuoInteger  channelCount 
) const
inlinestatic

Returns an audio input device with the specified values.

VuoAudioInputDevice VuoAudioInputDevice_makeFromJson ( json_object js)

Decodes the JSON object js to create a new value.

Example:
{
"id" : -1,
"name" : ""
}
VuoAudioInputDevice VuoAudioInputDevice_makeFromString ( const char *  str)

Automatically generated function.

void VuoAudioInputDevice_release ( VuoAudioInputDevice  value)

Automatically generated function.

void VuoAudioInputDevice_retain ( VuoAudioInputDevice  value)

Automatically generated function.