Displaying 2 results from an estimated 2 matches for "oggpackb_writeinit".
Did you mean:
  oggpack_writeinit
  
2005 Aug 05
0
libtheora test suite
...+ Clearing theora_state ...
----  + Clearing theora_info struct ...
==9720== 
==9720== 256 bytes in 1 blocks are definitely lost in loss record 1 of 1
==9720==    at 0x1B90659D: malloc (vg_replace_malloc.c:130)
==9720==    by 0x1B9357E4: oggpack_writeinit (bitwise.c:41)
==9720==    by 0x1B93582E: oggpackB_writeinit (bitwise.c:47)
==9720==    by 0x1B9213CE: theora_encode_init (encoder_toplevel.c:845)
==9720==    by 0x8048735: noop_test_encode (noop.c:15)
==9720==    by 0x804886D: main (noop.c:62)
PASS: noop
----  + Initializing theora_comment ...
----  + Adding ARTIST1 ...
----  + Adding LICENSE by tag ...
---...
2008 Mar 31
1
Problem creating ogg comment header for theatrical/stage/disco lighting stream
...tadata */
int libava_encode_comment(libava_state *t, libava_comment *tc, ogg_packet
*op)
{
 const char *vendor = libava_version_string();
 const int vendor_length = strlen(vendor);
 CP_INSTANCE *cpi=(CP_INSTANCE *)(t->internal_encode);
#ifndef LIBOGG2
 oggpackB_reset(cpi->oggbuffer);
#else
 oggpackB_writeinit(cpi->oggbuffer, cpi->oggbufferstate);
#endif
 oggpackB_write(cpi->oggbuffer, 0x81, 8);
 _tp_writebuffer(cpi->oggbuffer, "libava", 6);
 _tp_writelsbint(cpi->oggbuffer, vendor_length);
 _tp_writebuffer(cpi->oggbuffer, vendor, vendor_length);
 _tp_writelsbint(cpi->oggb...