Class FMOD_CODEC_DESCRIPTION

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<FMOD_CODEC_DESCRIPTION>
org.lwjgl.fmod.FMOD_CODEC_DESCRIPTION
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class FMOD_CODEC_DESCRIPTION extends org.lwjgl.system.Struct<FMOD_CODEC_DESCRIPTION> implements org.lwjgl.system.NativeResource
Codec structures

Layout


 struct FMOD_CODEC_DESCRIPTION {
     unsigned int apiversion;
     char const * name;
     unsigned int version;
     int defaultasstream;
     FMOD_TIMEUNIT timeunits;
     FMOD_CODEC_OPEN_CALLBACK open;
     FMOD_CODEC_CLOSE_CALLBACK close;
     FMOD_CODEC_READ_CALLBACK read;
     FMOD_CODEC_GETLENGTH_CALLBACK getlength;
     FMOD_CODEC_SETPOSITION_CALLBACK setposition;
     FMOD_CODEC_GETPOSITION_CALLBACK getposition;
     FMOD_CODEC_SOUNDCREATE_CALLBACK soundcreate;
     FMOD_CODEC_GETWAVEFORMAT_CALLBACK getwaveformat;
 }