Displaying 1 result from an estimated 1 matches for "begin_page".
Did you mean:
  begin_date
  
2009 Oct 08
0
Oggz 1.1.0 Release
...ype oggz_position:
/**
 * The position of an oggz_packet.
 */
typedef struct {
  /**
   * Granulepos calculated by inspection of codec data.
   * -1 if unknown
   */
  ogg_int64_t calc_granulepos;
  /**
   * Byte offset of the start of the page on which this
   * packet begins.
   */
  oggz_off_t begin_page_offset;
  /**
   * Byte offset of the start of the page on which this
   * packet ends.
   */
  oggz_off_t end_page_offset;
  /** Number of pages this packet spans. */
  int pages;
  /**
   * Index into begin_page's lacing values
   * for the segment that begins this packet.
   * NB. if begi...