VCTAudioInfo

Definition

#include <vct.h>

typedef struct VCTAudioInfo
{
	u32         internalLatency;    
	u32         bufferLatency;      
	u32         bufferCount;        
	int         clockSkew;          
	u32         sequence;           
	u32         dropCount;          
	u32         jitter;             
	u32         jamCount;           
	u32         recoverCount;       
	VCTCodec    codec;              
} VCTAudioInfo;

Definition

internalLatency The internal latency in receiving (ticks value).
bufferLatency The latency in the current jitter buffer (ticks value).
bufferCount The number of samples currently stored in the audio buffer.
clockSkew Monitoring value of clock-skew (ticks value).
sequence Present audio sequences.
dropCount The number of packets dropped.
jitter Maximum jitter values (ticks value).
jamCount The number of times that a packet did not arrive in order.
recoverCount The number of times the Library used the obscuring process for dropped packets.
codec The audio format used by the transmitting machine.

Description

VCTAudioInfo is a structure used to store the audio streaming information to be retrieved by VCT_GetAudioInfo.

See Also

VCT_GetAudioInfo

Revision History

2006/01/25 First release