File: ogg.h

package info (click to toggle)
freespace2 3.7.0%2Brepack-2
  • links: PTS, VCS
  • area: non-free
  • in suites: jessie, jessie-kfreebsd
  • size: 22,848 kB
  • ctags: 41,897
  • sloc: cpp: 369,931; makefile: 1,060; xml: 129; sh: 112
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_