(C)Copyright 2000 NTT Cyber Space Laboratories
Modified on 12 Oct. 2000
typedef struct{ char ID[KEYWORD_BYTES+VERSION_BYTES+1]; /* TwinVQ ID, first 12 characters */ long size; /* Common Chunk */ long channelMode; /* channel mode (mono:0/stereo:1) */ long bitRate; /* total bit rate (kbit/s) */ long samplingRate; /* sampling rate (44 if 44.1 kHz for example) */ long securityLevel; /* security level (always 0 ; no support) */ /* Text Chunk */ char Name[BUFSIZ]; /* name (optional) */ char Comt[BUFSIZ]; /* comment (optional) */ char Auth[BUFSIZ]; /* author (optional) */ char Cpyr[BUFSIZ]; /* copyright (optional) */ char File[BUFSIZ]; /* file name (optional) */ char Extr[BUFSIZ]; /* reserved (optional) */ /* Dsiz Chunk */ int Dsiz; /* data size*/ } headerInfo; |