search for: oggpack_look

Displaying 4 results from an estimated 4 matches for "oggpack_look".

2004 Dec 02
0
tremor: macro-ize mask table
...mp;32)>>5) ) ) -1 ) \ + & 0xffffffff ) /* spans forward, skipping as many bytes as headend is negative; if headend is zero, simply finds next byte. If we're up to the end @@ -80,7 +74,7 @@ /* Read in bits without advancing the bitptr; bits <= 32 */ long oggpack_look(oggpack_buffer *b,int bits){ - unsigned long m=mask[bits]; + unsigned long m=MASK(bits); unsigned long ret; bits+=b->headbit; @@ -229,15 +223,15 @@ int tbit=bits?bits:ilog(b[i]); if((test=oggpack_look(&r,tbit))==0xffffffff) report("out of data!\n"); -...
2006 Aug 08
1
Lancer 20060807 is out
...backward. * reintroduce vorbis_oggpack_write for only static version. * fix problem in local_book_besterror_dim1x4. 2006/08/06 Lancer 20060807(test version for memory problem) Changes: * Since heap memory error occurs, remove vorbis_oggpack_write. that's optimization move to oggpack_write. * oggpack_look has been optimized. * modify SSE optimization in _ve_amp. * fix cache control code in accumulate_fit. * fix incomplete cache control in mdct. * remove exceptional process to zero in inspect_error. * rearrange SSE optimized code in _encodepart. 2006/08/02 Lancer 20060802(test version for memory pro...
2008 Aug 28
0
Error while cross compiling libvorbis 1.2.0
...g_stream_packetout' decoder_example.o(.text+0x5c4): undefined reference to `ogg_sync_clear' ../lib/.libs/libvorbis.so: undefined reference to `oggpack_writetrunc' ../lib/.libs/libvorbis.so: undefined reference to `oggpack_writeinit' ../lib/.libs/libvorbis.so: undefined reference to `oggpack_look' ../lib/.libs/libvorbis.so: undefined reference to `oggpack_bytes' ../lib/.libs/libvorbis.so: undefined reference to `oggpack_writeclear' ../lib/.libs/libvorbis.so: undefined reference to `oggpack_adv' ../lib/.libs/libvorbis.so: undefined reference to `oggpack_get_buffer' ../lib...
2006 Oct 09
1
Vorbis primitive API examples (LONG)
...p */ } ogg_packet; typedef struct { ogg_reference *header; int header_len; ogg_reference *body; long body_len; } ogg_page; /* Ogg BITSTREAM PRIMITIVES: bitstream ************************/ extern void oggpack_readinit(oggpack_buffer *b,ogg_reference *r); extern long oggpack_look(oggpack_buffer *b,int bits); extern void oggpack_adv(oggpack_buffer *b,int bits); extern long oggpack_read(oggpack_buffer *b,int bits); extern long oggpack_bytes(oggpack_buffer *b); extern long oggpack_bits(oggpack_buffer *b); extern int oggpack_eop(oggpack_buffer *b); /* Ogg BITSTREAM PRIMI...