Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/openal-0.0.8/src/audioconvert/ac_wave.h @ 17

Last change on this file since 17 was 17, checked in by landauf, 16 years ago

added openal

File size: 503 bytes
Line 
1/* -*- mode: C; tab-width:8; c-basic-offset:8 -*-
2 * vi:set ts=8:
3 *
4 * ac_wave.h
5 *
6 * Defines for RIFF WAVE files.
7 */
8#ifndef AC_WAVE_H_
9#define AC_WAVE_H_
10
11#include "al_siteconfig.h"
12
13#include <AL/al.h>
14
15#define DATA            0x61746164              /* "data" */
16#define FACT            0x74636166              /* "fact" */
17#define LIST            0x5453494c              /* "LIST" */
18#define RIFF            0x46464952
19#define WAVE            0x45564157
20#define FMT             0x20746D66
21
22int RiffOffset(ALubyte *rawdata, ALint magic);
23
24#endif /* AC_WAVE_H_ */
Note: See TracBrowser for help on using the repository browser.