(C)Copyright 2000 NTT Cyber Space Laboratories

Manual for headerInfo


name
headerInfo - standard header information
style
#Include "twinvq.h"

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) */
} headerInfo;

functionality
Struct headerInfo contains the standard header information.
file name containing the definition
twinvq.h