Vuo  0.7.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_valueFromJson (struct json_object *js)
 Decodes the JSON object js to create a new value.
 
struct json_object * VuoAudioInputDevice_jsonFromValue (const VuoAudioInputDevice value)
 Encodes value as a JSON object.
 
char * VuoAudioInputDevice_summaryFromValue (const VuoAudioInputDevice value)
 Returns a compact string representation of value.
 
static VuoAudioInputDevice VuoAudioInputDevice_make (VuoInteger id, VuoText name, VuoInteger channelCount) __attribute__((const ))
 Returns an audio input device with the specified values.
 
VuoAudioInputDevice VuoAudioInputDevice_valueFromString (const char *str)
 Automatically generated function.
 
char * VuoAudioInputDevice_stringFromValue (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

struct json_object* VuoAudioInputDevice_jsonFromValue ( const VuoAudioInputDevice  value)
read

Encodes value as a JSON object.

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

Returns an audio input device with the specified values.

void VuoAudioInputDevice_release ( VuoAudioInputDevice  value)

Automatically generated function.

void VuoAudioInputDevice_retain ( VuoAudioInputDevice  value)

Automatically generated function.

char* VuoAudioInputDevice_stringFromValue ( const VuoAudioInputDevice  value)

Automatically generated function.

char* VuoAudioInputDevice_summaryFromValue ( const VuoAudioInputDevice  value)

Returns a compact string representation of value.

VuoAudioInputDevice VuoAudioInputDevice_valueFromJson ( json_object *  js)

Decodes the JSON object js to create a new value.

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

Automatically generated function.