Firelight Technologies FMOD Studio API
FMOD_STUDIO_BUFFER_INFO
Information for a single buffer in FMOD Studio.
C/C++ Syntax
typedef struct {
int currentusage;
int peakusage;
int capacity;
int stallcount;
float stalltime;
} FMOD_STUDIO_BUFFER_INFO;
JavaScript Syntax
struct FMOD_STUDIO_BUFFER_INFO
{
currentusage,
peakusage,
capacity,
stallcount,
stalltime,
};
Members
currentusage
Current buffer usage in bytes.
peakusage
Peak buffer usage in bytes.
capacity
Buffer capacity in bytes.
stallcount
Cumulative number of stalls due to buffer overflow.
stalltime
Cumulative amount of time stalled due to buffer overflow, in seconds.
Remarks
JavaScript only :
Not all fields are currently supported or may not work as expected at this time. To initialize an new instance in javascript use "FMOD.STUDIO_BUFFER_INFO()", no 'new' keyword is required.
See Also
Version 1.10.03 Built on Feb 1, 2018