mediaextract/src/ogg.h

17 lines
321 B
C
Raw Normal View History

2012-12-27 16:02:19 +00:00
#ifndef AUDIOEXTRACT_OGG_H__
#define AUDIOEXTRACT_OGG_H__
#include "audioextract.h"
2012-12-28 19:01:40 +00:00
#define OGG_MAGIC MAGIC("OggS")
2012-12-27 16:02:19 +00:00
#define OGG_HEADER_SIZE 27
struct ogg_info {
size_t length;
uint32_t pageno;
};
int ogg_ispage(const uint8_t *data, size_t input_len, struct ogg_info *pageinfo);
2012-12-27 16:02:19 +00:00
2012-12-31 20:02:57 +00:00
#endif /* AUDIOEXTRACT_OGG_H__ */