Files
meep-eep 5389c45ca4 Initial revision
git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@117 8092fc87-c524-0410-9efc-e669fe64eaf9
2002-10-14 23:55:51 +00:00

18 lines
418 B
C

#include <stdint.h>
typedef struct {
uint32_t sndcnt;
uint32_t vidcnt;
} frame_header;
typedef struct {
uint16_t magic; // always 0xf77f
uint16_t numsamples;
uint16_t tag; // this is NOT the initial predictor as it was
// marked in some file.
uint16_t indexl; // initial index for left channel
uint16_t indexr; // initial index for right channel
uint8_t data; // placeholder for data
} audio_chunk;