00001
00023 #undef V_DEBUG
00024
00025
00026
00027 #include <math.h>
00028
00029 #define ALT_BITSTREAM_READER_LE
00030 #include "avcodec.h"
00031 #include "get_bits.h"
00032 #include "dsputil.h"
00033 #include "fft.h"
00034
00035 #include "vorbis.h"
00036 #include "xiph.h"
00037
00038 #define V_NB_BITS 8
00039 #define V_NB_BITS2 11
00040 #define V_MAX_VLCS (1 << 16)
00041 #define V_MAX_PARTITIONS (1 << 20)
00042
00043 #ifndef V_DEBUG
00044 #define AV_DEBUG(...)
00045 #endif
00046
00047 #undef NDEBUG
00048 #include <assert.h>
00049
00050 typedef struct {
00051 uint_fast8_t dimensions;
00052 uint_fast8_t lookup_type;
00053 uint_fast8_t maxdepth;
00054 VLC vlc;
00055 float *codevectors;
00056 unsigned int nb_bits;
00057 } vorbis_codebook;
00058
00059 typedef union vorbis_floor_u vorbis_floor_data;
00060 typedef struct vorbis_floor0_s vorbis_floor0;
00061 typedef struct vorbis_floor1_s vorbis_floor1;
00062 struct vorbis_context_s;
00063 typedef
00064 int (* vorbis_floor_decode_func)
00065 (struct vorbis_context_s *, vorbis_floor_data *, float *);
00066 typedef struct {
00067 uint_fast8_t floor_type;
00068 vorbis_floor_decode_func decode;
00069 union vorbis_floor_u {
00070 struct vorbis_floor0_s {
00071 uint_fast8_t order;
00072 uint_fast16_t rate;
00073 uint_fast16_t bark_map_size;
00074 int_fast32_t *map[2];
00075 uint_fast32_t map_size[2];
00076 uint_fast8_t amplitude_bits;
00077 uint_fast8_t amplitude_offset;
00078 uint_fast8_t num_books;
00079 uint_fast8_t *book_list;
00080 float *lsp;
00081 } t0;
00082 struct vorbis_floor1_s {
00083 uint_fast8_t partitions;
00084 uint_fast8_t maximum_class;
00085 uint_fast8_t partition_class[32];
00086 uint_fast8_t class_dimensions[16];
00087 uint_fast8_t class_subclasses[16];
00088 uint_fast8_t class_masterbook[16];
00089 int_fast16_t subclass_books[16][8];
00090 uint_fast8_t multiplier;
00091 uint_fast16_t x_list_dim;
00092 vorbis_floor1_entry *list;
00093 } t1;
00094 } data;
00095 } vorbis_floor;
00096
00097 typedef struct {
00098 uint_fast16_t type;
00099 uint_fast32_t begin;
00100 uint_fast32_t end;
00101 uint_fast32_t partition_size;
00102 uint_fast8_t classifications;
00103 uint_fast8_t classbook;
00104 int_fast16_t books[64][8];
00105 uint_fast8_t maxpass;
00106 } vorbis_residue;
00107
00108 typedef struct {
00109 uint_fast8_t submaps;
00110 uint_fast16_t coupling_steps;
00111 uint_fast8_t *magnitude;
00112 uint_fast8_t *angle;
00113 uint_fast8_t *mux;
00114 uint_fast8_t submap_floor[16];
00115 uint_fast8_t submap_residue[16];
00116 } vorbis_mapping;
00117
00118 typedef struct {
00119 uint_fast8_t blockflag;
00120 uint_fast16_t windowtype;
00121 uint_fast16_t transformtype;
00122 uint_fast8_t mapping;
00123 } vorbis_mode;
00124
00125 typedef struct vorbis_context_s {
00126 AVCodecContext *avccontext;
00127 GetBitContext gb;
00128 DSPContext dsp;
00129
00130 FFTContext mdct[2];
00131 uint_fast8_t first_frame;
00132 uint_fast32_t version;
00133 uint_fast8_t audio_channels;
00134 uint_fast32_t audio_samplerate;
00135 uint_fast32_t bitrate_maximum;
00136 uint_fast32_t bitrate_nominal;
00137 uint_fast32_t bitrate_minimum;
00138 uint_fast32_t blocksize[2];
00139 const float *win[2];
00140 uint_fast16_t codebook_count;
00141 vorbis_codebook *codebooks;
00142 uint_fast8_t floor_count;
00143 vorbis_floor *floors;
00144 uint_fast8_t residue_count;
00145 vorbis_residue *residues;
00146 uint_fast8_t mapping_count;
00147 vorbis_mapping *mappings;
00148 uint_fast8_t mode_count;
00149 vorbis_mode *modes;
00150 uint_fast8_t mode_number;
00151 uint_fast8_t previous_window;
00152 float *channel_residues;
00153 float *channel_floors;
00154 float *saved;
00155 uint_fast32_t add_bias;
00156 uint_fast32_t exp_bias;
00157 } vorbis_context;
00158
00159
00160
00161 #define BARK(x) \
00162 (13.1f * atan(0.00074f * (x)) + 2.24f * atan(1.85e-8f * (x) * (x)) + 1e-4f * (x))
00163
00164 static const char idx_err_str[] = "Index value %d out of range (0 - %d) for %s at %s:%i\n";
00165 #define VALIDATE_INDEX(idx, limit) \
00166 if (idx >= limit) {\
00167 av_log(vc->avccontext, AV_LOG_ERROR,\
00168 idx_err_str,\
00169 (int)(idx), (int)(limit - 1), #idx, __FILE__, __LINE__);\
00170 return -1;\
00171 }
00172 #define GET_VALIDATED_INDEX(idx, bits, limit) \
00173 {\
00174 idx = get_bits(gb, bits);\
00175 VALIDATE_INDEX(idx, limit)\
00176 }
00177
00178 static float vorbisfloat2float(uint_fast32_t val)
00179 {
00180 double mant = val & 0x1fffff;
00181 long exp = (val & 0x7fe00000L) >> 21;
00182 if (val & 0x80000000)
00183 mant = -mant;
00184 return ldexp(mant, exp - 20 - 768);
00185 }
00186
00187
00188
00189
00190 static void vorbis_free(vorbis_context *vc)
00191 {
00192 int_fast16_t i;
00193
00194 av_freep(&vc->channel_residues);
00195 av_freep(&vc->channel_floors);
00196 av_freep(&vc->saved);
00197
00198 av_freep(&vc->residues);
00199 av_freep(&vc->modes);
00200
00201 ff_mdct_end(&vc->mdct[0]);
00202 ff_mdct_end(&vc->mdct[1]);
00203
00204 for (i = 0; i < vc->codebook_count; ++i) {
00205 av_free(vc->codebooks[i].codevectors);
00206 free_vlc(&vc->codebooks[i].vlc);
00207 }
00208 av_freep(&vc->codebooks);
00209
00210 for (i = 0; i < vc->floor_count; ++i) {
00211 if (vc->floors[i].floor_type == 0) {
00212 av_free(vc->floors[i].data.t0.map[0]);
00213 av_free(vc->floors[i].data.t0.map[1]);
00214 av_free(vc->floors[i].data.t0.book_list);
00215 av_free(vc->floors[i].data.t0.lsp);
00216 } else {
00217 av_free(vc->floors[i].data.t1.list);
00218 }
00219 }
00220 av_freep(&vc->floors);
00221
00222 for (i = 0; i < vc->mapping_count; ++i) {
00223 av_free(vc->mappings[i].magnitude);
00224 av_free(vc->mappings[i].angle);
00225 av_free(vc->mappings[i].mux);
00226 }
00227 av_freep(&vc->mappings);
00228 }
00229
00230
00231
00232
00233
00234 static int vorbis_parse_setup_hdr_codebooks(vorbis_context *vc)
00235 {
00236 uint_fast16_t cb;
00237 uint8_t *tmp_vlc_bits;
00238 uint32_t *tmp_vlc_codes;
00239 GetBitContext *gb = &vc->gb;
00240
00241 vc->codebook_count = get_bits(gb, 8) + 1;
00242
00243 AV_DEBUG(" Codebooks: %d \n", vc->codebook_count);
00244
00245 vc->codebooks = av_mallocz(vc->codebook_count * sizeof(vorbis_codebook));
00246 tmp_vlc_bits = av_mallocz(V_MAX_VLCS * sizeof(uint8_t));
00247 tmp_vlc_codes = av_mallocz(V_MAX_VLCS * sizeof(uint32_t));
00248
00249 for (cb = 0; cb < vc->codebook_count; ++cb) {
00250 vorbis_codebook *codebook_setup = &vc->codebooks[cb];
00251 uint_fast8_t ordered;
00252 uint_fast32_t t, used_entries = 0;
00253 uint_fast32_t entries;
00254
00255 AV_DEBUG(" %d. Codebook \n", cb);
00256
00257 if (get_bits(gb, 24) != 0x564342) {
00258 av_log(vc->avccontext, AV_LOG_ERROR, " %"PRIdFAST16". Codebook setup data corrupt. \n", cb);
00259 goto error;
00260 }
00261
00262 codebook_setup->dimensions=get_bits(gb, 16);
00263 if (codebook_setup->dimensions > 16 || codebook_setup->dimensions == 0) {
00264 av_log(vc->avccontext, AV_LOG_ERROR, " %"PRIdFAST16". Codebook's dimension is invalid (%d). \n", cb, codebook_setup->dimensions);
00265 goto error;
00266 }
00267 entries = get_bits(gb, 24);
00268 if (entries > V_MAX_VLCS) {
00269 av_log(vc->avccontext, AV_LOG_ERROR, " %"PRIdFAST16". Codebook has too many entries (%"PRIdFAST32"). \n", cb, entries);
00270 goto error;
00271 }
00272
00273 ordered = get_bits1(gb);
00274
00275 AV_DEBUG(" codebook_dimensions %d, codebook_entries %d \n", codebook_setup->dimensions, entries);
00276
00277 if (!ordered) {
00278 uint_fast16_t ce;
00279 uint_fast8_t flag;
00280 uint_fast8_t sparse = get_bits1(gb);
00281
00282 AV_DEBUG(" not ordered \n");
00283
00284 if (sparse) {
00285 AV_DEBUG(" sparse \n");
00286
00287 used_entries = 0;
00288 for (ce = 0; ce < entries; ++ce) {
00289 flag = get_bits1(gb);
00290 if (flag) {
00291 tmp_vlc_bits[ce] = get_bits(gb, 5) + 1;
00292 ++used_entries;
00293 } else
00294 tmp_vlc_bits[ce] = 0;
00295 }
00296 } else {
00297 AV_DEBUG(" not sparse \n");
00298
00299 used_entries = entries;
00300 for (ce = 0; ce < entries; ++ce)
00301 tmp_vlc_bits[ce] = get_bits(gb, 5) + 1;
00302 }
00303 } else {
00304 uint_fast16_t current_entry = 0;
00305 uint_fast8_t current_length = get_bits(gb, 5)+1;
00306
00307 AV_DEBUG(" ordered, current length: %d \n", current_length);
00308
00309 used_entries = entries;
00310 for (; current_entry < used_entries && current_length <= 32; ++current_length) {
00311 uint_fast16_t i, number;
00312
00313 AV_DEBUG(" number bits: %d ", ilog(entries - current_entry));
00314
00315 number = get_bits(gb, ilog(entries - current_entry));
00316
00317 AV_DEBUG(" number: %d \n", number);
00318
00319 for (i = current_entry; i < number+current_entry; ++i)
00320 if (i < used_entries)
00321 tmp_vlc_bits[i] = current_length;
00322
00323 current_entry+=number;
00324 }
00325 if (current_entry>used_entries) {
00326 av_log(vc->avccontext, AV_LOG_ERROR, " More codelengths than codes in codebook. \n");
00327 goto error;
00328 }
00329 }
00330
00331 codebook_setup->lookup_type = get_bits(gb, 4);
00332
00333 AV_DEBUG(" lookup type: %d : %s \n", codebook_setup->lookup_type, codebook_setup->lookup_type ? "vq" : "no lookup");
00334
00335
00336
00337 if (codebook_setup->lookup_type == 1) {
00338 uint_fast16_t i, j, k;
00339 uint_fast16_t codebook_lookup_values = ff_vorbis_nth_root(entries, codebook_setup->dimensions);
00340 uint_fast16_t codebook_multiplicands[codebook_lookup_values];
00341
00342 float codebook_minimum_value = vorbisfloat2float(get_bits_long(gb, 32));
00343 float codebook_delta_value = vorbisfloat2float(get_bits_long(gb, 32));
00344 uint_fast8_t codebook_value_bits = get_bits(gb, 4)+1;
00345 uint_fast8_t codebook_sequence_p = get_bits1(gb);
00346
00347 AV_DEBUG(" We expect %d numbers for building the codevectors. \n", codebook_lookup_values);
00348 AV_DEBUG(" delta %f minmum %f \n", codebook_delta_value, codebook_minimum_value);
00349
00350 for (i = 0; i < codebook_lookup_values; ++i) {
00351 codebook_multiplicands[i] = get_bits(gb, codebook_value_bits);
00352
00353 AV_DEBUG(" multiplicands*delta+minmum : %e \n", (float)codebook_multiplicands[i]*codebook_delta_value+codebook_minimum_value);
00354 AV_DEBUG(" multiplicand %d \n", codebook_multiplicands[i]);
00355 }
00356
00357
00358 codebook_setup->codevectors = used_entries ? av_mallocz(used_entries*codebook_setup->dimensions * sizeof(float)) : NULL;
00359 for (j = 0, i = 0; i < entries; ++i) {
00360 uint_fast8_t dim = codebook_setup->dimensions;
00361
00362 if (tmp_vlc_bits[i]) {
00363 float last = 0.0;
00364 uint_fast32_t lookup_offset = i;
00365
00366 #ifdef V_DEBUG
00367 av_log(vc->avccontext, AV_LOG_INFO, "Lookup offset %d ,", i);
00368 #endif
00369
00370 for (k = 0; k < dim; ++k) {
00371 uint_fast32_t multiplicand_offset = lookup_offset % codebook_lookup_values;
00372 codebook_setup->codevectors[j * dim + k] = codebook_multiplicands[multiplicand_offset] * codebook_delta_value + codebook_minimum_value + last;
00373 if (codebook_sequence_p)
00374 last = codebook_setup->codevectors[j * dim + k];
00375 lookup_offset/=codebook_lookup_values;
00376 }
00377 tmp_vlc_bits[j] = tmp_vlc_bits[i];
00378
00379 #ifdef V_DEBUG
00380 av_log(vc->avccontext, AV_LOG_INFO, "real lookup offset %d, vector: ", j);
00381 for (k = 0; k < dim; ++k)
00382 av_log(vc->avccontext, AV_LOG_INFO, " %f ", codebook_setup->codevectors[j * dim + k]);
00383 av_log(vc->avccontext, AV_LOG_INFO, "\n");
00384 #endif
00385
00386 ++j;
00387 }
00388 }
00389 if (j != used_entries) {
00390 av_log(vc->avccontext, AV_LOG_ERROR, "Bug in codevector vector building code. \n");
00391 goto error;
00392 }
00393 entries = used_entries;
00394 } else if (codebook_setup->lookup_type >= 2) {
00395 av_log(vc->avccontext, AV_LOG_ERROR, "Codebook lookup type not supported. \n");
00396 goto error;
00397 }
00398
00399
00400 if (ff_vorbis_len2vlc(tmp_vlc_bits, tmp_vlc_codes, entries)) {
00401 av_log(vc->avccontext, AV_LOG_ERROR, " Invalid code lengths while generating vlcs. \n");
00402 goto error;
00403 }
00404 codebook_setup->maxdepth = 0;
00405 for (t = 0; t < entries; ++t)
00406 if (tmp_vlc_bits[t] >= codebook_setup->maxdepth)
00407 codebook_setup->maxdepth = tmp_vlc_bits[t];
00408
00409 if (codebook_setup->maxdepth > 3 * V_NB_BITS)
00410 codebook_setup->nb_bits = V_NB_BITS2;
00411 else
00412 codebook_setup->nb_bits = V_NB_BITS;
00413
00414 codebook_setup->maxdepth = (codebook_setup->maxdepth+codebook_setup->nb_bits - 1) / codebook_setup->nb_bits;
00415
00416 if (init_vlc(&codebook_setup->vlc, codebook_setup->nb_bits, entries, tmp_vlc_bits, sizeof(*tmp_vlc_bits), sizeof(*tmp_vlc_bits), tmp_vlc_codes, sizeof(*tmp_vlc_codes), sizeof(*tmp_vlc_codes), INIT_VLC_LE)) {
00417 av_log(vc->avccontext, AV_LOG_ERROR, " Error generating vlc tables. \n");
00418 goto error;
00419 }
00420 }
00421
00422 av_free(tmp_vlc_bits);
00423 av_free(tmp_vlc_codes);
00424 return 0;
00425
00426
00427 error:
00428 av_free(tmp_vlc_bits);
00429 av_free(tmp_vlc_codes);
00430 return -1;
00431 }
00432
00433
00434
00435 static int vorbis_parse_setup_hdr_tdtransforms(vorbis_context *vc)
00436 {
00437 GetBitContext *gb = &vc->gb;
00438 uint_fast8_t i;
00439 uint_fast8_t vorbis_time_count = get_bits(gb, 6) + 1;
00440
00441 for (i = 0; i < vorbis_time_count; ++i) {
00442 uint_fast16_t vorbis_tdtransform = get_bits(gb, 16);
00443
00444 AV_DEBUG(" Vorbis time domain transform %d: %d \n", vorbis_time_count, vorbis_tdtransform);
00445
00446 if (vorbis_tdtransform) {
00447 av_log(vc->avccontext, AV_LOG_ERROR, "Vorbis time domain transform data nonzero. \n");
00448 return -1;
00449 }
00450 }
00451 return 0;
00452 }
00453
00454
00455
00456 static int vorbis_floor0_decode(vorbis_context *vc,
00457 vorbis_floor_data *vfu, float *vec);
00458 static void create_map(vorbis_context *vc, uint_fast8_t floor_number);
00459 static int vorbis_floor1_decode(vorbis_context *vc,
00460 vorbis_floor_data *vfu, float *vec);
00461 static int vorbis_parse_setup_hdr_floors(vorbis_context *vc)
00462 {
00463 GetBitContext *gb = &vc->gb;
00464 uint_fast16_t i,j,k;
00465
00466 vc->floor_count = get_bits(gb, 6) + 1;
00467
00468 vc->floors = av_mallocz(vc->floor_count * sizeof(vorbis_floor));
00469
00470 for (i = 0; i < vc->floor_count; ++i) {
00471 vorbis_floor *floor_setup = &vc->floors[i];
00472
00473 floor_setup->floor_type = get_bits(gb, 16);
00474
00475 AV_DEBUG(" %d. floor type %d \n", i, floor_setup->floor_type);
00476
00477 if (floor_setup->floor_type == 1) {
00478 uint_fast8_t maximum_class = 0;
00479 uint_fast8_t rangebits;
00480 uint_fast32_t rangemax;
00481 uint_fast16_t floor1_values = 2;
00482
00483 floor_setup->decode = vorbis_floor1_decode;
00484
00485 floor_setup->data.t1.partitions = get_bits(gb, 5);
00486
00487 AV_DEBUG(" %d.floor: %d partitions \n", i, floor_setup->data.t1.partitions);
00488
00489 for (j = 0; j < floor_setup->data.t1.partitions; ++j) {
00490 floor_setup->data.t1.partition_class[j] = get_bits(gb, 4);
00491 if (floor_setup->data.t1.partition_class[j] > maximum_class)
00492 maximum_class = floor_setup->data.t1.partition_class[j];
00493
00494 AV_DEBUG(" %d. floor %d partition class %d \n", i, j, floor_setup->data.t1.partition_class[j]);
00495
00496 }
00497
00498 AV_DEBUG(" maximum class %d \n", maximum_class);
00499
00500 floor_setup->data.t1.maximum_class = maximum_class;
00501
00502 for (j = 0; j <= maximum_class; ++j) {
00503 floor_setup->data.t1.class_dimensions[j] = get_bits(gb, 3) + 1;
00504 floor_setup->data.t1.class_subclasses[j] = get_bits(gb, 2);
00505
00506 AV_DEBUG(" %d floor %d class dim: %d subclasses %d \n", i, j, floor_setup->data.t1.class_dimensions[j], floor_setup->data.t1.class_subclasses[j]);
00507
00508 if (floor_setup->data.t1.class_subclasses[j]) {
00509 GET_VALIDATED_INDEX(floor_setup->data.t1.class_masterbook[j], 8, vc->codebook_count)
00510
00511 AV_DEBUG(" masterbook: %d \n", floor_setup->data.t1.class_masterbook[j]);
00512 }
00513
00514 for (k = 0; k < (1 << floor_setup->data.t1.class_subclasses[j]); ++k) {
00515 int16_t bits = get_bits(gb, 8) - 1;
00516 if (bits != -1)
00517 VALIDATE_INDEX(bits, vc->codebook_count)
00518 floor_setup->data.t1.subclass_books[j][k] = bits;
00519
00520 AV_DEBUG(" book %d. : %d \n", k, floor_setup->data.t1.subclass_books[j][k]);
00521 }
00522 }
00523
00524 floor_setup->data.t1.multiplier = get_bits(gb, 2) + 1;
00525 floor_setup->data.t1.x_list_dim = 2;
00526
00527 for (j = 0; j < floor_setup->data.t1.partitions; ++j)
00528 floor_setup->data.t1.x_list_dim+=floor_setup->data.t1.class_dimensions[floor_setup->data.t1.partition_class[j]];
00529
00530 floor_setup->data.t1.list = av_mallocz(floor_setup->data.t1.x_list_dim * sizeof(vorbis_floor1_entry));
00531
00532
00533 rangebits = get_bits(gb, 4);
00534 rangemax = (1 << rangebits);
00535 if (rangemax > vc->blocksize[1] / 2) {
00536 av_log(vc->avccontext, AV_LOG_ERROR,
00537 "Floor value is too large for blocksize: %d (%d)\n",
00538 rangemax, vc->blocksize[1] / 2);
00539 return -1;
00540 }
00541 floor_setup->data.t1.list[0].x = 0;
00542 floor_setup->data.t1.list[1].x = rangemax;
00543
00544 for (j = 0; j < floor_setup->data.t1.partitions; ++j) {
00545 for (k = 0; k < floor_setup->data.t1.class_dimensions[floor_setup->data.t1.partition_class[j]]; ++k, ++floor1_values) {
00546 floor_setup->data.t1.list[floor1_values].x = get_bits(gb, rangebits);
00547
00548 AV_DEBUG(" %d. floor1 Y coord. %d \n", floor1_values, floor_setup->data.t1.list[floor1_values].x);
00549 }
00550 }
00551
00552
00553 if (ff_vorbis_ready_floor1_list(vc->avccontext,
00554 floor_setup->data.t1.list,
00555 floor_setup->data.t1.x_list_dim)) {
00556 return AVERROR_INVALIDDATA;
00557 }
00558 } else if (floor_setup->floor_type == 0) {
00559 uint_fast8_t max_codebook_dim = 0;
00560
00561 floor_setup->decode = vorbis_floor0_decode;
00562
00563 floor_setup->data.t0.order = get_bits(gb, 8);
00564 floor_setup->data.t0.rate = get_bits(gb, 16);
00565 floor_setup->data.t0.bark_map_size = get_bits(gb, 16);
00566 floor_setup->data.t0.amplitude_bits = get_bits(gb, 6);
00567
00568
00569 if (floor_setup->data.t0.amplitude_bits == 0) {
00570 av_log(vc->avccontext, AV_LOG_ERROR,
00571 "Floor 0 amplitude bits is 0.\n");
00572 return -1;
00573 }
00574 floor_setup->data.t0.amplitude_offset = get_bits(gb, 8);
00575 floor_setup->data.t0.num_books = get_bits(gb, 4) + 1;
00576
00577
00578 floor_setup->data.t0.book_list =
00579 av_malloc(floor_setup->data.t0.num_books);
00580 if (!floor_setup->data.t0.book_list)
00581 return -1;
00582
00583 {
00584 int idx;
00585 uint_fast8_t book_idx;
00586 for (idx = 0; idx < floor_setup->data.t0.num_books; ++idx) {
00587 GET_VALIDATED_INDEX(floor_setup->data.t0.book_list[idx], 8, vc->codebook_count)
00588 if (vc->codebooks[book_idx].dimensions > max_codebook_dim)
00589 max_codebook_dim = vc->codebooks[book_idx].dimensions;
00590 }
00591 }
00592
00593 create_map(vc, i);
00594
00595
00596 {
00597
00598
00599 floor_setup->data.t0.lsp =
00600 av_malloc((floor_setup->data.t0.order+1 + max_codebook_dim)
00601 * sizeof(float));
00602 if (!floor_setup->data.t0.lsp)
00603 return -1;
00604 }
00605
00606 #ifdef V_DEBUG
00607 AV_DEBUG("floor0 order: %u\n", floor_setup->data.t0.order);
00608 AV_DEBUG("floor0 rate: %u\n", floor_setup->data.t0.rate);
00609 AV_DEBUG("floor0 bark map size: %u\n",
00610 floor_setup->data.t0.bark_map_size);
00611 AV_DEBUG("floor0 amplitude bits: %u\n",
00612 floor_setup->data.t0.amplitude_bits);
00613 AV_DEBUG("floor0 amplitude offset: %u\n",
00614 floor_setup->data.t0.amplitude_offset);
00615 AV_DEBUG("floor0 number of books: %u\n",
00616 floor_setup->data.t0.num_books);
00617 AV_DEBUG("floor0 book list pointer: %p\n",
00618 floor_setup->data.t0.book_list);
00619 {
00620 int idx;
00621 for (idx = 0; idx < floor_setup->data.t0.num_books; ++idx) {
00622 AV_DEBUG(" Book %d: %u\n",
00623 idx+1,
00624 floor_setup->data.t0.book_list[idx]);
00625 }
00626 }
00627 #endif
00628 } else {
00629 av_log(vc->avccontext, AV_LOG_ERROR, "Invalid floor type!\n");
00630 return -1;
00631 }
00632 }
00633 return 0;
00634 }
00635
00636
00637
00638 static int vorbis_parse_setup_hdr_residues(vorbis_context *vc)
00639 {
00640 GetBitContext *gb = &vc->gb;
00641 uint_fast8_t i, j, k;
00642
00643 vc->residue_count = get_bits(gb, 6)+1;
00644 vc->residues = av_mallocz(vc->residue_count * sizeof(vorbis_residue));
00645
00646 AV_DEBUG(" There are %d residues. \n", vc->residue_count);
00647
00648 for (i = 0; i < vc->residue_count; ++i) {
00649 vorbis_residue *res_setup = &vc->residues[i];
00650 uint_fast8_t cascade[64];
00651 uint_fast8_t high_bits;
00652 uint_fast8_t low_bits;
00653
00654 res_setup->type = get_bits(gb, 16);
00655
00656 AV_DEBUG(" %d. residue type %d \n", i, res_setup->type);
00657
00658 res_setup->begin = get_bits(gb, 24);
00659 res_setup->end = get_bits(gb, 24);
00660 res_setup->partition_size = get_bits(gb, 24) + 1;
00661
00662 if (res_setup->begin>res_setup->end ||
00663 res_setup->end > (res_setup->type == 2 ? vc->avccontext->channels : 1) * vc->blocksize[1] / 2 ||
00664 (res_setup->end-res_setup->begin) / res_setup->partition_size > V_MAX_PARTITIONS) {
00665 av_log(vc->avccontext, AV_LOG_ERROR, "partition out of bounds: type, begin, end, size, blocksize: %"PRIdFAST16", %"PRIdFAST32", %"PRIdFAST32", %"PRIdFAST32", %"PRIdFAST32"\n", res_setup->type, res_setup->begin, res_setup->end, res_setup->partition_size, vc->blocksize[1] / 2);
00666 return -1;
00667 }
00668
00669 res_setup->classifications = get_bits(gb, 6) + 1;
00670 GET_VALIDATED_INDEX(res_setup->classbook, 8, vc->codebook_count)
00671
00672 AV_DEBUG(" begin %d end %d part.size %d classif.s %d classbook %d \n", res_setup->begin, res_setup->end, res_setup->partition_size,
00673 res_setup->classifications, res_setup->classbook);
00674
00675 for (j = 0; j < res_setup->classifications; ++j) {
00676 high_bits = 0;
00677 low_bits = get_bits(gb, 3);
00678 if (get_bits1(gb))
00679 high_bits = get_bits(gb, 5);
00680 cascade[j] = (high_bits << 3) + low_bits;
00681
00682 AV_DEBUG(" %d class casscade depth: %d \n", j, ilog(cascade[j]));
00683 }
00684
00685 res_setup->maxpass = 0;
00686 for (j = 0; j < res_setup->classifications; ++j) {
00687 for (k = 0; k < 8; ++k) {
00688 if (cascade[j]&(1 << k)) {
00689 GET_VALIDATED_INDEX(res_setup->books[j][k], 8, vc->codebook_count)
00690
00691 AV_DEBUG(" %d class casscade depth %d book: %d \n", j, k, res_setup->books[j][k]);
00692
00693 if (k>res_setup->maxpass)
00694 res_setup->maxpass = k;
00695 } else {
00696 res_setup->books[j][k] = -1;
00697 }
00698 }
00699 }
00700 }
00701 return 0;
00702 }
00703
00704
00705
00706 static int vorbis_parse_setup_hdr_mappings(vorbis_context *vc)
00707 {
00708 GetBitContext *gb = &vc->gb;
00709 uint_fast8_t i, j;
00710
00711 vc->mapping_count = get_bits(gb, 6)+1;
00712 vc->mappings = av_mallocz(vc->mapping_count * sizeof(vorbis_mapping));
00713
00714 AV_DEBUG(" There are %d mappings. \n", vc->mapping_count);
00715
00716 for (i = 0; i < vc->mapping_count; ++i) {
00717 vorbis_mapping *mapping_setup = &vc->mappings[i];
00718
00719 if (get_bits(gb, 16)) {
00720 av_log(vc->avccontext, AV_LOG_ERROR, "Other mappings than type 0 are not compliant with the Vorbis I specification. \n");
00721 return -1;
00722 }
00723 if (get_bits1(gb)) {
00724 mapping_setup->submaps = get_bits(gb, 4) + 1;
00725 } else {
00726 mapping_setup->submaps = 1;
00727 }
00728
00729 if (get_bits1(gb)) {
00730 mapping_setup->coupling_steps = get_bits(gb, 8) + 1;
00731 mapping_setup->magnitude = av_mallocz(mapping_setup->coupling_steps * sizeof(uint_fast8_t));
00732 mapping_setup->angle = av_mallocz(mapping_setup->coupling_steps * sizeof(uint_fast8_t));
00733 for (j = 0; j < mapping_setup->coupling_steps; ++j) {
00734 GET_VALIDATED_INDEX(mapping_setup->magnitude[j], ilog(vc->audio_channels - 1), vc->audio_channels)
00735 GET_VALIDATED_INDEX(mapping_setup->angle[j], ilog(vc->audio_channels - 1), vc->audio_channels)
00736 }
00737 } else {
00738 mapping_setup->coupling_steps = 0;
00739 }
00740
00741 AV_DEBUG(" %d mapping coupling steps: %d \n", i, mapping_setup->coupling_steps);
00742
00743 if (get_bits(gb, 2)) {
00744 av_log(vc->avccontext, AV_LOG_ERROR, "%d. mapping setup data invalid. \n", i);
00745 return -1;
00746 }
00747
00748 if (mapping_setup->submaps>1) {
00749 mapping_setup->mux = av_mallocz(vc->audio_channels * sizeof(uint_fast8_t));
00750 for (j = 0; j < vc->audio_channels; ++j)
00751 mapping_setup->mux[j] = get_bits(gb, 4);
00752 }
00753
00754 for (j = 0; j < mapping_setup->submaps; ++j) {
00755 skip_bits(gb, 8);
00756 GET_VALIDATED_INDEX(mapping_setup->submap_floor[j], 8, vc->floor_count)
00757 GET_VALIDATED_INDEX(mapping_setup->submap_residue[j], 8, vc->residue_count)
00758
00759 AV_DEBUG(" %d mapping %d submap : floor %d, residue %d \n", i, j, mapping_setup->submap_floor[j], mapping_setup->submap_residue[j]);
00760 }
00761 }
00762 return 0;
00763 }
00764
00765
00766
00767 static void create_map(vorbis_context *vc, uint_fast8_t floor_number)
00768 {
00769 vorbis_floor *floors = vc->floors;
00770 vorbis_floor0 *vf;
00771 int idx;
00772 int_fast8_t blockflag;
00773 int_fast32_t *map;
00774 int_fast32_t n;
00775
00776 for (blockflag = 0; blockflag < 2; ++blockflag) {
00777 n = vc->blocksize[blockflag] / 2;
00778 floors[floor_number].data.t0.map[blockflag] =
00779 av_malloc((n+1) * sizeof(int_fast32_t));
00780
00781 map = floors[floor_number].data.t0.map[blockflag];
00782 vf = &floors[floor_number].data.t0;
00783
00784 for (idx = 0; idx < n; ++idx) {
00785 map[idx] = floor(BARK((vf->rate * idx) / (2.0f * n)) *
00786 ((vf->bark_map_size) /
00787 BARK(vf->rate / 2.0f)));
00788 if (vf->bark_map_size-1 < map[idx])
00789 map[idx] = vf->bark_map_size - 1;
00790 }
00791 map[n] = -1;
00792 vf->map_size[blockflag] = n;
00793 }
00794
00795 # ifdef V_DEBUG
00796 for (idx = 0; idx <= n; ++idx) {
00797 AV_DEBUG("floor0 map: map at pos %d is %d\n",
00798 idx, map[idx]);
00799 }
00800 # endif
00801 }
00802
00803 static int vorbis_parse_setup_hdr_modes(vorbis_context *vc)
00804 {
00805 GetBitContext *gb = &vc->gb;
00806 uint_fast8_t i;
00807
00808 vc->mode_count = get_bits(gb, 6) + 1;
00809 vc->modes = av_mallocz(vc->mode_count * sizeof(vorbis_mode));
00810
00811 AV_DEBUG(" There are %d modes.\n", vc->mode_count);
00812
00813 for (i = 0; i < vc->mode_count; ++i) {
00814 vorbis_mode *mode_setup = &vc->modes[i];
00815
00816 mode_setup->blockflag = get_bits1(gb);
00817 mode_setup->windowtype = get_bits(gb, 16);
00818 mode_setup->transformtype = get_bits(gb, 16);
00819 GET_VALIDATED_INDEX(mode_setup->mapping, 8, vc->mapping_count);
00820
00821 AV_DEBUG(" %d mode: blockflag %d, windowtype %d, transformtype %d, mapping %d \n", i, mode_setup->blockflag, mode_setup->windowtype, mode_setup->transformtype, mode_setup->mapping);
00822 }
00823 return 0;
00824 }
00825
00826
00827
00828 static int vorbis_parse_setup_hdr(vorbis_context *vc)
00829 {
00830 GetBitContext *gb = &vc->gb;
00831
00832 if ((get_bits(gb, 8) != 'v') || (get_bits(gb, 8) != 'o') ||
00833 (get_bits(gb, 8) != 'r') || (get_bits(gb, 8) != 'b') ||
00834 (get_bits(gb, 8) != 'i') || (get_bits(gb, 8) != 's')) {
00835 av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (no vorbis signature). \n");
00836 return -1;
00837 }
00838
00839 if (vorbis_parse_setup_hdr_codebooks(vc)) {
00840 av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (codebooks). \n");
00841 return -2;
00842 }
00843 if (vorbis_parse_setup_hdr_tdtransforms(vc)) {
00844 av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (time domain transforms). \n");
00845 return -3;
00846 }
00847 if (vorbis_parse_setup_hdr_floors(vc)) {
00848 av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (floors). \n");
00849 return -4;
00850 }
00851 if (vorbis_parse_setup_hdr_residues(vc)) {
00852 av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (residues). \n");
00853 return -5;
00854 }
00855 if (vorbis_parse_setup_hdr_mappings(vc)) {
00856 av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (mappings). \n");
00857 return -6;
00858 }
00859 if (vorbis_parse_setup_hdr_modes(vc)) {
00860 av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (modes). \n");
00861 return -7;
00862 }
00863 if (!get_bits1(gb)) {
00864 av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis setup header packet corrupt (framing flag). \n");
00865 return -8;
00866 }
00867
00868 return 0;
00869 }
00870
00871
00872
00873 static int vorbis_parse_id_hdr(vorbis_context *vc)
00874 {
00875 GetBitContext *gb = &vc->gb;
00876 uint_fast8_t bl0, bl1;
00877
00878 if ((get_bits(gb, 8) != 'v') || (get_bits(gb, 8) != 'o') ||
00879 (get_bits(gb, 8) != 'r') || (get_bits(gb, 8) != 'b') ||
00880 (get_bits(gb, 8) != 'i') || (get_bits(gb, 8) != 's')) {
00881 av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis id header packet corrupt (no vorbis signature). \n");
00882 return -1;
00883 }
00884
00885 vc->version = get_bits_long(gb, 32);
00886 vc->audio_channels = get_bits(gb, 8);
00887 if (vc->audio_channels <= 0) {
00888 av_log(vc->avccontext, AV_LOG_ERROR, "Invalid number of channels\n");
00889 return -1;
00890 }
00891 vc->audio_samplerate = get_bits_long(gb, 32);
00892 if (vc->audio_samplerate <= 0) {
00893 av_log(vc->avccontext, AV_LOG_ERROR, "Invalid samplerate\n");
00894 return -1;
00895 }
00896 vc->bitrate_maximum = get_bits_long(gb, 32);
00897 vc->bitrate_nominal = get_bits_long(gb, 32);
00898 vc->bitrate_minimum = get_bits_long(gb, 32);
00899 bl0 = get_bits(gb, 4);
00900 bl1 = get_bits(gb, 4);
00901 vc->blocksize[0] = (1 << bl0);
00902 vc->blocksize[1] = (1 << bl1);
00903 if (bl0 > 13 || bl0 < 6 || bl1 > 13 || bl1 < 6 || bl1 < bl0) {
00904 av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis id header packet corrupt (illegal blocksize). \n");
00905 return -3;
00906 }
00907
00908 if (vc->blocksize[1] / 2 * vc->audio_channels * 2 > AVCODEC_MAX_AUDIO_FRAME_SIZE) {
00909 av_log(vc->avccontext, AV_LOG_ERROR, "Vorbis channel count makes "
00910 "output packets too large.\n");
00911 return -4;
00912 }
00913 vc->win[0] = ff_vorbis_vwin[bl0 - 6];
00914 vc->win[1] = ff_vorbis_vwin[bl1 - 6];
00915
00916 if ((get_bits1(gb)) == 0) {
00917 av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis id header packet corrupt (framing flag not set). \n");
00918 return -2;
00919 }
00920
00921 vc->channel_residues = av_malloc((vc->blocksize[1] / 2) * vc->audio_channels * sizeof(float));
00922 vc->channel_floors = av_malloc((vc->blocksize[1] / 2) * vc->audio_channels * sizeof(float));
00923 vc->saved = av_mallocz((vc->blocksize[1] / 4) * vc->audio_channels * sizeof(float));
00924 vc->previous_window = 0;
00925
00926 ff_mdct_init(&vc->mdct[0], bl0, 1, vc->exp_bias ? -(1 << 15) : -1.0);
00927 ff_mdct_init(&vc->mdct[1], bl1, 1, vc->exp_bias ? -(1 << 15) : -1.0);
00928
00929 AV_DEBUG(" vorbis version %d \n audio_channels %d \n audio_samplerate %d \n bitrate_max %d \n bitrate_nom %d \n bitrate_min %d \n blk_0 %d blk_1 %d \n ",
00930 vc->version, vc->audio_channels, vc->audio_samplerate, vc->bitrate_maximum, vc->bitrate_nominal, vc->bitrate_minimum, vc->blocksize[0], vc->blocksize[1]);
00931
00932
00933
00934
00935
00936
00937
00938
00939 return 0;
00940 }
00941
00942
00943
00944 static av_cold int vorbis_decode_init(AVCodecContext *avccontext)
00945 {
00946 vorbis_context *vc = avccontext->priv_data ;
00947 uint8_t *headers = avccontext->extradata;
00948 int headers_len = avccontext->extradata_size;
00949 uint8_t *header_start[3];
00950 int header_len[3];
00951 GetBitContext *gb = &(vc->gb);
00952 int hdr_type;
00953
00954 vc->avccontext = avccontext;
00955 dsputil_init(&vc->dsp, avccontext);
00956
00957 if (vc->dsp.float_to_int16_interleave == ff_float_to_int16_interleave_c) {
00958 vc->add_bias = 385;
00959 vc->exp_bias = 0;
00960 } else {
00961 vc->add_bias = 0;
00962 vc->exp_bias = 15 << 23;
00963 }
00964
00965 if (!headers_len) {
00966 av_log(avccontext, AV_LOG_ERROR, "Extradata missing.\n");
00967 return -1;
00968 }
00969
00970 if (ff_split_xiph_headers(headers, headers_len, 30, header_start, header_len) < 0) {
00971 av_log(avccontext, AV_LOG_ERROR, "Extradata corrupt.\n");
00972 return -1;
00973 }
00974
00975 init_get_bits(gb, header_start[0], header_len[0]*8);
00976 hdr_type = get_bits(gb, 8);
00977 if (hdr_type != 1) {
00978 av_log(avccontext, AV_LOG_ERROR, "First header is not the id header.\n");
00979 return -1;
00980 }
00981 if (vorbis_parse_id_hdr(vc)) {
00982 av_log(avccontext, AV_LOG_ERROR, "Id header corrupt.\n");
00983 vorbis_free(vc);
00984 return -1;
00985 }
00986
00987 init_get_bits(gb, header_start[2], header_len[2]*8);
00988 hdr_type = get_bits(gb, 8);
00989 if (hdr_type != 5) {
00990 av_log(avccontext, AV_LOG_ERROR, "Third header is not the setup header.\n");
00991 vorbis_free(vc);
00992 return -1;
00993 }
00994 if (vorbis_parse_setup_hdr(vc)) {
00995 av_log(avccontext, AV_LOG_ERROR, "Setup header corrupt.\n");
00996 vorbis_free(vc);
00997 return -1;
00998 }
00999
01000 if (vc->audio_channels > 8)
01001 avccontext->channel_layout = 0;
01002 else
01003 avccontext->channel_layout = ff_vorbis_channel_layouts[vc->audio_channels - 1];
01004
01005 avccontext->channels = vc->audio_channels;
01006 avccontext->sample_rate = vc->audio_samplerate;
01007 avccontext->frame_size = FFMIN(vc->blocksize[0], vc->blocksize[1]) >> 2;
01008 avccontext->sample_fmt = SAMPLE_FMT_S16;
01009
01010 return 0 ;
01011 }
01012
01013
01014
01015
01016
01017 static int vorbis_floor0_decode(vorbis_context *vc,
01018 vorbis_floor_data *vfu, float *vec)
01019 {
01020 vorbis_floor0 *vf = &vfu->t0;
01021 float *lsp = vf->lsp;
01022 uint_fast32_t amplitude;
01023 uint_fast32_t book_idx;
01024 uint_fast8_t blockflag = vc->modes[vc->mode_number].blockflag;
01025
01026 amplitude = get_bits(&vc->gb, vf->amplitude_bits);
01027 if (amplitude > 0) {
01028 float last = 0;
01029 uint_fast16_t lsp_len = 0;
01030 uint_fast16_t idx;
01031 vorbis_codebook codebook;
01032
01033 book_idx = get_bits(&vc->gb, ilog(vf->num_books));
01034 if (book_idx >= vf->num_books) {
01035 av_log(vc->avccontext, AV_LOG_ERROR,
01036 "floor0 dec: booknumber too high!\n");
01037 book_idx = 0;
01038
01039 }
01040 AV_DEBUG("floor0 dec: booknumber: %u\n", book_idx);
01041 codebook = vc->codebooks[vf->book_list[book_idx]];
01042
01043 if (!codebook.codevectors)
01044 return -1;
01045
01046 while (lsp_len<vf->order) {
01047 int vec_off;
01048
01049 AV_DEBUG("floor0 dec: book dimension: %d\n", codebook.dimensions);
01050 AV_DEBUG("floor0 dec: maximum depth: %d\n", codebook.maxdepth);
01051
01052 vec_off = get_vlc2(&vc->gb, codebook.vlc.table,
01053 codebook.nb_bits, codebook.maxdepth)
01054 * codebook.dimensions;
01055 AV_DEBUG("floor0 dec: vector offset: %d\n", vec_off);
01056
01057 for (idx = 0; idx < codebook.dimensions; ++idx)
01058 lsp[lsp_len+idx] = codebook.codevectors[vec_off+idx] + last;
01059 last = lsp[lsp_len+idx-1];
01060
01061 lsp_len += codebook.dimensions;
01062 }
01063 #ifdef V_DEBUG
01064
01065 {
01066 int idx;
01067 for (idx = 0; idx < lsp_len; ++idx)
01068 AV_DEBUG("floor0 dec: coeff at %d is %f\n", idx, lsp[idx]);
01069 }
01070 #endif
01071
01072
01073 {
01074 int i;
01075 int order = vf->order;
01076 float wstep = M_PI / vf->bark_map_size;
01077
01078 for (i = 0; i < order; i++)
01079 lsp[i] = 2.0f * cos(lsp[i]);
01080
01081 AV_DEBUG("floor0 synth: map_size = %d; m = %d; wstep = %f\n",
01082 vf->map_size, order, wstep);
01083
01084 i = 0;
01085 while (i < vf->map_size[blockflag]) {
01086 int j, iter_cond = vf->map[blockflag][i];
01087 float p = 0.5f;
01088 float q = 0.5f;
01089 float two_cos_w = 2.0f * cos(wstep * iter_cond);
01090
01091
01092 for (j = 0; j + 1 < order; j += 2) {
01093 q *= lsp[j] - two_cos_w;
01094 p *= lsp[j + 1] - two_cos_w;
01095 }
01096 if (j == order) {
01097 p *= p * (2.0f - two_cos_w);
01098 q *= q * (2.0f + two_cos_w);
01099 } else {
01100 q *= two_cos_w-lsp[j];
01101
01102
01103 p *= p * (4.f - two_cos_w * two_cos_w);
01104 q *= q;
01105 }
01106
01107
01108 {
01109 q = exp((((amplitude*vf->amplitude_offset) /
01110 (((1 << vf->amplitude_bits) - 1) * sqrt(p + q)))
01111 - vf->amplitude_offset) * .11512925f);
01112 }
01113
01114
01115 do {
01116 vec[i] = q; ++i;
01117 } while (vf->map[blockflag][i] == iter_cond);
01118 }
01119 }
01120 } else {
01121
01122 return 1;
01123 }
01124
01125 AV_DEBUG(" Floor0 decoded\n");
01126
01127 return 0;
01128 }
01129
01130 static int vorbis_floor1_decode(vorbis_context *vc,
01131 vorbis_floor_data *vfu, float *vec)
01132 {
01133 vorbis_floor1 *vf = &vfu->t1;
01134 GetBitContext *gb = &vc->gb;
01135 uint_fast16_t range_v[4] = { 256, 128, 86, 64 };
01136 uint_fast16_t range = range_v[vf->multiplier-1];
01137 uint_fast16_t floor1_Y[vf->x_list_dim];
01138 uint_fast16_t floor1_Y_final[vf->x_list_dim];
01139 int floor1_flag[vf->x_list_dim];
01140 uint_fast8_t class_;
01141 uint_fast8_t cdim;
01142 uint_fast8_t cbits;
01143 uint_fast8_t csub;
01144 uint_fast8_t cval;
01145 int_fast16_t book;
01146 uint_fast16_t offset;
01147 uint_fast16_t i,j;
01148 int_fast16_t adx, ady, off, predicted;
01149 int_fast16_t dy, err;
01150
01151
01152 if (!get_bits1(gb))
01153 return 1;
01154
01155
01156
01157 floor1_Y[0] = get_bits(gb, ilog(range - 1));
01158 floor1_Y[1] = get_bits(gb, ilog(range - 1));
01159
01160 AV_DEBUG("floor 0 Y %d floor 1 Y %d \n", floor1_Y[0], floor1_Y[1]);
01161
01162 offset = 2;
01163 for (i = 0; i < vf->partitions; ++i) {
01164 class_ = vf->partition_class[i];
01165 cdim = vf->class_dimensions[class_];
01166 cbits = vf->class_subclasses[class_];
01167 csub = (1 << cbits) - 1;
01168 cval = 0;
01169
01170 AV_DEBUG("Cbits %d \n", cbits);
01171
01172 if (cbits)
01173 cval = get_vlc2(gb, vc->codebooks[vf->class_masterbook[class_]].vlc.table,
01174 vc->codebooks[vf->class_masterbook[class_]].nb_bits, 3);
01175
01176 for (j = 0; j < cdim; ++j) {
01177 book = vf->subclass_books[class_][cval & csub];
01178
01179 AV_DEBUG("book %d Cbits %d cval %d bits:%d \n", book, cbits, cval, get_bits_count(gb));
01180
01181 cval = cval >> cbits;
01182 if (book > -1) {
01183 floor1_Y[offset+j] = get_vlc2(gb, vc->codebooks[book].vlc.table,
01184 vc->codebooks[book].nb_bits, 3);
01185 } else {
01186 floor1_Y[offset+j] = 0;
01187 }
01188
01189 AV_DEBUG(" floor(%d) = %d \n", vf->list[offset+j].x, floor1_Y[offset+j]);
01190 }
01191 offset+=cdim;
01192 }
01193
01194
01195
01196 floor1_flag[0] = 1;
01197 floor1_flag[1] = 1;
01198 floor1_Y_final[0] = floor1_Y[0];
01199 floor1_Y_final[1] = floor1_Y[1];
01200
01201 for (i = 2; i < vf->x_list_dim; ++i) {
01202 uint_fast16_t val, highroom, lowroom, room;
01203 uint_fast16_t high_neigh_offs;
01204 uint_fast16_t low_neigh_offs;
01205
01206 low_neigh_offs = vf->list[i].low;
01207 high_neigh_offs = vf->list[i].high;
01208 dy = floor1_Y_final[high_neigh_offs] - floor1_Y_final[low_neigh_offs];
01209 adx = vf->list[high_neigh_offs].x - vf->list[low_neigh_offs].x;
01210 ady = FFABS(dy);
01211 err = ady * (vf->list[i].x - vf->list[low_neigh_offs].x);
01212 off = (int16_t)err / (int16_t)adx;
01213 if (dy < 0) {
01214 predicted = floor1_Y_final[low_neigh_offs] - off;
01215 } else {
01216 predicted = floor1_Y_final[low_neigh_offs] + off;
01217 }
01218
01219 val = floor1_Y[i];
01220 highroom = range-predicted;
01221 lowroom = predicted;
01222 if (highroom < lowroom) {
01223 room = highroom * 2;
01224 } else {
01225 room = lowroom * 2;
01226 }
01227 if (val) {
01228 floor1_flag[low_neigh_offs] = 1;
01229 floor1_flag[high_neigh_offs] = 1;
01230 floor1_flag[i] = 1;
01231 if (val >= room) {
01232 if (highroom > lowroom) {
01233 floor1_Y_final[i] = val - lowroom + predicted;
01234 } else {
01235 floor1_Y_final[i] = predicted - val + highroom - 1;
01236 }
01237 } else {
01238 if (val & 1) {
01239 floor1_Y_final[i] = predicted - (val + 1) / 2;
01240 } else {
01241 floor1_Y_final[i] = predicted + val / 2;
01242 }
01243 }
01244 } else {
01245 floor1_flag[i] = 0;
01246 floor1_Y_final[i] = predicted;
01247 }
01248
01249 AV_DEBUG(" Decoded floor(%d) = %d / val %d \n", vf->list[i].x, floor1_Y_final[i], val);
01250 }
01251
01252
01253
01254 ff_vorbis_floor1_render_list(vf->list, vf->x_list_dim, floor1_Y_final, floor1_flag, vf->multiplier, vec, vf->list[1].x);
01255
01256 AV_DEBUG(" Floor decoded\n");
01257
01258 return 0;
01259 }
01260
01261
01262
01263 static av_always_inline int vorbis_residue_decode_internal(vorbis_context *vc,
01264 vorbis_residue *vr,
01265 uint_fast8_t ch,
01266 uint_fast8_t *do_not_decode,
01267 float *vec,
01268 uint_fast16_t vlen,
01269 unsigned ch_left,
01270 int vr_type)
01271 {
01272 GetBitContext *gb = &vc->gb;
01273 uint_fast8_t c_p_c = vc->codebooks[vr->classbook].dimensions;
01274 uint_fast16_t n_to_read = vr->end-vr->begin;
01275 uint_fast16_t ptns_to_read = n_to_read/vr->partition_size;
01276 uint_fast8_t classifs[ptns_to_read*vc->audio_channels];
01277 uint_fast8_t pass;
01278 uint_fast8_t ch_used;
01279 uint_fast8_t i,j,l;
01280 uint_fast16_t k;
01281 unsigned max_output = (ch - 1) * vlen;
01282
01283 if (vr_type == 2) {
01284 for (j = 1; j < ch; ++j)
01285 do_not_decode[0] &= do_not_decode[j];
01286 if (do_not_decode[0])
01287 return 0;
01288 ch_used = 1;
01289 max_output += vr->end / ch;
01290 } else {
01291 ch_used = ch;
01292 max_output += vr->end;
01293 }
01294
01295 if (max_output > ch_left * vlen) {
01296 av_log(vc->avccontext, AV_LOG_ERROR, "Insufficient output buffer\n");
01297 return -1;
01298 }
01299
01300 AV_DEBUG(" residue type 0/1/2 decode begin, ch: %d cpc %d \n", ch, c_p_c);
01301
01302 for (pass = 0; pass <= vr->maxpass; ++pass) {
01303 uint_fast16_t voffset;
01304 uint_fast16_t partition_count;
01305 uint_fast16_t j_times_ptns_to_read;
01306
01307 voffset = vr->begin;
01308 for (partition_count = 0; partition_count < ptns_to_read;) {
01309 if (!pass) {
01310 uint_fast32_t inverse_class = ff_inverse[vr->classifications];
01311 for (j_times_ptns_to_read = 0, j = 0; j < ch_used; ++j) {
01312 if (!do_not_decode[j]) {
01313 uint_fast32_t temp = get_vlc2(gb, vc->codebooks[vr->classbook].vlc.table,
01314 vc->codebooks[vr->classbook].nb_bits, 3);
01315
01316 AV_DEBUG("Classword: %d \n", temp);
01317
01318 assert(vr->classifications > 1 && temp <= 65536);
01319 for (i = 0; i < c_p_c; ++i) {
01320 uint_fast32_t temp2;
01321
01322 temp2 = (((uint_fast64_t)temp) * inverse_class) >> 32;
01323 if (partition_count + c_p_c - 1 - i < ptns_to_read)
01324 classifs[j_times_ptns_to_read + partition_count + c_p_c - 1 - i] = temp - temp2 * vr->classifications;
01325 temp = temp2;
01326 }
01327 }
01328 j_times_ptns_to_read += ptns_to_read;
01329 }
01330 }
01331 for (i = 0; (i < c_p_c) && (partition_count < ptns_to_read); ++i) {
01332 for (j_times_ptns_to_read = 0, j = 0; j < ch_used; ++j) {
01333 uint_fast16_t voffs;
01334
01335 if (!do_not_decode[j]) {
01336 uint_fast8_t vqclass = classifs[j_times_ptns_to_read+partition_count];
01337 int_fast16_t vqbook = vr->books[vqclass][pass];
01338
01339 if (vqbook >= 0 && vc->codebooks[vqbook].codevectors) {
01340 uint_fast16_t coffs;
01341 unsigned dim = vc->codebooks[vqbook].dimensions;
01342 uint_fast16_t step = dim == 1 ? vr->partition_size
01343 : FASTDIV(vr->partition_size, dim);
01344 vorbis_codebook codebook = vc->codebooks[vqbook];
01345
01346 if (vr_type == 0) {
01347
01348 voffs = voffset+j*vlen;
01349 for (k = 0; k < step; ++k) {
01350 coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * dim;
01351 for (l = 0; l < dim; ++l)
01352 vec[voffs + k + l * step] += codebook.codevectors[coffs + l];
01353 }
01354 } else if (vr_type == 1) {
01355 voffs = voffset + j * vlen;
01356 for (k = 0; k < step; ++k) {
01357 coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * dim;
01358 for (l = 0; l < dim; ++l, ++voffs) {
01359 vec[voffs]+=codebook.codevectors[coffs+l];
01360
01361 AV_DEBUG(" pass %d offs: %d curr: %f change: %f cv offs.: %d \n", pass, voffs, vec[voffs], codebook.codevectors[coffs+l], coffs);
01362 }
01363 }
01364 } else if (vr_type == 2 && ch == 2 && (voffset & 1) == 0 && (dim & 1) == 0) {
01365 voffs = voffset >> 1;
01366
01367 if (dim == 2) {
01368 for (k = 0; k < step; ++k) {
01369 coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * 2;
01370 vec[voffs + k ] += codebook.codevectors[coffs ];
01371 vec[voffs + k + vlen] += codebook.codevectors[coffs + 1];
01372 }
01373 } else if (dim == 4) {
01374 for (k = 0; k < step; ++k, voffs += 2) {
01375 coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * 4;
01376 vec[voffs ] += codebook.codevectors[coffs ];
01377 vec[voffs + 1 ] += codebook.codevectors[coffs + 2];
01378 vec[voffs + vlen ] += codebook.codevectors[coffs + 1];
01379 vec[voffs + vlen + 1] += codebook.codevectors[coffs + 3];
01380 }
01381 } else
01382 for (k = 0; k < step; ++k) {
01383 coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * dim;
01384 for (l = 0; l < dim; l += 2, voffs++) {
01385 vec[voffs ] += codebook.codevectors[coffs + l ];
01386 vec[voffs + vlen] += codebook.codevectors[coffs + l + 1];
01387
01388 AV_DEBUG(" pass %d offs: %d curr: %f change: %f cv offs.: %d+%d \n", pass, voffset / ch + (voffs % ch) * vlen, vec[voffset / ch + (voffs % ch) * vlen], codebook.codevectors[coffs + l], coffs, l);
01389 }
01390 }
01391
01392 } else if (vr_type == 2) {
01393 voffs = voffset;
01394
01395 for (k = 0; k < step; ++k) {
01396 coffs = get_vlc2(gb, codebook.vlc.table, codebook.nb_bits, 3) * dim;
01397 for (l = 0; l < dim; ++l, ++voffs) {
01398 vec[voffs / ch + (voffs % ch) * vlen] += codebook.codevectors[coffs + l];
01399
01400 AV_DEBUG(" pass %d offs: %d curr: %f change: %f cv offs.: %d+%d \n", pass, voffset / ch + (voffs % ch) * vlen, vec[voffset / ch + (voffs % ch) * vlen], codebook.codevectors[coffs + l], coffs, l);
01401 }
01402 }
01403 }
01404 }
01405 }
01406 j_times_ptns_to_read += ptns_to_read;
01407 }
01408 ++partition_count;
01409 voffset += vr->partition_size;
01410 }
01411 }
01412 }
01413 return 0;
01414 }
01415
01416 static inline int vorbis_residue_decode(vorbis_context *vc, vorbis_residue *vr,
01417 uint_fast8_t ch,
01418 uint_fast8_t *do_not_decode,
01419 float *vec, uint_fast16_t vlen,
01420 unsigned ch_left)
01421
01422 {
01423 if (vr->type == 2)
01424 return vorbis_residue_decode_internal(vc, vr, ch, do_not_decode, vec, vlen, ch_left, 2);
01425 else if (vr->type == 1)
01426 return vorbis_residue_decode_internal(vc, vr, ch, do_not_decode, vec, vlen, ch_left, 1);
01427 else if (vr->type == 0)
01428 return vorbis_residue_decode_internal(vc, vr, ch, do_not_decode, vec, vlen, ch_left, 0);
01429 else {
01430 av_log(vc->avccontext, AV_LOG_ERROR, " Invalid residue type while residue decode?! \n");
01431 return -1;
01432 }
01433 }
01434
01435 void vorbis_inverse_coupling(float *mag, float *ang, int blocksize)
01436 {
01437 int i;
01438 for (i = 0; i < blocksize; i++) {
01439 if (mag[i] > 0.0) {
01440 if (ang[i] > 0.0) {
01441 ang[i] = mag[i] - ang[i];
01442 } else {
01443 float temp = ang[i];
01444 ang[i] = mag[i];
01445 mag[i] += temp;
01446 }
01447 } else {
01448 if (ang[i] > 0.0) {
01449 ang[i] += mag[i];
01450 } else {
01451 float temp = ang[i];
01452 ang[i] = mag[i];
01453 mag[i] -= temp;
01454 }
01455 }
01456 }
01457 }
01458
01459 static void copy_normalize(float *dst, float *src, int len, int exp_bias,
01460 float add_bias)
01461 {
01462 int i;
01463 if (exp_bias) {
01464 memcpy(dst, src, len * sizeof(float));
01465 } else {
01466 for (i = 0; i < len; i++)
01467 dst[i] = src[i] + add_bias;
01468 }
01469 }
01470
01471
01472
01473 static int vorbis_parse_audio_packet(vorbis_context *vc)
01474 {
01475 GetBitContext *gb = &vc->gb;
01476
01477 uint_fast8_t previous_window = vc->previous_window;
01478 uint_fast8_t mode_number;
01479 uint_fast8_t blockflag;
01480 uint_fast16_t blocksize;
01481 int_fast32_t i,j;
01482 uint_fast8_t no_residue[vc->audio_channels];
01483 uint_fast8_t do_not_decode[vc->audio_channels];
01484 vorbis_mapping *mapping;
01485 float *ch_res_ptr = vc->channel_residues;
01486 float *ch_floor_ptr = vc->channel_floors;
01487 uint_fast8_t res_chan[vc->audio_channels];
01488 uint_fast8_t res_num = 0;
01489 int_fast16_t retlen = 0;
01490 float fadd_bias = vc->add_bias;
01491 unsigned ch_left = vc->audio_channels;
01492 unsigned vlen;
01493
01494 if (get_bits1(gb)) {
01495 av_log(vc->avccontext, AV_LOG_ERROR, "Not a Vorbis I audio packet.\n");
01496 return -1;
01497 }
01498
01499 if (vc->mode_count == 1) {
01500 mode_number = 0;
01501 } else {
01502 GET_VALIDATED_INDEX(mode_number, ilog(vc->mode_count-1), vc->mode_count)
01503 }
01504 vc->mode_number = mode_number;
01505 mapping = &vc->mappings[vc->modes[mode_number].mapping];
01506
01507 AV_DEBUG(" Mode number: %d , mapping: %d , blocktype %d \n", mode_number, vc->modes[mode_number].mapping, vc->modes[mode_number].blockflag);
01508
01509 blockflag = vc->modes[mode_number].blockflag;
01510 blocksize = vc->blocksize[blockflag];
01511 vlen = blocksize / 2;
01512 if (blockflag)
01513 skip_bits(gb, 2);
01514
01515 memset(ch_res_ptr, 0, sizeof(float) * vc->audio_channels * vlen);
01516 memset(ch_floor_ptr, 0, sizeof(float) * vc->audio_channels * vlen);
01517
01518
01519
01520 for (i = 0; i < vc->audio_channels; ++i) {
01521 vorbis_floor *floor;
01522 int ret;
01523 if (mapping->submaps > 1) {
01524 floor = &vc->floors[mapping->submap_floor[mapping->mux[i]]];
01525 } else {
01526 floor = &vc->floors[mapping->submap_floor[0]];
01527 }
01528
01529 ret = floor->decode(vc, &floor->data, ch_floor_ptr);
01530
01531 if (ret < 0) {
01532 av_log(vc->avccontext, AV_LOG_ERROR, "Invalid codebook in vorbis_floor_decode.\n");
01533 return -1;
01534 }
01535 no_residue[i] = ret;
01536 ch_floor_ptr += vlen;
01537 }
01538
01539
01540
01541 for (i = mapping->coupling_steps - 1; i >= 0; --i) {
01542 if (!(no_residue[mapping->magnitude[i]] & no_residue[mapping->angle[i]])) {
01543 no_residue[mapping->magnitude[i]] = 0;
01544 no_residue[mapping->angle[i]] = 0;
01545 }
01546 }
01547
01548
01549
01550 for (i = 0; i < mapping->submaps; ++i) {
01551 vorbis_residue *residue;
01552 uint_fast8_t ch = 0;
01553 int ret;
01554
01555 for (j = 0; j < vc->audio_channels; ++j) {
01556 if ((mapping->submaps == 1) || (i == mapping->mux[j])) {
01557 res_chan[j] = res_num;
01558 if (no_residue[j]) {
01559 do_not_decode[ch] = 1;
01560 } else {
01561 do_not_decode[ch] = 0;
01562 }
01563 ++ch;
01564 ++res_num;
01565 }
01566 }
01567 residue = &vc->residues[mapping->submap_residue[i]];
01568 if (ch_left < ch) {
01569 av_log(vc->avccontext, AV_LOG_ERROR, "Too many channels in vorbis_floor_decode.\n");
01570 return -1;
01571 }
01572 if (ch) {
01573 ret = vorbis_residue_decode(vc, residue, ch, do_not_decode, ch_res_ptr, vlen, ch_left);
01574 if (ret < 0)
01575 return ret;
01576 }
01577
01578 ch_res_ptr += ch * vlen;
01579 ch_left -= ch;
01580 }
01581
01582
01583
01584 for (i = mapping->coupling_steps - 1; i >= 0; --i) {
01585 float *mag, *ang;
01586
01587 mag = vc->channel_residues+res_chan[mapping->magnitude[i]] * blocksize / 2;
01588 ang = vc->channel_residues+res_chan[mapping->angle[i]] * blocksize / 2;
01589 vc->dsp.vorbis_inverse_coupling(mag, ang, blocksize / 2);
01590 }
01591
01592
01593
01594 for (j = vc->audio_channels-1;j >= 0; j--) {
01595 ch_floor_ptr = vc->channel_floors + j * blocksize / 2;
01596 ch_res_ptr = vc->channel_residues + res_chan[j] * blocksize / 2;
01597 vc->dsp.vector_fmul(ch_floor_ptr, ch_res_ptr, blocksize / 2);
01598 ff_imdct_half(&vc->mdct[blockflag], ch_res_ptr, ch_floor_ptr);
01599 }
01600
01601
01602
01603 retlen = (blocksize + vc->blocksize[previous_window]) / 4;
01604 for (j = 0; j < vc->audio_channels; j++) {
01605 uint_fast16_t bs0 = vc->blocksize[0];
01606 uint_fast16_t bs1 = vc->blocksize[1];
01607 float *residue = vc->channel_residues + res_chan[j] * blocksize / 2;
01608 float *saved = vc->saved + j * bs1 / 4;
01609 float *ret = vc->channel_floors + j * retlen;
01610 float *buf = residue;
01611 const float *win = vc->win[blockflag & previous_window];
01612
01613 if (blockflag == previous_window) {
01614 vc->dsp.vector_fmul_window(ret, saved, buf, win, fadd_bias, blocksize / 4);
01615 } else if (blockflag > previous_window) {
01616 vc->dsp.vector_fmul_window(ret, saved, buf, win, fadd_bias, bs0 / 4);
01617 copy_normalize(ret+bs0/2, buf+bs0/4, (bs1-bs0)/4, vc->exp_bias, fadd_bias);
01618 } else {
01619 copy_normalize(ret, saved, (bs1 - bs0) / 4, vc->exp_bias, fadd_bias);
01620 vc->dsp.vector_fmul_window(ret + (bs1 - bs0) / 4, saved + (bs1 - bs0) / 4, buf, win, fadd_bias, bs0 / 4);
01621 }
01622 memcpy(saved, buf + blocksize / 4, blocksize / 4 * sizeof(float));
01623 }
01624
01625 vc->previous_window = blockflag;
01626 return retlen;
01627 }
01628
01629
01630
01631 static int vorbis_decode_frame(AVCodecContext *avccontext,
01632 void *data, int *data_size,
01633 AVPacket *avpkt)
01634 {
01635 const uint8_t *buf = avpkt->data;
01636 int buf_size = avpkt->size;
01637 vorbis_context *vc = avccontext->priv_data ;
01638 GetBitContext *gb = &(vc->gb);
01639 const float *channel_ptrs[vc->audio_channels];
01640 int i;
01641
01642 int_fast16_t len;
01643
01644 if (!buf_size)
01645 return 0;
01646
01647 AV_DEBUG("packet length %d \n", buf_size);
01648
01649 init_get_bits(gb, buf, buf_size*8);
01650
01651 len = vorbis_parse_audio_packet(vc);
01652
01653 if (len <= 0) {
01654 *data_size = 0;
01655 return buf_size;
01656 }
01657
01658 if (!vc->first_frame) {
01659 vc->first_frame = 1;
01660 *data_size = 0;
01661 return buf_size ;
01662 }
01663
01664 AV_DEBUG("parsed %d bytes %d bits, returned %d samples (*ch*bits) \n", get_bits_count(gb)/8, get_bits_count(gb)%8, len);
01665
01666 if (vc->audio_channels > 8) {
01667 for (i = 0; i < vc->audio_channels; i++)
01668 channel_ptrs[i] = vc->channel_floors + i * len;
01669 } else {
01670 for (i = 0; i < vc->audio_channels; i++)
01671 channel_ptrs[i] = vc->channel_floors +
01672 len * ff_vorbis_channel_layout_offsets[vc->audio_channels - 1][i];
01673 }
01674
01675 vc->dsp.float_to_int16_interleave(data, channel_ptrs, len, vc->audio_channels);
01676 *data_size = len * 2 * vc->audio_channels;
01677
01678 return buf_size ;
01679 }
01680
01681
01682
01683 static av_cold int vorbis_decode_close(AVCodecContext *avccontext)
01684 {
01685 vorbis_context *vc = avccontext->priv_data;
01686
01687 vorbis_free(vc);
01688
01689 return 0 ;
01690 }
01691
01692 AVCodec vorbis_decoder = {
01693 "vorbis",
01694 AVMEDIA_TYPE_AUDIO,
01695 CODEC_ID_VORBIS,
01696 sizeof(vorbis_context),
01697 vorbis_decode_init,
01698 NULL,
01699 vorbis_decode_close,
01700 vorbis_decode_frame,
01701 .long_name = NULL_IF_CONFIG_SMALL("Vorbis"),
01702 .channel_layouts = ff_vorbis_channel_layouts,
01703 };
01704