1 /*
2 * COOK compatible decoder
3 * Copyright (c) 2003 Sascha Sommer
4 * Copyright (c) 2005 Benjamin Larsson
5 *
6 * This file is part of FFmpeg.
7 *
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23 /**
24 * @file
25 * Cook compatible decoder. Bastardization of the G.722.1 standard.
26 * This decoder handles RealNetworks, RealAudio G2 data.
27 * Cook is identified by the codec name cook in RM files.
28 *
29 * To use this decoder, a calling application must supply the extradata
30 * bytes provided from the RM container; 8+ bytes for mono streams and
31 * 16+ for stereo streams (maybe more).
32 *
33 * Codec technicalities (all this assume a buffer length of 1024):
34 * Cook works with several different techniques to achieve its compression.
35 * In the timedomain the buffer is divided into 8 pieces and quantized. If
36 * two neighboring pieces have different quantization index a smooth
37 * quantization curve is used to get a smooth overlap between the different
38 * pieces.
39 * To get to the transformdomain Cook uses a modulated lapped transform.
40 * The transform domain has 50 subbands with 20 elements each. This
41 * means only a maximum of 50*20=1000 coefficients are used out of the 1024
42 * available.
43 */
44
47
56
58
59 /* the different Cook versions */
60 #define MONO 0x1000001
61 #define STEREO 0x1000002
62 #define JOINT_STEREO 0x1000003
63 #define MC_COOK 0x2000000 // multichannel Cook, not supported
64
65 #define SUBBAND_SIZE 20
66 #define MAX_SUBPACKETS 5
67
72
90
93
101
102 typedef struct cook {
103 /*
104 * The following 5 functions provide the lowlevel arithmetic on
105 * the internal audio buffers.
106 */
107 void (*scalar_dequant)(
struct cook *q,
int index,
int quant_index,
108 int *subband_coef_index, int *subband_coef_sign,
109 float *mlt_p);
110
111 void (*decouple)(
struct cook *q,
113 int subband,
114 float f1, float f2,
115 float *decode_buffer,
116 float *mlt_buffer1, float *mlt_buffer2);
117
118 void (*imlt_window)(
struct cook *q,
float *buffer1,
119 cook_gains *gains_ptr,
float *previous_buffer);
120
122 int gain_index, int gain_index_next);
123
124 void (*saturate_output)(
struct cook *q,
float *
out);
125
129 /* stream data */
132 /* states */
135
136 /* transform data */
139
140 /* VLC data */
141 VLC envelope_quant_index[13];
142 VLC sqvh[7];
// scalar quantization
143
144 /* generatable tables and related variables */
146 float gain_table[23];
147
148 /* data buffers */
149
152 float decode_buffer_1[1024];
153 float decode_buffer_2[1024];
154 float decode_buffer_0[1060];
/* static allocation for joint decode */
155
160
163
164 /*************** init functions ***************/
165
166 /* table generator */
168 {
169 /* fast way of computing 2^i and 2^(0.5*i) for -63 <= i < 64 */
170 int i;
171 static const float exp2_tab[2] = {1,
M_SQRT2};
172 float exp2_val =
powf(2, -63);
173 float root_val =
powf(2, -32);
174 for (i = -63; i < 64; i++) {
175 if (!(i & 1))
176 root_val *= 2;
179 exp2_val *= 2;
180 }
181 }
182
183 /* table generator */
185 {
186 int i;
188 for (i = 0; i < 23; i++)
191 }
192
193
195 {
196 int i, result;
197
198 result = 0;
199 for (i = 0; i < 13; i++) {
203 }
205 for (i = 0; i < 7; i++) {
209 }
210
218 }
219 }
220
222 return result;
223 }
224
226 {
227 int j, ret;
229
232
233 /* Initialize the MLT window: simple sine window. */
235 for (j = 0; j < mlt_size; j++)
237
238 /* Initialize the MDCT. */
241 return ret;
242 }
245
246 return 0;
247 }
248
250 {
251 int i;
252 for (i = 0; i < 5; i++)
254 }
255
256 /*************** init functions end ***********/
257
258 #define DECODE_BYTES_PAD1(bytes) (3 - ((bytes) + 3) % 4)
259 #define DECODE_BYTES_PAD2(bytes) ((bytes) % 4 + DECODE_BYTES_PAD1(2 * (bytes)))
260
261 /**
262 * Cook indata decoding, every 32 bits are XORed with 0x37c511f2.
263 * Why? No idea, some checksum/error detection method maybe.
264 *
265 * Out buffer size: extra bytes are needed to cope with
266 * padding/misalignment.
267 * Subpackets passed to the decoder can contain two, consecutive
268 * half-subpackets, of identical but arbitrary size.
269 * 1234 1234 1234 1234 extraA extraB
270 * Case 1: AAAA BBBB 0 0
271 * Case 2: AAAA ABBB BB-- 3 3
272 * Case 3: AAAA AABB BBBB 2 2
273 * Case 4: AAAA AAAB BBBB BB-- 1 5
274 *
275 * Nice way to waste CPU cycles.
276 *
277 * @param inbuffer pointer to byte array of indata
278 * @param out pointer to byte array of outdata
279 * @param bytes number of bytes
280 */
282 {
283 static const uint32_t
tab[4] = {
286 };
287 int i, off;
290 uint32_t *obuf = (uint32_t *) out;
291 /* FIXME: 64 bit platforms would be able to do 64 bits at a time.
292 * I'm too lazy though, should be something like
293 * for (i = 0; i < bitamount / 64; i++)
294 * (int64_t) out[i] = 0x37c511f237c511f2 ^ av_be2ne64(int64_t) in[i]);
295 * Buffer alignment needs to be checked. */
296
297 off = (intptr_t) inbuffer & 3;
298 buf = (const uint32_t *) (inbuffer - off);
299 c = tab[off];
300 bytes += 3 + off;
301 for (i = 0; i < bytes / 4; i++)
302 obuf[i] = c ^ buf[i];
303
304 return off;
305 }
306
308 {
309 int i;
312
313 /* Free allocated memory buffers. */
316
317 /* Free the transform. */
319
320 /* Free the VLC tables. */
321 for (i = 0; i < 13; i++)
323 for (i = 0; i < 7; i++)
327
329
330 return 0;
331 }
332
333 /**
334 * Fill the gain array for the timedomain quantization.
335 *
336 * @param gb pointer to the GetBitContext
337 * @param gaininfo array[9] of gain indexes
338 */
340 {
342
344
345 i = 0;
346 while (n--) {
349
350 while (i <= index)
351 gaininfo[i++] = gain;
352 }
353 while (i <= 8)
354 gaininfo[i++] = 0;
355 }
356
357 /**
358 * Create the quant index table needed for the envelope.
359 *
360 * @param q pointer to the COOKContext
361 * @param quant_index_table pointer to the array
362 */
364 int *quant_index_table)
365 {
366 int i, j, vlc_index;
367
368 quant_index_table[0] =
get_bits(&q->
gb, 6) - 6;
// This is used later in categorize
369
371 vlc_index = i;
374 } else {
375 vlc_index /= 2;
376 if (vlc_index < 1)
377 vlc_index = 1;
378 }
379 if (vlc_index > 13)
380 vlc_index = 13; // the VLC tables >13 are identical to No. 13
381
384 quant_index_table[i] = quant_index_table[i - 1] + j - 12; // differential encoding
385 if (quant_index_table[i] > 63 || quant_index_table[i] < -63) {
387 "Invalid quantizer %d at position %d, outside [-63, 63] range\n",
388 quant_index_table[i], i);
390 }
391 }
392
393 return 0;
394 }
395
396 /**
397 * Calculate the category and category_index vector.
398 *
399 * @param q pointer to the COOKContext
400 * @param quant_index_table pointer to the array
401 * @param category pointer to the category array
402 * @param category_index pointer to the category_index array
403 */
406 {
407 int exp_idx, bias, tmpbias1, tmpbias2, bits_left, num_bits,
index, v, i, j;
408 int exp_index2[102] = { 0 };
409 int exp_index1[102] = { 0 };
410
411 int tmp_categorize_array[128 * 2] = { 0 };
414
416
420
421 bias = -32;
422
423 /* Estimate bias. */
424 for (i = 32; i > 0; i = i / 2) {
425 num_bits = 0;
426 index = 0;
428 exp_idx = av_clip_uintp2((i - quant_index_table[index] + bias) / 2, 3);
429 index++;
431 }
432 if (num_bits >= bits_left - 32)
433 bias += i;
434 }
435
436 /* Calculate total number of bits. */
437 num_bits = 0;
439 exp_idx = av_clip_uintp2((bias - quant_index_table[i]) / 2, 3);
441 exp_index1[i] = exp_idx;
442 exp_index2[i] = exp_idx;
443 }
444 tmpbias1 = tmpbias2 = num_bits;
445
447 if (tmpbias1 + tmpbias2 > 2 * bits_left) { /* ---> */
448 int max = -999999;
449 index = -1;
451 if (exp_index1[i] < 7) {
452 v = (-2 * exp_index1[i]) - quant_index_table[i] + bias;
453 if (v >= max) {
454 max = v;
455 index = i;
456 }
457 }
458 }
459 if (index == -1)
460 break;
461 tmp_categorize_array[tmp_categorize_array1_idx++] =
index;
465 } else { /* <--- */
467 index = -1;
469 if (exp_index2[i] > 0) {
470 v = (-2 * exp_index2[i]) - quant_index_table[i] + bias;
471 if (v < min) {
472 min = v;
473 index = i;
474 }
475 }
476 }
477 if (index == -1)
478 break;
479 tmp_categorize_array[--tmp_categorize_array2_idx] =
index;
483 }
484 }
485
487 category[i] = exp_index2[i];
488
490 category_index[i] = tmp_categorize_array[tmp_categorize_array2_idx++];
491 }
492
493
494 /**
495 * Expand the category vector.
496 *
497 * @param q pointer to the COOKContext
498 * @param category pointer to the category array
499 * @param category_index pointer to the category_index array
500 */
502 int *category_index)
503 {
504 int i;
506 {
507 int idx = category_index[i];
509 --category[idx];
510 }
511 }
512
513 /**
514 * The real requantization of the mltcoefs
515 *
516 * @param q pointer to the COOKContext
517 * @param index index
518 * @param quant_index quantisation index
519 * @param subband_coef_index array of indexes to quant_centroid_tab
520 * @param subband_coef_sign signs of coefficients
521 * @param mlt_p pointer into the mlt buffer
522 */
524 int *subband_coef_index, int *subband_coef_sign,
525 float *mlt_p)
526 {
527 int i;
528 float f1;
529
531 if (subband_coef_index[i]) {
533 if (subband_coef_sign[i])
534 f1 = -f1;
535 } else {
536 /* noise coding if subband_coef_index[i] == 0 */
539 f1 = -f1;
540 }
542 }
543 }
544 /**
545 * Unpack the subband_coef_index and subband_coef_sign vectors.
546 *
547 * @param q pointer to the COOKContext
548 * @param category pointer to the category array
549 * @param subband_coef_index array of indexes to quant_centroid_tab
550 * @param subband_coef_sign signs of coefficients
551 */
553 int *subband_coef_index, int *subband_coef_sign)
554 {
555 int i, j;
556 int vlc, vd, tmp, result;
557
559 result = 0;
563 vlc = 0;
564 result = 1;
565 }
566 for (j = vd - 1; j >= 0; j--) {
569 vlc = tmp;
570 }
571 for (j = 0; j < vd; j++) {
572 if (subband_coef_index[i * vd + j]) {
575 } else {
576 result = 1;
577 subband_coef_sign[i * vd + j] = 0;
578 }
579 } else {
580 subband_coef_sign[i * vd + j] = 0;
581 }
582 }
583 }
584 return result;
585 }
586
587
588 /**
589 * Fill the mlt_buffer with mlt coefficients.
590 *
591 * @param q pointer to the COOKContext
592 * @param category pointer to the category array
593 * @param quant_index_table pointer to the array
594 * @param mlt_buffer pointer to mlt coefficients
595 */
597 int *quant_index_table, float *mlt_buffer)
598 {
599 /* A zero in this table means that the subband coefficient is
600 random noise coded. */
602 /* A zero in this table means that the subband coefficient is a
603 positive multiplicator. */
607
609 index = category[
band];
610 if (category[band] < 7) {
611 if (
unpack_SQVH(q, p, category[band], subband_coef_index, subband_coef_sign)) {
612 index = 7;
614 category[band + j] = 7;
615 }
616 }
617 if (index >= 7) {
618 memset(subband_coef_index, 0, sizeof(subband_coef_index));
619 memset(subband_coef_sign, 0, sizeof(subband_coef_sign));
620 }
622 subband_coef_index, subband_coef_sign,
624 }
625
626 /* FIXME: should this be removed, or moved into loop above? */
628 return;
629 }
630
631
633 {
634 int category_index[128] = { 0 };
636 int quant_index_table[102];
637 int res, i;
638
640 return res;
642 categorize(q, p, quant_index_table, category, category_index);
645 if (category[i] > 7)
647 }
649
650 return 0;
651 }
652
653
654 /**
655 * the actual requantization of the timedomain samples
656 *
657 * @param q pointer to the COOKContext
658 * @param buffer pointer to the timedomain buffer
659 * @param gain_index index for the block multiplier
660 * @param gain_index_next index for the next block multiplier
661 */
663 int gain_index, int gain_index_next)
664 {
665 int i;
666 float fc1, fc2;
667 fc1 =
pow2tab[gain_index + 63];
668
669 if (gain_index == gain_index_next) { // static gain
671 buffer[i] *= fc1;
672 } else { // smooth gain
673 fc2 = q->
gain_table[11 + (gain_index_next - gain_index)];
675 buffer[i] *= fc1;
676 fc1 *= fc2;
677 }
678 }
679 }
680
681 /**
682 * Apply transform window, overlap buffers.
683 *
684 * @param q pointer to the COOKContext
685 * @param inbuffer pointer to the mltcoefficients
686 * @param gains_ptr current and previous gains
687 * @param previous_buffer pointer to the previous buffer to be used for overlapping
688 */
690 cook_gains *gains_ptr,
float *previous_buffer)
691 {
693 int i;
694 /* The weird thing here, is that the two halves of the time domain
695 * buffer are swapped. Also, the newest data, that we save away for
696 * next frame, has the wrong sign. Hence the subtraction below.
697 * Almost sounds like a complex conjugate/reverse data/FFT effect.
698 */
699
700 /* Apply window and overlap */
702 inbuffer[i] = inbuffer[i] * fc * q->
mlt_window[i] -
704 }
705
706 /**
707 * The modulated lapped transform, this takes transform coefficients
708 * and transforms them into timedomain samples.
709 * Apply transform window, overlap buffers, apply gain profile
710 * and buffer management.
711 *
712 * @param q pointer to the COOKContext
713 * @param inbuffer pointer to the mltcoefficients
714 * @param gains_ptr current and previous gains
715 * @param previous_buffer pointer to the previous buffer to be used for overlapping
716 */
718 cook_gains *gains_ptr,
float *previous_buffer)
719 {
722 int i;
723
724 /* Inverse modified discrete cosine transform */
726
727 q->
imlt_window(q, buffer1, gains_ptr, previous_buffer);
728
729 /* Apply gain profile */
730 for (i = 0; i < 8; i++)
731 if (gains_ptr->
now[i] || gains_ptr->
now[i + 1])
733 gains_ptr->
now[i], gains_ptr->
now[i + 1]);
734
735 /* Save away the current to be previous block. */
736 memcpy(previous_buffer, buffer0,
738 }
739
740
741 /**
742 * function for getting the jointstereo coupling information
743 *
744 * @param q pointer to the COOKContext
745 * @param decouple_tab decoupling array
746 */
748 {
749 int i;
753 int length = end - start + 1;
754
755 if (start > end)
756 return 0;
757
758 if (vlc)
759 for (i = 0; i <
length; i++)
763 else
764 for (i = 0; i <
length; i++) {
769 }
770 decouple_tab[start + i] = v;
771 }
772 return 0;
773 }
774
775 /**
776 * function decouples a pair of signals from a single signal via multiplication.
777 *
778 * @param q pointer to the COOKContext
779 * @param subband index of the current subband
780 * @param f1 multiplier for channel 1 extraction
781 * @param f2 multiplier for channel 2 extraction
782 * @param decode_buffer input buffer
783 * @param mlt_buffer1 pointer to left channel mlt coefficients
784 * @param mlt_buffer2 pointer to right channel mlt coefficients
785 */
788 int subband,
789 float f1, float f2,
790 float *decode_buffer,
791 float *mlt_buffer1, float *mlt_buffer2)
792 {
793 int j, tmp_idx;
796 mlt_buffer1[SUBBAND_SIZE * subband + j] = f1 * decode_buffer[tmp_idx];
797 mlt_buffer2[SUBBAND_SIZE * subband + j] = f2 * decode_buffer[tmp_idx];
798 }
799 }
800
801 /**
802 * function for decoding joint stereo data
803 *
804 * @param q pointer to the COOKContext
805 * @param mlt_buffer1 pointer to left channel mlt coefficients
806 * @param mlt_buffer2 pointer to right channel mlt coefficients
807 */
809 float *mlt_buffer_left, float *mlt_buffer_right)
810 {
811 int i, j, res;
814 int idx, cpl_tmp;
815 float f1, f2;
816 const float *cplscale;
817
819
820 /* Make sure the buffers are zeroed out. */
821 memset(mlt_buffer_left, 0, 1024 * sizeof(*mlt_buffer_left));
822 memset(mlt_buffer_right, 0, 1024 * sizeof(*mlt_buffer_right));
824 return res;
826 return res;
827 /* The two channels are stored interleaved in decode_buffer. */
830 mlt_buffer_left[i * 20 + j] = decode_buffer[i * 40 + j];
831 mlt_buffer_right[i * 20 + j] = decode_buffer[i * 40 + 20 + j];
832 }
833 }
834
835 /* When we reach js_subband_start (the higher frequencies)
836 the coefficients are stored in a coupling scheme. */
840 idx -= decouple_tab[cpl_tmp];
842 f1 = cplscale[decouple_tab[cpl_tmp] + 1];
843 f2 = cplscale[idx];
844 q->
decouple(q, p, i, f1, f2, decode_buffer,
845 mlt_buffer_left, mlt_buffer_right);
847 }
848
849 return 0;
850 }
851
852 /**
853 * First part of subpacket decoding:
854 * decode raw stream bytes and read gain info.
855 *
856 * @param q pointer to the COOKContext
857 * @param inbuffer pointer to raw stream data
858 * @param gains_ptr array of current/prev gain pointers
859 */
863 {
865
871
872 /* Swap current and previous gains */
874 }
875
876 /**
877 * Saturate the output signal and interleave.
878 *
879 * @param q pointer to the COOKContext
880 * @param out pointer to the output vector
881 */
883 {
886 }
887
888
889 /**
890 * Final part of subpacket decoding:
891 * Apply modulated lapped transform, gain compensation,
892 * clip and convert to integer.
893 *
894 * @param q pointer to the COOKContext
895 * @param decode_buffer pointer to the mlt coefficients
896 * @param gains_ptr array of current/prev gain pointers
897 * @param previous_buffer pointer to the previous buffer to be used for overlapping
898 * @param out pointer to the output buffer
899 */
901 cook_gains *gains_ptr,
float *previous_buffer,
903 {
904 imlt_gain(q, decode_buffer, gains_ptr, previous_buffer);
905 if (out)
907 }
908
909
910 /**
911 * Cook subpacket decoding. This function returns one decoded subpacket,
912 * usually 1024 samples per channel.
913 *
914 * @param q pointer to the COOKContext
915 * @param inbuffer pointer to the inbuffer
916 * @param outbuffer pointer to the outbuffer
917 */
919 const uint8_t *inbuffer,
float **outbuffer)
920 {
921 int sub_packet_size = p->
size;
922 int res;
923
926
929 return res;
930 } else {
932 return res;
933
937 return res;
938 }
939 }
940
944
949 outbuffer ? outbuffer[p->
ch_idx + 1] : NULL);
950 else
953 outbuffer ? outbuffer[p->
ch_idx + 1] : NULL);
954 }
955
956 return 0;
957 }
958
959
961 int *got_frame_ptr,
AVPacket *avpkt)
962 {
965 int buf_size = avpkt->
size;
967 float **samples =
NULL;
968 int i, ret;
970 int chidx = 0;
971
972 if (buf_size < avctx->block_align)
973 return buf_size;
974
975 /* get output buffer */
979 return ret;
981 }
982
983 /* estimate subpacket sizes */
985
991 "frame subpacket size total > avctx->block_align!\n");
993 }
994 }
995
996 /* decode supbackets */
1002 "subpacket[%i] size %i js %i %i block_align %i\n",
1005
1007 return ret;
1012 }
1013
1014 /* Discard the first two frames: no valid audio. */
1017 *got_frame_ptr = 0;
1019 }
1020
1021 *got_frame_ptr = 1;
1022
1024 }
1025
1027 {
1028 //int i=0;
1029 #define PRINT(a, b) ff_dlog(q->avctx, " %s = %d\n", a, b);
1035 }
1046 }
1047
1048 /**
1049 * Cook initialization
1050 *
1051 * @param avctx pointer to the AVCodecContext
1052 */
1054 {
1060 unsigned int channel_mask = 0;
1061 int samples_per_frame = 0;
1062 int ret;
1064
1065 /* Take care of the codec specific extradata. */
1066 if (extradata_size < 8) {
1069 }
1071
1072 /* Take data from the AVCodecContext (RM container). */
1076 }
1077
1078 /* Initialize RNG. */
1080
1082
1083 while (edata_ptr < edata_ptr_end) {
1084 /* 8 for mono, 16 for stereo, ? for multichannel
1085 Swap to right endianness so we don't need to care later on. */
1086 if (extradata_size >= 8) {
1088 samples_per_frame = bytestream_get_be16(&edata_ptr);
1090 extradata_size -= 8;
1091 }
1092 if (extradata_size >= 8) {
1093 bytestream_get_be32(&edata_ptr); // Unknown unused
1098 }
1099
1101 extradata_size -= 8;
1102 }
1103
1104 /* Initialize extradata related variables. */
1107
1108 /* Initialize default data states. */
1112
1113 /* Initialize version-dependent variables */
1114
1123 }
1125 break;
1130 }
1132 break;
1137 }
1144 }
1147 }
1150 }
1151 break;
1154 if (extradata_size >= 4)
1156
1163
1166 }
1169 }
1170 } else
1172
1173 break;
1174 default:
1178 }
1179
1183 } else
1185
1186
1187 /* Initialize variable relations */
1189
1190 /* Try to catch some obviously faulty streams, othervise it might be exploitable */
1194 }
1195
1201 }
1202
1206 }
1210 }
1215
1219 }
1220
1222 s++;
1226 }
1227 }
1228 /* Generate tables */
1232
1234 return ret;
1235
1236
1239
1240 /* Pad the databuffer with:
1241 DECODE_BYTES_PAD1 or DECODE_BYTES_PAD2 for decode_bytes(),
1242 AV_INPUT_BUFFER_PADDING_SIZE, for the bitstreamreader. */
1249
1250 /* Initialize transform. */
1252 return ret;
1253
1254 /* Initialize COOK signal arithmetic handling */
1255 if (1) {
1261 }
1262
1263 /* Try to catch some obviously faulty streams, othervise it might be exploitable */
1269 }
1270
1272 if (channel_mask)
1274 else
1276
1277
1279
1280 return 0;
1281 }
1282
1295 };
static void mlt_compensate_output(COOKContext *q, float *decode_buffer, cook_gains *gains_ptr, float *previous_buffer, float *out)
Final part of subpacket decoding: Apply modulated lapped transform, gain compensation, clip and convert to integer.
static av_cold void init_cplscales_table(COOKContext *q)
static const int cplband[51]
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
This structure describes decoded (raw) audio or video data.
void(* scalar_dequant)(struct cook *q, int index, int quant_index, int *subband_coef_index, int *subband_coef_sign, float *mlt_p)
ptrdiff_t const GLvoid * data
static const uint16_t envelope_quant_index_huffcodes[13][24]
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
float decode_buffer_1[1024]
int64_t bit_rate
the average bitrate
static av_cold int init(AVCodecContext *avctx)
static const int kmax_tab[7]
static const int expbits_tab[8]
static void categorize(COOKContext *q, COOKSubpacket *p, const int *quant_index_table, int *category, int *category_index)
Calculate the category and category_index vector.
static const float *const cplscales[5]
#define DECLARE_ALIGNED(n, t, v)
av_cold void ff_audiodsp_init(AudioDSPContext *c)
static av_cold void init_pow2table(void)
#define AV_CH_LAYOUT_STEREO
VLC envelope_quant_index[13]
int block_align
number of bytes per packet if constant and known or 0 Used by some WAV based audio codecs...
int av_get_channel_layout_nb_channels(uint64_t channel_layout)
Return the number of channels in the channel layout.
static const uint8_t *const ccpl_huffbits[5]
static const int vhsize_tab[7]
static const float quant_centroid_tab[7][14]
void(* imlt_window)(struct cook *q, float *buffer1, cook_gains *gains_ptr, float *previous_buffer)
static void imlt_gain(COOKContext *q, float *inbuffer, cook_gains *gains_ptr, float *previous_buffer)
The modulated lapped transform, this takes transform coefficients and transforms them into timedomain...
static av_cold void init_gain_table(COOKContext *q)
void void avpriv_request_sample(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
enum AVSampleFormat sample_fmt
audio sample format
uint8_t * decoded_bytes_buffer
static int decouple_info(COOKContext *q, COOKSubpacket *p, int *decouple_tab)
function for getting the jointstereo coupling information
float mono_previous_buffer1[1024]
static void decode_vectors(COOKContext *q, COOKSubpacket *p, int *category, int *quant_index_table, float *mlt_buffer)
Fill the mlt_buffer with mlt coefficients.
static void expand_category(COOKContext *q, int *category, int *category_index)
Expand the category vector.
static av_cold int end(AVCodecContext *avctx)
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
static void interpolate(float *out, float v1, float v2, int size)
static int get_bits_count(const GetBitContext *s)
bitstream reader API header.
const float * cplscales[5]
static int decode_subpacket(COOKContext *q, COOKSubpacket *p, const uint8_t *inbuffer, float **outbuffer)
Cook subpacket decoding.
static int cook_decode_frame(AVCodecContext *avctx, void *data, int *got_frame_ptr, AVPacket *avpkt)
static void decode_bytes_and_gain(COOKContext *q, COOKSubpacket *p, const uint8_t *inbuffer, cook_gains *gains_ptr)
First part of subpacket decoding: decode raw stream bytes and read gain info.
#define DECODE_BYTES_PAD1(bytes)
static int get_bits_left(GetBitContext *gb)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
static const int vd_tab[7]
static const float dither_tab[9]
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
static const uint16_t *const ccpl_huffcodes[5]
float mono_previous_buffer2[1024]
const char * name
Name of the codec implementation.
static int decode_envelope(COOKContext *q, COOKSubpacket *p, int *quant_index_table)
Create the quant index table needed for the envelope.
static const uint8_t offset[127][2]
uint64_t channel_layout
Audio channel layout.
static void saturate_output_float(COOKContext *q, float *out)
Saturate the output signal and interleave.
void(* imdct_calc)(struct FFTContext *s, FFTSample *output, const FFTSample *input)
static const int vhvlcsize_tab[7]
static const uint16_t fc[]
static int unpack_SQVH(COOKContext *q, COOKSubpacket *p, int category, int *subband_coef_index, int *subband_coef_sign)
Unpack the subband_coef_index and subband_coef_sign vectors.
static av_cold int init_cook_mlt(COOKContext *q)
audio channel layout utility functions
static int mono_decode(COOKContext *q, COOKSubpacket *p, float *mlt_buffer)
typedef void(APIENTRY *FF_PFNGLACTIVETEXTUREPROC)(GLenum texture)
static av_cold int cook_decode_init(AVCodecContext *avctx)
Cook initialization.
static av_always_inline int get_vlc2(GetBitContext *s, VLC_TYPE(*table)[2], int bits, int max_depth)
Parse a vlc code.
#define FF_ARRAY_ELEMS(a)
static const uint16_t *const cvh_huffcodes[7]
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
static void interpolate_float(COOKContext *q, float *buffer, int gain_index, int gain_index_next)
the actual requantization of the timedomain samples
Libavcodec external API header.
void(* vector_clipf)(float *dst, const float *src, float min, float max, int len)
void(* interpolate)(struct cook *q, float *buffer, int gain_index, int gain_index_next)
AVSampleFormat
Audio sample formats.
static av_cold int init_cook_vlc_tables(COOKContext *q)
int sample_rate
samples per second
void AAC_RENAME() ff_sine_window_init(INTFLOAT *window, int n)
Generate a sine window.
main external API structure.
float mono_mdct_output[2048]
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
#define init_vlc(vlc, nb_bits, nb_codes,bits, bits_wrap, bits_size,codes, codes_wrap, codes_size,flags)
static unsigned int av_lfg_get(AVLFG *c)
Get the next random unsigned 32-bit number using an ALFG.
static void dump_cook_context(COOKContext *q)
static unsigned int get_bits1(GetBitContext *s)
void(* decouple)(struct cook *q, COOKSubpacket *p, int subband, float f1, float f2, float *decode_buffer, float *mlt_buffer1, float *mlt_buffer2)
static int joint_decode(COOKContext *q, COOKSubpacket *p, float *mlt_buffer_left, float *mlt_buffer_right)
function for decoding joint stereo data
static av_cold int cook_decode_close(AVCodecContext *avctx)
static float pow2tab[127]
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
float decode_buffer_0[1060]
av_cold void av_lfg_init(AVLFG *c, unsigned int seed)
COOKSubpacket subpacket[MAX_SUBPACKETS]
float decode_buffer_2[1024]
static float rootpow2tab[127]
static const uint8_t envelope_quant_index_huffbits[13][24]
static const uint8_t *const cvh_huffbits[7]
static int decode_bytes(const uint8_t *inbuffer, uint8_t *out, int bytes)
Cook indata decoding, every 32 bits are XORed with 0x37c511f2.
static void scalar_dequant_float(COOKContext *q, int index, int quant_index, int *subband_coef_index, int *subband_coef_sign, float *mlt_p)
The real requantization of the mltcoefs.
static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avpkt)
common internal api header.
static int get_unary(GetBitContext *gb, int stop, int len)
Get unary code of limited length.
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
static const int invradix_tab[7]
int channels
number of audio channels
VLC_TYPE(* table)[2]
code, bits
static const struct twinvq_data tab
static enum AVSampleFormat sample_fmts[]
static void decode_gain_info(GetBitContext *gb, int *gaininfo)
Fill the gain array for the timedomain quantization.
#define av_malloc_array(a, b)
#define FFSWAP(type, a, b)
static void imlt_window_float(COOKContext *q, float *inbuffer, cook_gains *gains_ptr, float *previous_buffer)
Apply transform window, overlap buffers.
static void decouple_float(COOKContext *q, COOKSubpacket *p, int subband, float f1, float f2, float *decode_buffer, float *mlt_buffer1, float *mlt_buffer2)
function decouples a pair of signals from a single signal via multiplication.
static const int vpr_tab[7]
uint8_t ** extended_data
pointers to the data planes/channels.
#define AV_CH_LAYOUT_MONO
This structure stores compressed data.
void ff_free_vlc(VLC *vlc)
int nb_samples
number of audio samples (per channel) described by this frame
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
unsigned int channel_mask
Cook AKA RealAudio G2 compatible decoderdata.
void(* saturate_output)(struct cook *q, float *out)