1 /********************************************************************
3 * THIS FILE IS PART OF THE OggVorbis 'TREMOR' CODEC SOURCE CODE. *
5 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
6 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
7 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
9 * THE OggVorbis 'TREMOR' SOURCE CODE IS (C) COPYRIGHT 1994-2002 *
10 * BY THE Xiph.Org FOUNDATION http://www.xiph.org/ *
12 ********************************************************************
14 function: basic codebook pack/unpack/code/decode operations
16 ********************************************************************/
18 #include "config-tremor.h"
22 #include "ivorbiscodec.h"
27 /* unpacks a codebook from the packet buffer into the codebook struct,
28 readies the codebook auxiliary structures for decode *************/
29 int vorbis_staticbook_unpack(oggpack_buffer
*opb
,static_codebook
*s
){
31 memset(s
,0,sizeof(*s
));
33 /* make sure alignment is correct */
34 if(oggpack_read(opb
,24)!=0x564342)goto _eofout
;
36 /* first the basic parameters */
37 s
->dim
=oggpack_read(opb
,16);
38 s
->entries
=oggpack_read(opb
,24);
39 if(s
->entries
==-1)goto _eofout
;
41 /* codeword ordering.... length ordered or unordered? */
42 switch((int)oggpack_read(opb
,1)){
45 s
->lengthlist
=(long *)_ogg_malloc(sizeof(*s
->lengthlist
)*s
->entries
);
47 /* allocated but unused entries? */
48 if(oggpack_read(opb
,1)){
49 /* yes, unused entries */
51 for(i
=0;i
<s
->entries
;i
++){
52 if(oggpack_read(opb
,1)){
53 long num
=oggpack_read(opb
,5);
54 if(num
==-1)goto _eofout
;
55 s
->lengthlist
[i
]=num
+1;
60 /* all entries used; no tagging */
61 for(i
=0;i
<s
->entries
;i
++){
62 long num
=oggpack_read(opb
,5);
63 if(num
==-1)goto _eofout
;
64 s
->lengthlist
[i
]=num
+1;
72 long length
=oggpack_read(opb
,5)+1;
73 s
->lengthlist
=(long *)_ogg_malloc(sizeof(*s
->lengthlist
)*s
->entries
);
75 for(i
=0;i
<s
->entries
;){
76 long num
=oggpack_read(opb
,_ilog(s
->entries
-i
));
77 if(num
==-1)goto _eofout
;
78 for(j
=0;j
<num
&& i
<s
->entries
;j
++,i
++)
79 s
->lengthlist
[i
]=length
;
89 /* Do we have a mapping to unpack? */
90 switch((s
->maptype
=oggpack_read(opb
,4))){
95 /* implicitly populated value mapping */
96 /* explicitly populated value mapping */
98 s
->q_min
=oggpack_read(opb
,32);
99 s
->q_delta
=oggpack_read(opb
,32);
100 s
->q_quant
=oggpack_read(opb
,4)+1;
101 s
->q_sequencep
=oggpack_read(opb
,1);
107 quantvals
=_book_maptype1_quantvals(s
);
110 quantvals
=s
->entries
*s
->dim
;
114 /* quantized values */
115 s
->quantlist
=(long *)_ogg_malloc(sizeof(*s
->quantlist
)*quantvals
);
116 for(i
=0;i
<quantvals
;i
++)
117 s
->quantlist
[i
]=oggpack_read(opb
,s
->q_quant
);
119 if(quantvals
&&s
->quantlist
[quantvals
-1]==-1)goto _eofout
;
131 vorbis_staticbook_clear(s
);
135 /* the 'eliminate the decode tree' optimization actually requires the
136 codewords to be MSb first, not LSb. This is an annoying inelegancy
137 (and one of the first places where carefully thought out design
138 turned out to be wrong; Vorbis II and future Ogg codecs should go
139 to an MSb bitpacker), but not actually the huge hit it appears to
140 be. The first-stage decode table catches most words so that
141 bitreverse is not in the main execution path. */
143 static inline ogg_uint32_t
bitreverse(register ogg_uint32_t x
){
144 x
= ((x
>>16)&0x0000ffff) | ((x
<<16)&0xffff0000);
145 x
= ((x
>> 8)&0x00ff00ff) | ((x
<< 8)&0xff00ff00);
146 x
= ((x
>> 4)&0x0f0f0f0f) | ((x
<< 4)&0xf0f0f0f0);
147 x
= ((x
>> 2)&0x33333333) | ((x
<< 2)&0xcccccccc);
148 return((x
>> 1)&0x55555555) | ((x
<< 1)&0xaaaaaaaa);
151 STIN
long decode_packed_entry_number(codebook
*book
,
153 int read
=book
->dec_maxlength
;
155 long lok
= oggpack_look(b
,book
->dec_firsttablen
);
157 if (EXPECT(lok
>= 0, 1)) {
158 long entry
= book
->dec_firsttable
[lok
];
159 if(EXPECT(entry
&0x80000000UL
, 0)){
160 lo
=(entry
>>15)&0x7fff;
161 hi
=book
->used_entries
-(entry
&0x7fff);
163 oggpack_adv(b
, book
->dec_codelengths
[entry
-1]);
168 hi
=book
->used_entries
;
171 lok
= oggpack_look(b
, read
);
173 while(lok
<0 && read
>1)
174 lok
= oggpack_look(b
, --read
);
177 oggpack_adv(b
,1); /* force eop */
181 /* bisect search for the codeword in the ordered list */
183 ogg_uint32_t testword
=bitreverse((ogg_uint32_t
)lok
);
187 long test
=book
->codelist
[lo
+p
]>testword
;
192 if(book
->dec_codelengths
[lo
]<=read
){
193 oggpack_adv(b
, book
->dec_codelengths
[lo
]);
198 oggpack_adv(b
, read
+1);
202 static long decode_packed_block(codebook
*book
, oggpack_buffer
*b
,
205 long *bufend
= buf
+ n
;
207 while (bufptr
<bufend
) {
208 if (b
->headend
> 8) {
210 unsigned long bit
, bitend
;
212 ogg_uint32_t cache
= 0;
215 adr
= (unsigned long)b
->headptr
;
216 bit
= (adr
&3)*8+b
->headbit
;
217 ptr
= (ogg_uint32_t
*)(adr
&~3);
218 bitend
= ((adr
&3)+b
->headend
)*8;
219 while (bufptr
<bufend
){
221 if (EXPECT(cachesize
<book
->dec_maxlength
, 0)) {
222 if (bit
-cachesize
+32>=bitend
)
225 cache
=letoh32(ptr
[bit
>>5]) >> (bit
&31);
227 cache
|=letoh32(ptr
[(bit
>>5)+1]) << (32-(bit
&31));
232 entry
=book
->dec_firsttable
[cache
&((1<<book
->dec_firsttablen
)-1)];
233 if(EXPECT(entry
&0x80000000UL
, 0)){
234 lo
=(entry
>>15)&0x7fff;
235 hi
=book
->used_entries
-(entry
&0x7fff);
237 ogg_uint32_t testword
=bitreverse((ogg_uint32_t
)cache
);
239 while(EXPECT(hi
-lo
>1, 1)){
241 if (book
->codelist
[lo
+p
]>testword
)
253 int l
=book
->dec_codelengths
[entry
];
259 adr
=(unsigned long)b
->headptr
;
260 bit
-=(adr
&3)*8+cachesize
;
265 long r
= decode_packed_entry_number(book
, b
);
266 if (r
== -1) return bufptr
-buf
;
274 /* Decode side is specced and easier, because we don't need to find
275 matches using different criteria; we simply read and map. There are
276 two things we need to do 'depending':
278 We may need to support interleave. We don't really, but it's
279 convenient to do it here rather than rebuild the vector later.
281 Cascades may be additive or multiplicitive; this is not inherent in
282 the codebook, but set in the code using the codebook. Like
283 interleaving, it's easiest to do it here.
284 addmul==0 -> declarative (set the value)
285 addmul==1 -> additive
286 addmul==2 -> multiplicitive */
288 /* returns the [original, not compacted] entry number or -1 on eof *********/
289 long vorbis_book_decode(codebook
*book
, oggpack_buffer
*b
){
290 if(book
->used_entries
>0){
291 long packed_entry
=decode_packed_entry_number(book
,b
);
293 return(book
->dec_index
[packed_entry
]);
296 /* if there's no dec_index, the codebook unpacking isn't collapsed */
300 /* returns 0 on OK or -1 on eof *************************************/
301 long vorbis_book_decodevs_add(codebook
*book
,ogg_int32_t
*a
,
302 oggpack_buffer
*b
,int n
,int point
){
303 if(book
->used_entries
>0){
304 int step
=n
/book
->dim
;
305 long *entry
= (long *)alloca(sizeof(*entry
)*step
);
306 ogg_int32_t
**t
= (ogg_int32_t
**)alloca(sizeof(*t
)*step
);
308 int shift
=point
-book
->binarypoint
;
311 for (i
= 0; i
< step
; i
++) {
312 entry
[i
]=decode_packed_entry_number(book
,b
);
313 if(entry
[i
]==-1)return(-1);
314 t
[i
] = book
->valuelist
+entry
[i
]*book
->dim
;
316 for(i
=0,o
=0;i
<book
->dim
;i
++,o
+=step
)
318 a
[o
+j
]+=t
[j
][i
]>>shift
;
320 for (i
= 0; i
< step
; i
++) {
321 entry
[i
]=decode_packed_entry_number(book
,b
);
322 if(entry
[i
]==-1)return(-1);
323 t
[i
] = book
->valuelist
+entry
[i
]*book
->dim
;
325 for(i
=0,o
=0;i
<book
->dim
;i
++,o
+=step
)
327 a
[o
+j
]+=t
[j
][i
]<<-shift
;
333 long vorbis_book_decodev_add(codebook
*book
,ogg_int32_t
*a
,
334 oggpack_buffer
*b
,int n
,int point
){
335 if(book
->used_entries
>0){
338 int shift
=point
-book
->binarypoint
;
342 entry
= decode_packed_entry_number(book
,b
);
343 if(entry
==-1)return(-1);
344 t
= book
->valuelist
+entry
*book
->dim
;
345 for (j
=0;j
<book
->dim
;)
346 a
[i
++]+=t
[j
++]>>shift
;
351 entry
= decode_packed_entry_number(book
,b
);
352 if(entry
==-1)return(-1);
353 t
= book
->valuelist
+entry
*book
->dim
;
354 for (j
=0;j
<book
->dim
;)
355 a
[i
++]+=t
[j
++]<<shift
;
362 long vorbis_book_decodev_set(codebook
*book
,ogg_int32_t
*a
,
363 oggpack_buffer
*b
,int n
,int point
){
364 if(book
->used_entries
>0){
367 int shift
=point
-book
->binarypoint
;
372 entry
= decode_packed_entry_number(book
,b
);
373 if(entry
==-1)return(-1);
374 t
= book
->valuelist
+entry
*book
->dim
;
375 for (j
=0;j
<book
->dim
;){
376 a
[i
++]=t
[j
++]>>shift
;
382 entry
= decode_packed_entry_number(book
,b
);
383 if(entry
==-1)return(-1);
384 t
= book
->valuelist
+entry
*book
->dim
;
385 for (j
=0;j
<book
->dim
;){
386 a
[i
++]=t
[j
++]<<shift
;
394 for (j
=0;j
<book
->dim
;){
402 static long vorbis_book_decodevv_add_2ch_even(codebook
*book
,ogg_int32_t
**a
,
403 long offset
,oggpack_buffer
*b
,
406 int shift
=point
-book
->binarypoint
;
408 ogg_int32_t
*p0
= &(a
[0][offset
]);
409 ogg_int32_t
*p1
= &(a
[1][offset
]);
415 if (chunk
*book
->dim
>(n
-i
)*2)
416 chunk
=((n
-i
)*2+book
->dim
-1)/book
->dim
;
417 read
= decode_packed_block(book
,b
,entries
,chunk
);
419 const ogg_int32_t
*t
= book
->valuelist
+entries
[k
]*book
->dim
;
420 const ogg_int32_t
*u
= t
+book
->dim
;
422 *p0
++ += *t
++>>shift
;
423 *p1
++ += *t
++>>shift
;
426 if (read
<chunk
)return-1;
427 i
+= read
*book
->dim
/2;
433 if (chunk
*book
->dim
>(n
-i
)*2)
434 chunk
=((n
-i
)*2+book
->dim
-1)/book
->dim
;
435 read
= decode_packed_block(book
,b
,entries
,chunk
);
437 const ogg_int32_t
*t
= book
->valuelist
+entries
[k
]*book
->dim
;
438 const ogg_int32_t
*u
= t
+book
->dim
;
440 *p0
++ += *t
++<<shift
;
441 *p1
++ += *t
++<<shift
;
444 if (read
<chunk
)return-1;
445 i
+= read
*book
->dim
/2;
451 long vorbis_book_decodevv_add(codebook
*book
,ogg_int32_t
**a
,
453 oggpack_buffer
*b
,int n
,int point
){
454 if(book
->used_entries
>0){
455 long i
,j
,k
,chunk
,read
;
457 int shift
=point
-book
->binarypoint
;
460 if (!(book
->dim
&1) && ch
==2)
461 return vorbis_book_decodevv_add_2ch_even(book
,a
,offset
,b
,n
,point
);
465 for(i
=offset
;i
<offset
+n
;){
467 if (chunk
*book
->dim
>(offset
+n
-i
)*ch
)
468 chunk
=((offset
+n
-i
)*ch
+book
->dim
-1)/book
->dim
;
469 read
= decode_packed_block(book
,b
,entries
,chunk
);
471 const ogg_int32_t
*t
= book
->valuelist
+entries
[k
]*book
->dim
;
472 for (j
=0;j
<book
->dim
;j
++){
473 a
[chptr
++][i
]+=t
[j
]>>shift
;
480 if (read
<chunk
)return-1;
484 for(i
=offset
;i
<offset
+n
;){
486 if (chunk
*book
->dim
>(offset
+n
-i
)*ch
)
487 chunk
=((offset
+n
-i
)*ch
+book
->dim
-1)/book
->dim
;
488 read
= decode_packed_block(book
,b
,entries
,chunk
);
490 const ogg_int32_t
*t
= book
->valuelist
+entries
[k
]*book
->dim
;
491 for (j
=0;j
<book
->dim
;j
++){
492 a
[chptr
++][i
]+=t
[j
]<<shift
;
499 if (read
<chunk
)return-1;