File: ogg.h

package info (click to toggle)
freespace2 3.7.4%2Brepack-1
  • links: PTS, VCS
  • area: non-free
  • in suites: buster
  • size: 22,236 kB
  • sloc: cpp: 393,535; ansic: 4,106; makefile: 1,091; xml: 181; sh: 137
file content (17 lines) | stat: -rw-r--r-- 318 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

#ifndef _OGG_H_
#define _OGG_H_

#include <vorbis/vorbisfile.h>

//Setup the OGG stuff to use cfile
extern ov_callbacks cfile_callbacks;
extern ov_callbacks mmio_callbacks;

//Init the ogg system
int OGG_init();

//Similar to the stuff in mmreg.h
#define  OGG_FORMAT_VORBIS		0x3000	/* OGG Files */

#endif // _OGG_H_