Vuo  1.2.8
Classes | Macros | Functions
VuoAudioFrame

Description

A list of VuoAudioSamples (per-channel) and timestamp for one frame of audio.

of video.

Classes

struct  VuoAudioFrame
 A list of VuoAudioSamples (per-channel) and timestamp for one frame of audio. More...
 

Macros

#define VuoAudioFrame_NoTimestamp   -INFINITY
 VuoAudioFrame.timestamp's value when no timestamp is available. More...
 

Functions

VuoAudioFrame VuoAudioFrame_makeFromJson (struct json_object *js)
 
Decodes the JSON object js to create a new value. More...
 
struct json_objectVuoAudioFrame_getJson (const VuoAudioFrame value)
 Encodes value as a JSON object. More...
 
char * VuoAudioFrame_getSummary (const VuoAudioFrame value)
 Returns a compact string representation of value. More...
 
bool VuoAudioFrame_areEqual (VuoAudioFrame value1, VuoAudioFrame value2)
 Returns true if the frames have matching timestamps within a tolerance of 1 millisecond. More...
 
static VuoAudioFrame VuoAudioFrame_make (VuoList_VuoAudioSamples channels, VuoReal timestamp) __attribute__((const))
 Returns a new VuoAudioFrame. More...
 
VuoAudioFrame VuoAudioFrame_makeFromString (const char *str)
 Automatically generated function. More...
 
char * VuoAudioFrame_getString (const VuoAudioFrame value)
 Automatically generated function. More...
 
void VuoAudioFrame_retain (VuoAudioFrame value)
 Automatically generated function. More...
 
void VuoAudioFrame_release (VuoAudioFrame value)
 Automatically generated function. More...
 

Class Documentation

◆ VuoAudioFrame

struct VuoAudioFrame
Class Members
char blah[42]
Todo:
https://b33p.net/kosada/node/4124
VuoList_VuoAudioSamples channels
VuoReal timestamp

Macro Definition Documentation

◆ VuoAudioFrame_NoTimestamp

#define VuoAudioFrame_NoTimestamp   -INFINITY

VuoAudioFrame.timestamp's value when no timestamp is available.

Function Documentation

◆ VuoAudioFrame_areEqual()

bool VuoAudioFrame_areEqual ( VuoAudioFrame  value1,
VuoAudioFrame  value2 
)

Returns true if the frames have matching timestamps within a tolerance of 1 millisecond.

◆ VuoAudioFrame_getJson()

struct json_object* VuoAudioFrame_getJson ( const VuoAudioFrame  value)

Encodes value as a JSON object.

◆ VuoAudioFrame_getString()

char* VuoAudioFrame_getString ( const VuoAudioFrame  value)

Automatically generated function.

◆ VuoAudioFrame_getSummary()

char* VuoAudioFrame_getSummary ( const VuoAudioFrame  value)

Returns a compact string representation of value.

◆ VuoAudioFrame_make()

static VuoAudioFrame VuoAudioFrame_make ( VuoList_VuoAudioSamples  channels,
VuoReal  timestamp 
) const
inlinestatic

Returns a new VuoAudioFrame.

◆ VuoAudioFrame_makeFromJson()

VuoAudioFrame VuoAudioFrame_makeFromJson ( json_object js)


Decodes the JSON object js to create a new value.

Example:
{
"samples" : NULL,
"timestamp" : 0.0
}

◆ VuoAudioFrame_makeFromString()

VuoAudioFrame VuoAudioFrame_makeFromString ( const char *  str)

Automatically generated function.

◆ VuoAudioFrame_release()

void VuoAudioFrame_release ( VuoAudioFrame  value)

Automatically generated function.

◆ VuoAudioFrame_retain()

void VuoAudioFrame_retain ( VuoAudioFrame  value)

Automatically generated function.