Displaying 4 results from an estimated 4 matches for "bitstserialnumber".
2012 May 21
1
Problems seeking with liboggz
...of time tell function = %8lld", seektime, rseek, tellseek);
  }
 
  oggz_close(pOGGZ);
  return 0;
}
//-----------------------------------------------------------------------------
int myReadPageCallback (OGGZ* oggz, const ogg_page* og, long serialno, void* user_data)
{
  ogg_int64_t bitstSerialNumber = og->header[14] + 256 * (og->header[15] + 256 * (og->header[16] + 256 * og->header[17]));
  ogg_int64_t pageSeqNumber     = og->header[18] + 256 * (og->header[19] + 256 * (og->header[20] + 256 * og->header[21]));
  ogg_int64_t headerGranulePos  = og->header[6]  + 256 *...
2012 May 21
0
Problems seeking with liboggz
...>   oggz_close(pOGGZ);
>
>   return 0;
>
> }
>
> //--------------------------------------------------------------------
> ---------
>
> int myReadPageCallback (OGGZ* oggz, const ogg_page* og, long serialno,
> void*
> user_data)
>
> {
>
>   ogg_int64_t bitstSerialNumber = og->header[14] + 256 * 
> (og->header[15] +
> 256 * (og->header[16] + 256 * og->header[17]));
>
>   ogg_int64_t pageSeqNumber     = og->header[18] + 256 * 
> (og->header[19] +
> 256 * (og->header[20] + 256 * og->header[21]));
>
>   ogg_int64_t heade...
2012 May 23
0
Problems seeking with liboggz
...>   oggz_close(pOGGZ);
>
>   return 0;
>
> }
>
> //--------------------------------------------------------------------
> ---------
>
> int myReadPageCallback (OGGZ* oggz, const ogg_page* og, long serialno,
> void*
> user_data)
>
> {
>
>   ogg_int64_t bitstSerialNumber = og->header[14] + 256 * 
> (og->header[15] +
> 256 * (og->header[16] + 256 * og->header[17]));
>
>   ogg_int64_t pageSeqNumber     = og->header[18] + 256 * 
> (og->header[19] +
> 256 * (og->header[20] + 256 * og->header[21]));
>
>   ogg_int64_t heade...
2012 May 16
2
Problems seeking with liboggz
Hi,
 
  I intend to use Ogg+Speex for voice recording/playback in a VoIP app.
  I am experimenting with liboggz to get acquainted with its API. 
  As test files I am using some Ogg-Speex files converted from WAV files
with speexenc.exe.
  
  I wrote a little testing app in Visual Studio 2010 under Windows 7. 
  I defined OggzReadPage and OggzReadPacket callbacks with
oggz_set_read_page()