Displaying 1 result from an estimated 1 matches for "oggz_position".
2009 Oct 08
0
Oggz 1.1.0 Release
...in the file later.
As of liboggz 1.1.0, an OggzRead callback provides an oggz_packet:
/**
* An ogg_packet and its position in the stream.
*/
typedef struct {
/** The ogg_packet structure, defined in <ogg/ogg.h> */
ogg_packet op;
/** Its position */
oggz_position pos;
} oggz_packet;
Older applications will continue to work, casting this structure as
an ogg_packet. The new structure includes additional information in
the pos field, of type oggz_position:
/**
* The position of an oggz_packet.
*/
typedef struct {
/**
* Granulepos calculated by ins...