| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | /* | ||
| 2 | * copyright (c) 2006 Oded Shimon <ods15@ods15.dyndns.org> | ||
| 3 | * | ||
| 4 | * This file is part of FFmpeg. | ||
| 5 | * | ||
| 6 | * FFmpeg is free software; you can redistribute it and/or | ||
| 7 | * modify it under the terms of the GNU Lesser General Public | ||
| 8 | * License as published by the Free Software Foundation; either | ||
| 9 | * version 2.1 of the License, or (at your option) any later version. | ||
| 10 | * | ||
| 11 | * FFmpeg is distributed in the hope that it will be useful, | ||
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 14 | * Lesser General Public License for more details. | ||
| 15 | * | ||
| 16 | * You should have received a copy of the GNU Lesser General Public | ||
| 17 | * License along with FFmpeg; if not, write to the Free Software | ||
| 18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 19 | */ | ||
| 20 | |||
| 21 | /** | ||
| 22 | * @file | ||
| 23 | * Native Vorbis encoder. | ||
| 24 | * @author Oded Shimon <ods15@ods15.dyndns.org> | ||
| 25 | */ | ||
| 26 | |||
| 27 | #include <float.h> | ||
| 28 | #include "libavutil/float_dsp.h" | ||
| 29 | #include "libavutil/mem.h" | ||
| 30 | #include "libavutil/tx.h" | ||
| 31 | |||
| 32 | #include "avcodec.h" | ||
| 33 | #include "codec_internal.h" | ||
| 34 | #include "encode.h" | ||
| 35 | #include "mathops.h" | ||
| 36 | #include "vorbis.h" | ||
| 37 | #include "vorbis_data.h" | ||
| 38 | #include "vorbis_enc_data.h" | ||
| 39 | |||
| 40 | #include "audio_frame_queue.h" | ||
| 41 | #include "libavfilter/bufferqueue.h" | ||
| 42 | |||
| 43 | #define BITSTREAM_WRITER_LE | ||
| 44 | #include "put_bits.h" | ||
| 45 | |||
| 46 | #undef NDEBUG | ||
| 47 | #include <assert.h> | ||
| 48 | |||
| 49 | typedef struct vorbis_enc_codebook { | ||
| 50 | int nentries; | ||
| 51 | uint8_t *lens; | ||
| 52 | uint32_t *codewords; | ||
| 53 | int ndimensions; | ||
| 54 | float min; | ||
| 55 | float delta; | ||
| 56 | int seq_p; | ||
| 57 | int lookup; | ||
| 58 | int *quantlist; | ||
| 59 | float *dimensions; | ||
| 60 | float *pow2; | ||
| 61 | } vorbis_enc_codebook; | ||
| 62 | |||
| 63 | typedef struct vorbis_enc_floor_class { | ||
| 64 | int dim; | ||
| 65 | int subclass; | ||
| 66 | int masterbook; | ||
| 67 | int *books; | ||
| 68 | } vorbis_enc_floor_class; | ||
| 69 | |||
| 70 | typedef struct vorbis_enc_floor { | ||
| 71 | int partitions; | ||
| 72 | int *partition_to_class; | ||
| 73 | int nclasses; | ||
| 74 | vorbis_enc_floor_class *classes; | ||
| 75 | int multiplier; | ||
| 76 | int rangebits; | ||
| 77 | int values; | ||
| 78 | vorbis_floor1_entry *list; | ||
| 79 | } vorbis_enc_floor; | ||
| 80 | |||
| 81 | typedef struct vorbis_enc_residue { | ||
| 82 | int type; | ||
| 83 | int begin; | ||
| 84 | int end; | ||
| 85 | int partition_size; | ||
| 86 | int classifications; | ||
| 87 | int classbook; | ||
| 88 | int8_t (*books)[8]; | ||
| 89 | float (*maxes)[2]; | ||
| 90 | } vorbis_enc_residue; | ||
| 91 | |||
| 92 | typedef struct vorbis_enc_mapping { | ||
| 93 | int submaps; | ||
| 94 | int *mux; | ||
| 95 | int *floor; | ||
| 96 | int *residue; | ||
| 97 | int coupling_steps; | ||
| 98 | int *magnitude; | ||
| 99 | int *angle; | ||
| 100 | } vorbis_enc_mapping; | ||
| 101 | |||
| 102 | typedef struct vorbis_enc_mode { | ||
| 103 | int blockflag; | ||
| 104 | int mapping; | ||
| 105 | } vorbis_enc_mode; | ||
| 106 | |||
| 107 | typedef struct vorbis_enc_context { | ||
| 108 | int channels; | ||
| 109 | int sample_rate; | ||
| 110 | int log2_blocksize[2]; | ||
| 111 | AVTXContext *mdct[2]; | ||
| 112 | av_tx_fn mdct_fn[2]; | ||
| 113 | const float *win[2]; | ||
| 114 | int have_saved; | ||
| 115 | float *saved; | ||
| 116 | float *samples; | ||
| 117 | float *floor; // also used for tmp values for mdct | ||
| 118 | float *coeffs; // also used for residue after floor | ||
| 119 | float *scratch; // used for tmp values for psy model | ||
| 120 | float quality; | ||
| 121 | |||
| 122 | AudioFrameQueue afq; | ||
| 123 | struct FFBufQueue bufqueue; | ||
| 124 | |||
| 125 | int ncodebooks; | ||
| 126 | vorbis_enc_codebook *codebooks; | ||
| 127 | |||
| 128 | int nfloors; | ||
| 129 | vorbis_enc_floor *floors; | ||
| 130 | |||
| 131 | int nresidues; | ||
| 132 | vorbis_enc_residue *residues; | ||
| 133 | |||
| 134 | int nmappings; | ||
| 135 | vorbis_enc_mapping *mappings; | ||
| 136 | |||
| 137 | int nmodes; | ||
| 138 | vorbis_enc_mode *modes; | ||
| 139 | |||
| 140 | int64_t next_pts; | ||
| 141 | |||
| 142 | AVFloatDSPContext *fdsp; | ||
| 143 | } vorbis_enc_context; | ||
| 144 | |||
| 145 | #define MAX_CHANNELS 2 | ||
| 146 | #define MAX_CODEBOOK_DIM 8 | ||
| 147 | |||
| 148 | #define MAX_FLOOR_CLASS_DIM 4 | ||
| 149 | #define NUM_FLOOR_PARTITIONS 8 | ||
| 150 | #define MAX_FLOOR_VALUES (MAX_FLOOR_CLASS_DIM*NUM_FLOOR_PARTITIONS+2) | ||
| 151 | |||
| 152 | #define RESIDUE_SIZE 1600 | ||
| 153 | #define RESIDUE_PART_SIZE 32 | ||
| 154 | #define NUM_RESIDUE_PARTITIONS (RESIDUE_SIZE/RESIDUE_PART_SIZE) | ||
| 155 | |||
| 156 | 399604 | static inline int put_codeword(PutBitContext *pb, vorbis_enc_codebook *cb, | |
| 157 | int entry) | ||
| 158 | { | ||
| 159 | av_assert2(entry >= 0); | ||
| 160 | av_assert2(entry < cb->nentries); | ||
| 161 | av_assert2(cb->lens[entry]); | ||
| 162 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 399604 times.
|
399604 | if (put_bits_left(pb) < cb->lens[entry]) |
| 163 | ✗ | return AVERROR(EINVAL); | |
| 164 | 399604 | put_bits(pb, cb->lens[entry], cb->codewords[entry]); | |
| 165 | 399604 | return 0; | |
| 166 | } | ||
| 167 | |||
| 168 | 39 | static int cb_lookup_vals(int lookup, int dimensions, int entries) | |
| 169 | { | ||
| 170 |
1/2✓ Branch 0 taken 39 times.
✗ Branch 1 not taken.
|
39 | if (lookup == 1) |
| 171 | 39 | return ff_vorbis_nth_root(entries, dimensions); | |
| 172 | ✗ | else if (lookup == 2) | |
| 173 | ✗ | return dimensions *entries; | |
| 174 | ✗ | return 0; | |
| 175 | } | ||
| 176 | |||
| 177 | 29 | static int ready_codebook(vorbis_enc_codebook *cb) | |
| 178 | { | ||
| 179 | int i; | ||
| 180 | |||
| 181 | 29 | ff_vorbis_len2vlc(cb->lens, cb->codewords, cb->nentries); | |
| 182 | |||
| 183 |
2/2✓ Branch 0 taken 16 times.
✓ Branch 1 taken 13 times.
|
29 | if (!cb->lookup) { |
| 184 | 16 | cb->pow2 = cb->dimensions = NULL; | |
| 185 | } else { | ||
| 186 | 13 | int vals = cb_lookup_vals(cb->lookup, cb->ndimensions, cb->nentries); | |
| 187 | 13 | cb->dimensions = av_malloc_array(cb->nentries, sizeof(float) * cb->ndimensions); | |
| 188 | 13 | cb->pow2 = av_calloc(cb->nentries, sizeof(*cb->pow2)); | |
| 189 |
2/4✓ Branch 0 taken 13 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 13 times.
|
13 | if (!cb->dimensions || !cb->pow2) |
| 190 | ✗ | return AVERROR(ENOMEM); | |
| 191 |
2/2✓ Branch 0 taken 9341 times.
✓ Branch 1 taken 13 times.
|
9354 | for (i = 0; i < cb->nentries; i++) { |
| 192 | 9341 | float last = 0; | |
| 193 | int j; | ||
| 194 | 9341 | int div = 1; | |
| 195 |
2/2✓ Branch 0 taken 60710 times.
✓ Branch 1 taken 9341 times.
|
70051 | for (j = 0; j < cb->ndimensions; j++) { |
| 196 | int off; | ||
| 197 |
1/2✓ Branch 0 taken 60710 times.
✗ Branch 1 not taken.
|
60710 | if (cb->lookup == 1) |
| 198 | 60710 | off = (i / div) % vals; // lookup type 1 | |
| 199 | else | ||
| 200 | ✗ | off = i * cb->ndimensions + j; // lookup type 2 | |
| 201 | |||
| 202 | 60710 | cb->dimensions[i * cb->ndimensions + j] = last + cb->min + cb->quantlist[off] * cb->delta; | |
| 203 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 60710 times.
|
60710 | if (cb->seq_p) |
| 204 | ✗ | last = cb->dimensions[i * cb->ndimensions + j]; | |
| 205 | 60710 | cb->pow2[i] += cb->dimensions[i * cb->ndimensions + j] * cb->dimensions[i * cb->ndimensions + j]; | |
| 206 | 60710 | div *= vals; | |
| 207 | } | ||
| 208 | 9341 | cb->pow2[i] /= 2.0; | |
| 209 | } | ||
| 210 | } | ||
| 211 | 29 | return 0; | |
| 212 | } | ||
| 213 | |||
| 214 | 1 | static int ready_residue(vorbis_enc_residue *rc, vorbis_enc_context *venc) | |
| 215 | { | ||
| 216 | int i; | ||
| 217 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | av_assert0(rc->type == 2); |
| 218 | 1 | rc->maxes = av_calloc(rc->classifications, sizeof(*rc->maxes)); | |
| 219 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | if (!rc->maxes) |
| 220 | ✗ | return AVERROR(ENOMEM); | |
| 221 |
2/2✓ Branch 0 taken 10 times.
✓ Branch 1 taken 1 times.
|
11 | for (i = 0; i < rc->classifications; i++) { |
| 222 | int j; | ||
| 223 | vorbis_enc_codebook * cb; | ||
| 224 |
2/2✓ Branch 0 taken 29 times.
✓ Branch 1 taken 1 times.
|
30 | for (j = 0; j < 8; j++) |
| 225 |
2/2✓ Branch 0 taken 9 times.
✓ Branch 1 taken 20 times.
|
29 | if (rc->books[i][j] != -1) |
| 226 | 9 | break; | |
| 227 |
2/2✓ Branch 0 taken 1 times.
✓ Branch 1 taken 9 times.
|
10 | if (j == 8) // zero |
| 228 | 1 | continue; | |
| 229 | 9 | cb = &venc->codebooks[rc->books[i][j]]; | |
| 230 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 9 times.
|
9 | assert(cb->ndimensions >= 2); |
| 231 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 9 times.
|
9 | assert(cb->lookup); |
| 232 | |||
| 233 |
2/2✓ Branch 0 taken 8681 times.
✓ Branch 1 taken 9 times.
|
8690 | for (j = 0; j < cb->nentries; j++) { |
| 234 | float a; | ||
| 235 |
2/2✓ Branch 0 taken 7798 times.
✓ Branch 1 taken 883 times.
|
8681 | if (!cb->lens[j]) |
| 236 | 7798 | continue; | |
| 237 | 883 | a = fabs(cb->dimensions[j * cb->ndimensions]); | |
| 238 |
2/2✓ Branch 0 taken 31 times.
✓ Branch 1 taken 852 times.
|
883 | if (a > rc->maxes[i][0]) |
| 239 | 31 | rc->maxes[i][0] = a; | |
| 240 | 883 | a = fabs(cb->dimensions[j * cb->ndimensions + 1]); | |
| 241 |
2/2✓ Branch 0 taken 31 times.
✓ Branch 1 taken 852 times.
|
883 | if (a > rc->maxes[i][1]) |
| 242 | 31 | rc->maxes[i][1] = a; | |
| 243 | } | ||
| 244 | } | ||
| 245 | // small bias | ||
| 246 |
2/2✓ Branch 0 taken 10 times.
✓ Branch 1 taken 1 times.
|
11 | for (i = 0; i < rc->classifications; i++) { |
| 247 | 10 | rc->maxes[i][0] += 0.8; | |
| 248 | 10 | rc->maxes[i][1] += 0.8; | |
| 249 | } | ||
| 250 | 1 | return 0; | |
| 251 | } | ||
| 252 | |||
| 253 | 1 | static av_cold int dsp_init(AVCodecContext *avctx, vorbis_enc_context *venc) | |
| 254 | { | ||
| 255 | 1 | int ret = 0; | |
| 256 | 1 | float scale = 1.0f; | |
| 257 | |||
| 258 | 1 | venc->fdsp = avpriv_float_dsp_alloc(avctx->flags & AV_CODEC_FLAG_BITEXACT); | |
| 259 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | if (!venc->fdsp) |
| 260 | ✗ | return AVERROR(ENOMEM); | |
| 261 | |||
| 262 | // init windows | ||
| 263 | 1 | venc->win[0] = ff_vorbis_vwin[venc->log2_blocksize[0] - 6]; | |
| 264 | 1 | venc->win[1] = ff_vorbis_vwin[venc->log2_blocksize[1] - 6]; | |
| 265 | |||
| 266 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | if ((ret = av_tx_init(&venc->mdct[0], &venc->mdct_fn[0], AV_TX_FLOAT_MDCT, |
| 267 | 1 | 0, 1 << (venc->log2_blocksize[0] - 1), &scale, 0)) < 0) | |
| 268 | ✗ | return ret; | |
| 269 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | if ((ret = av_tx_init(&venc->mdct[1], &venc->mdct_fn[1], AV_TX_FLOAT_MDCT, |
| 270 | 1 | 0, 1 << (venc->log2_blocksize[1] - 1), &scale, 0)) < 0) | |
| 271 | ✗ | return ret; | |
| 272 | |||
| 273 | 1 | return 0; | |
| 274 | } | ||
| 275 | |||
| 276 | 1 | static int create_vorbis_context(vorbis_enc_context *venc, | |
| 277 | AVCodecContext *avctx) | ||
| 278 | { | ||
| 279 | vorbis_enc_floor *fc; | ||
| 280 | vorbis_enc_residue *rc; | ||
| 281 | vorbis_enc_mapping *mc; | ||
| 282 | const uint8_t *clens, *quant; | ||
| 283 | int i, book, ret; | ||
| 284 | |||
| 285 | 1 | venc->channels = avctx->ch_layout.nb_channels; | |
| 286 | 1 | venc->sample_rate = avctx->sample_rate; | |
| 287 | 1 | venc->log2_blocksize[0] = venc->log2_blocksize[1] = 11; | |
| 288 | |||
| 289 | 1 | venc->ncodebooks = FF_ARRAY_ELEMS(cvectors); | |
| 290 | 1 | venc->codebooks = av_mallocz(sizeof(vorbis_enc_codebook) * venc->ncodebooks); | |
| 291 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | if (!venc->codebooks) |
| 292 | ✗ | return AVERROR(ENOMEM); | |
| 293 | |||
| 294 | // codebook 0..14 - floor1 book, values 0..255 | ||
| 295 | // codebook 15 residue masterbook | ||
| 296 | // codebook 16..29 residue | ||
| 297 | 1 | clens = codebooks; | |
| 298 | 1 | quant = quant_tables; | |
| 299 |
2/2✓ Branch 0 taken 29 times.
✓ Branch 1 taken 1 times.
|
30 | for (book = 0; book < venc->ncodebooks; book++) { |
| 300 | 29 | vorbis_enc_codebook *cb = &venc->codebooks[book]; | |
| 301 | int vals; | ||
| 302 | 29 | cb->ndimensions = cvectors[book].dim; | |
| 303 | 29 | cb->nentries = cvectors[book].real_len; | |
| 304 | 29 | cb->min = cvectors[book].min; | |
| 305 | 29 | cb->delta = cvectors[book].delta; | |
| 306 | 29 | cb->lookup = cvectors[book].lookup; | |
| 307 | 29 | cb->seq_p = 0; | |
| 308 | |||
| 309 | 29 | cb->lens = av_malloc_array(cb->nentries, sizeof(uint8_t)); | |
| 310 | 29 | cb->codewords = av_malloc_array(cb->nentries, sizeof(uint32_t)); | |
| 311 |
2/4✓ Branch 0 taken 29 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 29 times.
|
29 | if (!cb->lens || !cb->codewords) |
| 312 | ✗ | return AVERROR(ENOMEM); | |
| 313 | 29 | memcpy(cb->lens, clens, cvectors[book].len); | |
| 314 | 29 | memset(cb->lens + cvectors[book].len, 0, cb->nentries - cvectors[book].len); | |
| 315 | 29 | clens += cvectors[book].len; | |
| 316 | |||
| 317 |
2/2✓ Branch 0 taken 13 times.
✓ Branch 1 taken 16 times.
|
29 | if (cb->lookup) { |
| 318 | 13 | vals = cb_lookup_vals(cb->lookup, cb->ndimensions, cb->nentries); | |
| 319 | 13 | cb->quantlist = av_malloc_array(vals, sizeof(int)); | |
| 320 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 13 times.
|
13 | if (!cb->quantlist) |
| 321 | ✗ | return AVERROR(ENOMEM); | |
| 322 |
2/2✓ Branch 0 taken 125 times.
✓ Branch 1 taken 13 times.
|
138 | for (i = 0; i < vals; i++) |
| 323 | 125 | cb->quantlist[i] = *quant++; | |
| 324 | } else { | ||
| 325 | 16 | cb->quantlist = NULL; | |
| 326 | } | ||
| 327 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 29 times.
|
29 | if ((ret = ready_codebook(cb)) < 0) |
| 328 | ✗ | return ret; | |
| 329 | } | ||
| 330 | |||
| 331 | 1 | venc->nfloors = 1; | |
| 332 | 1 | venc->floors = av_mallocz(sizeof(vorbis_enc_floor) * venc->nfloors); | |
| 333 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | if (!venc->floors) |
| 334 | ✗ | return AVERROR(ENOMEM); | |
| 335 | |||
| 336 | // just 1 floor | ||
| 337 | 1 | fc = &venc->floors[0]; | |
| 338 | 1 | fc->partitions = NUM_FLOOR_PARTITIONS; | |
| 339 | 1 | fc->partition_to_class = av_malloc(sizeof(int) * fc->partitions); | |
| 340 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | if (!fc->partition_to_class) |
| 341 | ✗ | return AVERROR(ENOMEM); | |
| 342 | 1 | fc->nclasses = 0; | |
| 343 |
2/2✓ Branch 0 taken 8 times.
✓ Branch 1 taken 1 times.
|
9 | for (i = 0; i < fc->partitions; i++) { |
| 344 | static const int a[] = {0, 1, 2, 2, 3, 3, 4, 4}; | ||
| 345 | 8 | fc->partition_to_class[i] = a[i]; | |
| 346 | 8 | fc->nclasses = FFMAX(fc->nclasses, fc->partition_to_class[i]); | |
| 347 | } | ||
| 348 | 1 | fc->nclasses++; | |
| 349 | 1 | fc->classes = av_calloc(fc->nclasses, sizeof(vorbis_enc_floor_class)); | |
| 350 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | if (!fc->classes) |
| 351 | ✗ | return AVERROR(ENOMEM); | |
| 352 |
2/2✓ Branch 0 taken 5 times.
✓ Branch 1 taken 1 times.
|
6 | for (i = 0; i < fc->nclasses; i++) { |
| 353 | 5 | vorbis_enc_floor_class * c = &fc->classes[i]; | |
| 354 | int j, books; | ||
| 355 | 5 | c->dim = floor_classes[i].dim; | |
| 356 | 5 | c->subclass = floor_classes[i].subclass; | |
| 357 | 5 | c->masterbook = floor_classes[i].masterbook; | |
| 358 | 5 | books = (1 << c->subclass); | |
| 359 | 5 | c->books = av_malloc_array(books, sizeof(int)); | |
| 360 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 5 times.
|
5 | if (!c->books) |
| 361 | ✗ | return AVERROR(ENOMEM); | |
| 362 |
2/2✓ Branch 0 taken 13 times.
✓ Branch 1 taken 5 times.
|
18 | for (j = 0; j < books; j++) |
| 363 | 13 | c->books[j] = floor_classes[i].nbooks[j]; | |
| 364 | } | ||
| 365 | 1 | fc->multiplier = 2; | |
| 366 | 1 | fc->rangebits = venc->log2_blocksize[1] - 1; | |
| 367 | |||
| 368 | 1 | fc->values = 2; | |
| 369 |
2/2✓ Branch 0 taken 8 times.
✓ Branch 1 taken 1 times.
|
9 | for (i = 0; i < fc->partitions; i++) |
| 370 | 8 | fc->values += fc->classes[fc->partition_to_class[i]].dim; | |
| 371 | |||
| 372 | 1 | fc->list = av_malloc_array(fc->values, sizeof(vorbis_floor1_entry)); | |
| 373 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | if (!fc->list) |
| 374 | ✗ | return AVERROR(ENOMEM); | |
| 375 | 1 | fc->list[0].x = 0; | |
| 376 | 1 | fc->list[1].x = 1 << fc->rangebits; | |
| 377 |
2/2✓ Branch 0 taken 27 times.
✓ Branch 1 taken 1 times.
|
28 | for (i = 2; i < fc->values; i++) { |
| 378 | static const int a[] = { | ||
| 379 | 93, 23,372, 6, 46,186,750, 14, 33, 65, | ||
| 380 | 130,260,556, 3, 10, 18, 28, 39, 55, 79, | ||
| 381 | 111,158,220,312,464,650,850 | ||
| 382 | }; | ||
| 383 | 27 | fc->list[i].x = a[i - 2]; | |
| 384 | } | ||
| 385 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 1 times.
|
1 | if (ff_vorbis_ready_floor1_list(avctx, fc->list, fc->values)) |
| 386 | ✗ | return AVERROR_BUG; | |
| 387 | |||
| 388 | 1 | venc->nresidues = 1; | |
| 389 | 1 | venc->residues = av_mallocz(sizeof(vorbis_enc_residue) * venc->nresidues); | |
| 390 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | if (!venc->residues) |
| 391 | ✗ | return AVERROR(ENOMEM); | |
| 392 | |||
| 393 | // single residue | ||
| 394 | 1 | rc = &venc->residues[0]; | |
| 395 | 1 | rc->type = 2; | |
| 396 | 1 | rc->begin = 0; | |
| 397 | 1 | rc->end = 1600; | |
| 398 | 1 | rc->partition_size = 32; | |
| 399 | 1 | rc->classifications = 10; | |
| 400 | 1 | rc->classbook = 15; | |
| 401 | 1 | rc->books = av_malloc(sizeof(*rc->books) * rc->classifications); | |
| 402 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | if (!rc->books) |
| 403 | ✗ | return AVERROR(ENOMEM); | |
| 404 | { | ||
| 405 | static const int8_t a[10][8] = { | ||
| 406 | { -1, -1, -1, -1, -1, -1, -1, -1, }, | ||
| 407 | { -1, -1, 16, -1, -1, -1, -1, -1, }, | ||
| 408 | { -1, -1, 17, -1, -1, -1, -1, -1, }, | ||
| 409 | { -1, -1, 18, -1, -1, -1, -1, -1, }, | ||
| 410 | { -1, -1, 19, -1, -1, -1, -1, -1, }, | ||
| 411 | { -1, -1, 20, -1, -1, -1, -1, -1, }, | ||
| 412 | { -1, -1, 21, -1, -1, -1, -1, -1, }, | ||
| 413 | { 22, 23, -1, -1, -1, -1, -1, -1, }, | ||
| 414 | { 24, 25, -1, -1, -1, -1, -1, -1, }, | ||
| 415 | { 26, 27, 28, -1, -1, -1, -1, -1, }, | ||
| 416 | }; | ||
| 417 | 1 | memcpy(rc->books, a, sizeof a); | |
| 418 | } | ||
| 419 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 1 times.
|
1 | if ((ret = ready_residue(rc, venc)) < 0) |
| 420 | ✗ | return ret; | |
| 421 | |||
| 422 | 1 | venc->nmappings = 1; | |
| 423 | 1 | venc->mappings = av_mallocz(sizeof(vorbis_enc_mapping) * venc->nmappings); | |
| 424 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | if (!venc->mappings) |
| 425 | ✗ | return AVERROR(ENOMEM); | |
| 426 | |||
| 427 | // single mapping | ||
| 428 | 1 | mc = &venc->mappings[0]; | |
| 429 | 1 | mc->submaps = 1; | |
| 430 | 1 | mc->mux = av_malloc(sizeof(int) * venc->channels); | |
| 431 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | if (!mc->mux) |
| 432 | ✗ | return AVERROR(ENOMEM); | |
| 433 |
2/2✓ Branch 0 taken 2 times.
✓ Branch 1 taken 1 times.
|
3 | for (i = 0; i < venc->channels; i++) |
| 434 | 2 | mc->mux[i] = 0; | |
| 435 | 1 | mc->floor = av_malloc(sizeof(int) * mc->submaps); | |
| 436 | 1 | mc->residue = av_malloc(sizeof(int) * mc->submaps); | |
| 437 |
2/4✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 1 times.
|
1 | if (!mc->floor || !mc->residue) |
| 438 | ✗ | return AVERROR(ENOMEM); | |
| 439 |
2/2✓ Branch 0 taken 1 times.
✓ Branch 1 taken 1 times.
|
2 | for (i = 0; i < mc->submaps; i++) { |
| 440 | 1 | mc->floor[i] = 0; | |
| 441 | 1 | mc->residue[i] = 0; | |
| 442 | } | ||
| 443 | 1 | mc->coupling_steps = venc->channels == 2 ? 1 : 0; | |
| 444 | 1 | mc->magnitude = av_malloc(sizeof(int) * mc->coupling_steps); | |
| 445 | 1 | mc->angle = av_malloc(sizeof(int) * mc->coupling_steps); | |
| 446 |
2/4✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 1 times.
|
1 | if (!mc->magnitude || !mc->angle) |
| 447 | ✗ | return AVERROR(ENOMEM); | |
| 448 |
1/2✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
|
1 | if (mc->coupling_steps) { |
| 449 | 1 | mc->magnitude[0] = 0; | |
| 450 | 1 | mc->angle[0] = 1; | |
| 451 | } | ||
| 452 | |||
| 453 | 1 | venc->nmodes = 2; | |
| 454 | 1 | venc->modes = av_malloc(sizeof(vorbis_enc_mode) * venc->nmodes); | |
| 455 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | if (!venc->modes) |
| 456 | ✗ | return AVERROR(ENOMEM); | |
| 457 | |||
| 458 | // Short block | ||
| 459 | 1 | venc->modes[0].blockflag = 0; | |
| 460 | 1 | venc->modes[0].mapping = 0; | |
| 461 | // Long block | ||
| 462 | 1 | venc->modes[1].blockflag = 1; | |
| 463 | 1 | venc->modes[1].mapping = 0; | |
| 464 | |||
| 465 | 1 | venc->have_saved = 0; | |
| 466 | 1 | venc->saved = av_malloc_array((1 << venc->log2_blocksize[1]) / 2, sizeof(float) * venc->channels); | |
| 467 | 1 | venc->samples = av_malloc_array((1 << venc->log2_blocksize[1]), sizeof(float) * venc->channels); | |
| 468 | 1 | venc->floor = av_malloc_array((1 << venc->log2_blocksize[1]) / 2, sizeof(float) * venc->channels); | |
| 469 | 1 | venc->coeffs = av_malloc_array((1 << venc->log2_blocksize[1]) / 2, sizeof(float) * venc->channels); | |
| 470 | 1 | venc->scratch = av_malloc_array((1 << venc->log2_blocksize[1]), sizeof(float) * venc->channels); | |
| 471 | |||
| 472 |
5/10✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 1 times.
✗ Branch 5 not taken.
✓ Branch 6 taken 1 times.
✗ Branch 7 not taken.
✗ Branch 8 not taken.
✓ Branch 9 taken 1 times.
|
1 | if (!venc->saved || !venc->samples || !venc->floor || !venc->coeffs || !venc->scratch) |
| 473 | ✗ | return AVERROR(ENOMEM); | |
| 474 | |||
| 475 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 1 times.
|
1 | if ((ret = dsp_init(avctx, venc)) < 0) |
| 476 | ✗ | return ret; | |
| 477 | |||
| 478 | 1 | return 0; | |
| 479 | } | ||
| 480 | |||
| 481 | 26 | static void put_float(PutBitContext *pb, float f) | |
| 482 | { | ||
| 483 | int exp, mant; | ||
| 484 | 26 | uint32_t res = 0; | |
| 485 | 26 | mant = (int)ldexp(frexp(f, &exp), 20); | |
| 486 | 26 | exp += 788 - 20; | |
| 487 |
2/2✓ Branch 0 taken 13 times.
✓ Branch 1 taken 13 times.
|
26 | if (mant < 0) { |
| 488 | 13 | res |= (1U << 31); | |
| 489 | 13 | mant = -mant; | |
| 490 | } | ||
| 491 | 26 | res |= mant | (exp << 21); | |
| 492 | 26 | put_bits32(pb, res); | |
| 493 | 26 | } | |
| 494 | |||
| 495 | 29 | static void put_codebook_header(PutBitContext *pb, vorbis_enc_codebook *cb) | |
| 496 | { | ||
| 497 | int i; | ||
| 498 | 29 | int ordered = 0; | |
| 499 | |||
| 500 | 29 | put_bits(pb, 24, 0x564342); //magic | |
| 501 | 29 | put_bits(pb, 16, cb->ndimensions); | |
| 502 | 29 | put_bits(pb, 24, cb->nentries); | |
| 503 | |||
| 504 |
1/2✓ Branch 0 taken 161 times.
✗ Branch 1 not taken.
|
161 | for (i = 1; i < cb->nentries; i++) |
| 505 |
2/2✓ Branch 0 taken 29 times.
✓ Branch 1 taken 132 times.
|
161 | if (cb->lens[i] < cb->lens[i-1]) |
| 506 | 29 | break; | |
| 507 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 29 times.
|
29 | if (i == cb->nentries) |
| 508 | ✗ | ordered = 1; | |
| 509 | |||
| 510 | 29 | put_bits(pb, 1, ordered); | |
| 511 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 29 times.
|
29 | if (ordered) { |
| 512 | ✗ | int len = cb->lens[0]; | |
| 513 | ✗ | put_bits(pb, 5, len - 1); | |
| 514 | ✗ | i = 0; | |
| 515 | ✗ | while (i < cb->nentries) { | |
| 516 | int j; | ||
| 517 | ✗ | for (j = 0; j+i < cb->nentries; j++) | |
| 518 | ✗ | if (cb->lens[j+i] != len) | |
| 519 | ✗ | break; | |
| 520 | ✗ | put_bits(pb, ilog(cb->nentries - i), j); | |
| 521 | ✗ | i += j; | |
| 522 | ✗ | len++; | |
| 523 | } | ||
| 524 | } else { | ||
| 525 | 29 | int sparse = 0; | |
| 526 |
2/2✓ Branch 0 taken 2080 times.
✓ Branch 1 taken 22 times.
|
2102 | for (i = 0; i < cb->nentries; i++) |
| 527 |
2/2✓ Branch 0 taken 7 times.
✓ Branch 1 taken 2073 times.
|
2080 | if (!cb->lens[i]) |
| 528 | 7 | break; | |
| 529 |
2/2✓ Branch 0 taken 7 times.
✓ Branch 1 taken 22 times.
|
29 | if (i != cb->nentries) |
| 530 | 7 | sparse = 1; | |
| 531 | 29 | put_bits(pb, 1, sparse); | |
| 532 | |||
| 533 |
2/2✓ Branch 0 taken 10423 times.
✓ Branch 1 taken 29 times.
|
10452 | for (i = 0; i < cb->nentries; i++) { |
| 534 |
2/2✓ Branch 0 taken 8431 times.
✓ Branch 1 taken 1992 times.
|
10423 | if (sparse) |
| 535 | 8431 | put_bits(pb, 1, !!cb->lens[i]); | |
| 536 |
2/2✓ Branch 0 taken 2625 times.
✓ Branch 1 taken 7798 times.
|
10423 | if (cb->lens[i]) |
| 537 | 2625 | put_bits(pb, 5, cb->lens[i] - 1); | |
| 538 | } | ||
| 539 | } | ||
| 540 | |||
| 541 | 29 | put_bits(pb, 4, cb->lookup); | |
| 542 |
2/2✓ Branch 0 taken 13 times.
✓ Branch 1 taken 16 times.
|
29 | if (cb->lookup) { |
| 543 | 13 | int tmp = cb_lookup_vals(cb->lookup, cb->ndimensions, cb->nentries); | |
| 544 | 13 | int bits = ilog(cb->quantlist[0]); | |
| 545 | |||
| 546 |
2/2✓ Branch 0 taken 112 times.
✓ Branch 1 taken 13 times.
|
125 | for (i = 1; i < tmp; i++) |
| 547 | 112 | bits = FFMAX(bits, ilog(cb->quantlist[i])); | |
| 548 | |||
| 549 | 13 | put_float(pb, cb->min); | |
| 550 | 13 | put_float(pb, cb->delta); | |
| 551 | |||
| 552 | 13 | put_bits(pb, 4, bits - 1); | |
| 553 | 13 | put_bits(pb, 1, cb->seq_p); | |
| 554 | |||
| 555 |
2/2✓ Branch 0 taken 125 times.
✓ Branch 1 taken 13 times.
|
138 | for (i = 0; i < tmp; i++) |
| 556 | 125 | put_bits(pb, bits, cb->quantlist[i]); | |
| 557 | } | ||
| 558 | 29 | } | |
| 559 | |||
| 560 | 1 | static void put_floor_header(PutBitContext *pb, vorbis_enc_floor *fc) | |
| 561 | { | ||
| 562 | int i; | ||
| 563 | |||
| 564 | 1 | put_bits(pb, 16, 1); // type, only floor1 is supported | |
| 565 | |||
| 566 | 1 | put_bits(pb, 5, fc->partitions); | |
| 567 | |||
| 568 |
2/2✓ Branch 0 taken 8 times.
✓ Branch 1 taken 1 times.
|
9 | for (i = 0; i < fc->partitions; i++) |
| 569 | 8 | put_bits(pb, 4, fc->partition_to_class[i]); | |
| 570 | |||
| 571 |
2/2✓ Branch 0 taken 5 times.
✓ Branch 1 taken 1 times.
|
6 | for (i = 0; i < fc->nclasses; i++) { |
| 572 | int j, books; | ||
| 573 | |||
| 574 | 5 | put_bits(pb, 3, fc->classes[i].dim - 1); | |
| 575 | 5 | put_bits(pb, 2, fc->classes[i].subclass); | |
| 576 | |||
| 577 |
2/2✓ Branch 0 taken 4 times.
✓ Branch 1 taken 1 times.
|
5 | if (fc->classes[i].subclass) |
| 578 | 4 | put_bits(pb, 8, fc->classes[i].masterbook); | |
| 579 | |||
| 580 | 5 | books = (1 << fc->classes[i].subclass); | |
| 581 | |||
| 582 |
2/2✓ Branch 0 taken 13 times.
✓ Branch 1 taken 5 times.
|
18 | for (j = 0; j < books; j++) |
| 583 | 13 | put_bits(pb, 8, fc->classes[i].books[j] + 1); | |
| 584 | } | ||
| 585 | |||
| 586 | 1 | put_bits(pb, 2, fc->multiplier - 1); | |
| 587 | 1 | put_bits(pb, 4, fc->rangebits); | |
| 588 | |||
| 589 |
2/2✓ Branch 0 taken 27 times.
✓ Branch 1 taken 1 times.
|
28 | for (i = 2; i < fc->values; i++) |
| 590 | 27 | put_bits(pb, fc->rangebits, fc->list[i].x); | |
| 591 | 1 | } | |
| 592 | |||
| 593 | 1 | static void put_residue_header(PutBitContext *pb, vorbis_enc_residue *rc) | |
| 594 | { | ||
| 595 | int i; | ||
| 596 | |||
| 597 | 1 | put_bits(pb, 16, rc->type); | |
| 598 | |||
| 599 | 1 | put_bits(pb, 24, rc->begin); | |
| 600 | 1 | put_bits(pb, 24, rc->end); | |
| 601 | 1 | put_bits(pb, 24, rc->partition_size - 1); | |
| 602 | 1 | put_bits(pb, 6, rc->classifications - 1); | |
| 603 | 1 | put_bits(pb, 8, rc->classbook); | |
| 604 | |||
| 605 |
2/2✓ Branch 0 taken 10 times.
✓ Branch 1 taken 1 times.
|
11 | for (i = 0; i < rc->classifications; i++) { |
| 606 | 10 | int j, tmp = 0; | |
| 607 |
2/2✓ Branch 0 taken 80 times.
✓ Branch 1 taken 10 times.
|
90 | for (j = 0; j < 8; j++) |
| 608 | 80 | tmp |= (rc->books[i][j] != -1) << j; | |
| 609 | |||
| 610 | 10 | put_bits(pb, 3, tmp & 7); | |
| 611 | 10 | put_bits(pb, 1, tmp > 7); | |
| 612 | |||
| 613 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 10 times.
|
10 | if (tmp > 7) |
| 614 | ✗ | put_bits(pb, 5, tmp >> 3); | |
| 615 | } | ||
| 616 | |||
| 617 |
2/2✓ Branch 0 taken 10 times.
✓ Branch 1 taken 1 times.
|
11 | for (i = 0; i < rc->classifications; i++) { |
| 618 | int j; | ||
| 619 |
2/2✓ Branch 0 taken 80 times.
✓ Branch 1 taken 10 times.
|
90 | for (j = 0; j < 8; j++) |
| 620 |
2/2✓ Branch 0 taken 13 times.
✓ Branch 1 taken 67 times.
|
80 | if (rc->books[i][j] != -1) |
| 621 | 13 | put_bits(pb, 8, rc->books[i][j]); | |
| 622 | } | ||
| 623 | 1 | } | |
| 624 | |||
| 625 | 1 | static int put_main_header(vorbis_enc_context *venc, uint8_t **out) | |
| 626 | { | ||
| 627 | int i; | ||
| 628 | PutBitContext pb; | ||
| 629 | int len, hlens[3]; | ||
| 630 | 1 | int buffer_len = 50000; | |
| 631 | 1 | uint8_t *buffer = av_mallocz(buffer_len), *p = buffer; | |
| 632 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | if (!buffer) |
| 633 | ✗ | return AVERROR(ENOMEM); | |
| 634 | |||
| 635 | // identification header | ||
| 636 | 1 | init_put_bits(&pb, p, buffer_len); | |
| 637 | 1 | put_bits(&pb, 8, 1); //magic | |
| 638 |
2/2✓ Branch 0 taken 6 times.
✓ Branch 1 taken 1 times.
|
7 | for (i = 0; "vorbis"[i]; i++) |
| 639 | 6 | put_bits(&pb, 8, "vorbis"[i]); | |
| 640 | 1 | put_bits32(&pb, 0); // version | |
| 641 | 1 | put_bits(&pb, 8, venc->channels); | |
| 642 | 1 | put_bits32(&pb, venc->sample_rate); | |
| 643 | 1 | put_bits32(&pb, 0); // bitrate | |
| 644 | 1 | put_bits32(&pb, 0); // bitrate | |
| 645 | 1 | put_bits32(&pb, 0); // bitrate | |
| 646 | 1 | put_bits(&pb, 4, venc->log2_blocksize[0]); | |
| 647 | 1 | put_bits(&pb, 4, venc->log2_blocksize[1]); | |
| 648 | 1 | put_bits(&pb, 1, 1); // framing | |
| 649 | |||
| 650 | 1 | flush_put_bits(&pb); | |
| 651 | 1 | hlens[0] = put_bytes_output(&pb); | |
| 652 | 1 | buffer_len -= hlens[0]; | |
| 653 | 1 | p += hlens[0]; | |
| 654 | |||
| 655 | // comment header | ||
| 656 | 1 | init_put_bits(&pb, p, buffer_len); | |
| 657 | 1 | put_bits(&pb, 8, 3); //magic | |
| 658 |
2/2✓ Branch 0 taken 6 times.
✓ Branch 1 taken 1 times.
|
7 | for (i = 0; "vorbis"[i]; i++) |
| 659 | 6 | put_bits(&pb, 8, "vorbis"[i]); | |
| 660 | 1 | put_bits32(&pb, 0); // vendor length TODO | |
| 661 | 1 | put_bits32(&pb, 0); // amount of comments | |
| 662 | 1 | put_bits(&pb, 1, 1); // framing | |
| 663 | |||
| 664 | 1 | flush_put_bits(&pb); | |
| 665 | 1 | hlens[1] = put_bytes_output(&pb); | |
| 666 | 1 | buffer_len -= hlens[1]; | |
| 667 | 1 | p += hlens[1]; | |
| 668 | |||
| 669 | // setup header | ||
| 670 | 1 | init_put_bits(&pb, p, buffer_len); | |
| 671 | 1 | put_bits(&pb, 8, 5); //magic | |
| 672 |
2/2✓ Branch 0 taken 6 times.
✓ Branch 1 taken 1 times.
|
7 | for (i = 0; "vorbis"[i]; i++) |
| 673 | 6 | put_bits(&pb, 8, "vorbis"[i]); | |
| 674 | |||
| 675 | // codebooks | ||
| 676 | 1 | put_bits(&pb, 8, venc->ncodebooks - 1); | |
| 677 |
2/2✓ Branch 0 taken 29 times.
✓ Branch 1 taken 1 times.
|
30 | for (i = 0; i < venc->ncodebooks; i++) |
| 678 | 29 | put_codebook_header(&pb, &venc->codebooks[i]); | |
| 679 | |||
| 680 | // time domain, reserved, zero | ||
| 681 | 1 | put_bits(&pb, 6, 0); | |
| 682 | 1 | put_bits(&pb, 16, 0); | |
| 683 | |||
| 684 | // floors | ||
| 685 | 1 | put_bits(&pb, 6, venc->nfloors - 1); | |
| 686 |
2/2✓ Branch 0 taken 1 times.
✓ Branch 1 taken 1 times.
|
2 | for (i = 0; i < venc->nfloors; i++) |
| 687 | 1 | put_floor_header(&pb, &venc->floors[i]); | |
| 688 | |||
| 689 | // residues | ||
| 690 | 1 | put_bits(&pb, 6, venc->nresidues - 1); | |
| 691 |
2/2✓ Branch 0 taken 1 times.
✓ Branch 1 taken 1 times.
|
2 | for (i = 0; i < venc->nresidues; i++) |
| 692 | 1 | put_residue_header(&pb, &venc->residues[i]); | |
| 693 | |||
| 694 | // mappings | ||
| 695 | 1 | put_bits(&pb, 6, venc->nmappings - 1); | |
| 696 |
2/2✓ Branch 0 taken 1 times.
✓ Branch 1 taken 1 times.
|
2 | for (i = 0; i < venc->nmappings; i++) { |
| 697 | 1 | vorbis_enc_mapping *mc = &venc->mappings[i]; | |
| 698 | int j; | ||
| 699 | 1 | put_bits(&pb, 16, 0); // mapping type | |
| 700 | |||
| 701 | 1 | put_bits(&pb, 1, mc->submaps > 1); | |
| 702 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | if (mc->submaps > 1) |
| 703 | ✗ | put_bits(&pb, 4, mc->submaps - 1); | |
| 704 | |||
| 705 | 1 | put_bits(&pb, 1, !!mc->coupling_steps); | |
| 706 |
1/2✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
|
1 | if (mc->coupling_steps) { |
| 707 | 1 | put_bits(&pb, 8, mc->coupling_steps - 1); | |
| 708 |
2/2✓ Branch 0 taken 1 times.
✓ Branch 1 taken 1 times.
|
2 | for (j = 0; j < mc->coupling_steps; j++) { |
| 709 | 1 | put_bits(&pb, ilog(venc->channels - 1), mc->magnitude[j]); | |
| 710 | 1 | put_bits(&pb, ilog(venc->channels - 1), mc->angle[j]); | |
| 711 | } | ||
| 712 | } | ||
| 713 | |||
| 714 | 1 | put_bits(&pb, 2, 0); // reserved | |
| 715 | |||
| 716 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | if (mc->submaps > 1) |
| 717 | ✗ | for (j = 0; j < venc->channels; j++) | |
| 718 | ✗ | put_bits(&pb, 4, mc->mux[j]); | |
| 719 | |||
| 720 |
2/2✓ Branch 0 taken 1 times.
✓ Branch 1 taken 1 times.
|
2 | for (j = 0; j < mc->submaps; j++) { |
| 721 | 1 | put_bits(&pb, 8, 0); // reserved time configuration | |
| 722 | 1 | put_bits(&pb, 8, mc->floor[j]); | |
| 723 | 1 | put_bits(&pb, 8, mc->residue[j]); | |
| 724 | } | ||
| 725 | } | ||
| 726 | |||
| 727 | // modes | ||
| 728 | 1 | put_bits(&pb, 6, venc->nmodes - 1); | |
| 729 |
2/2✓ Branch 0 taken 2 times.
✓ Branch 1 taken 1 times.
|
3 | for (i = 0; i < venc->nmodes; i++) { |
| 730 | 2 | put_bits(&pb, 1, venc->modes[i].blockflag); | |
| 731 | 2 | put_bits(&pb, 16, 0); // reserved window type | |
| 732 | 2 | put_bits(&pb, 16, 0); // reserved transform type | |
| 733 | 2 | put_bits(&pb, 8, venc->modes[i].mapping); | |
| 734 | } | ||
| 735 | |||
| 736 | 1 | put_bits(&pb, 1, 1); // framing | |
| 737 | |||
| 738 | 1 | flush_put_bits(&pb); | |
| 739 | 1 | hlens[2] = put_bytes_output(&pb); | |
| 740 | |||
| 741 | 1 | len = hlens[0] + hlens[1] + hlens[2]; | |
| 742 | 1 | p = *out = av_mallocz(64 + len + len/255); | |
| 743 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | if (!p) { |
| 744 | ✗ | av_freep(&buffer); | |
| 745 | ✗ | return AVERROR(ENOMEM); | |
| 746 | } | ||
| 747 | |||
| 748 | 1 | *p++ = 2; | |
| 749 | 1 | p += av_xiphlacing(p, hlens[0]); | |
| 750 | 1 | p += av_xiphlacing(p, hlens[1]); | |
| 751 | 1 | buffer_len = 0; | |
| 752 |
2/2✓ Branch 0 taken 3 times.
✓ Branch 1 taken 1 times.
|
4 | for (i = 0; i < 3; i++) { |
| 753 | 3 | memcpy(p, buffer + buffer_len, hlens[i]); | |
| 754 | 3 | p += hlens[i]; | |
| 755 | 3 | buffer_len += hlens[i]; | |
| 756 | } | ||
| 757 | |||
| 758 | 1 | av_freep(&buffer); | |
| 759 | 1 | return p - *out; | |
| 760 | } | ||
| 761 | |||
| 762 | 23838 | static float get_floor_average(vorbis_enc_floor * fc, float *coeffs, int i) | |
| 763 | { | ||
| 764 |
2/2✓ Branch 0 taken 22194 times.
✓ Branch 1 taken 1644 times.
|
23838 | int begin = fc->list[fc->list[FFMAX(i-1, 0)].sort].x; |
| 765 |
2/2✓ Branch 0 taken 822 times.
✓ Branch 1 taken 23016 times.
|
23838 | int end = fc->list[fc->list[FFMIN(i+1, fc->values - 1)].sort].x; |
| 766 | int j; | ||
| 767 | 23838 | float average = 0; | |
| 768 | |||
| 769 |
2/2✓ Branch 0 taken 1683456 times.
✓ Branch 1 taken 23838 times.
|
1707294 | for (j = begin; j < end; j++) |
| 770 | 1683456 | average += fabs(coeffs[j]); | |
| 771 | 23838 | return average / (end - begin); | |
| 772 | } | ||
| 773 | |||
| 774 | 822 | static void floor_fit(vorbis_enc_context *venc, vorbis_enc_floor *fc, | |
| 775 | float *coeffs, uint16_t *posts, int samples) | ||
| 776 | { | ||
| 777 | 822 | int range = 255 / fc->multiplier + 1; | |
| 778 | int i; | ||
| 779 | 822 | float tot_average = 0.0; | |
| 780 | float averages[MAX_FLOOR_VALUES]; | ||
| 781 |
2/2✓ Branch 0 taken 23838 times.
✓ Branch 1 taken 822 times.
|
24660 | for (i = 0; i < fc->values; i++) { |
| 782 | 23838 | averages[i] = get_floor_average(fc, coeffs, i); | |
| 783 | 23838 | tot_average += averages[i]; | |
| 784 | } | ||
| 785 | 822 | tot_average /= fc->values; | |
| 786 | 822 | tot_average /= venc->quality; | |
| 787 | |||
| 788 |
2/2✓ Branch 0 taken 23838 times.
✓ Branch 1 taken 822 times.
|
24660 | for (i = 0; i < fc->values; i++) { |
| 789 | 23838 | int position = fc->list[fc->list[i].sort].x; | |
| 790 | 23838 | float average = averages[i]; | |
| 791 | int j; | ||
| 792 | |||
| 793 | 23838 | average = sqrt(tot_average * average) * pow(1.25f, position*0.005f); // MAGIC! | |
| 794 |
1/2✓ Branch 0 taken 1577852 times.
✗ Branch 1 not taken.
|
1577852 | for (j = 0; j < range - 1; j++) |
| 795 |
2/2✓ Branch 0 taken 23838 times.
✓ Branch 1 taken 1554014 times.
|
1577852 | if (ff_vorbis_floor1_inverse_db_table[j * fc->multiplier] > average) |
| 796 | 23838 | break; | |
| 797 | 23838 | posts[fc->list[i].sort] = j; | |
| 798 | } | ||
| 799 | 822 | } | |
| 800 | |||
| 801 | 22194 | static int render_point(int x0, int y0, int x1, int y1, int x) | |
| 802 | { | ||
| 803 | 22194 | return y0 + (x - x0) * (y1 - y0) / (x1 - x0); | |
| 804 | } | ||
| 805 | |||
| 806 | 822 | static int floor_encode(vorbis_enc_context *venc, vorbis_enc_floor *fc, | |
| 807 | PutBitContext *pb, uint16_t *posts, | ||
| 808 | float *floor, int samples) | ||
| 809 | { | ||
| 810 | 822 | int range = 255 / fc->multiplier + 1; | |
| 811 | int coded[MAX_FLOOR_VALUES]; // first 2 values are unused | ||
| 812 | int i, counter; | ||
| 813 | |||
| 814 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 822 times.
|
822 | if (put_bits_left(pb) < 1 + 2 * ilog(range - 1)) |
| 815 | ✗ | return AVERROR(EINVAL); | |
| 816 | 822 | put_bits(pb, 1, 1); // non zero | |
| 817 | 822 | put_bits(pb, ilog(range - 1), posts[0]); | |
| 818 | 822 | put_bits(pb, ilog(range - 1), posts[1]); | |
| 819 | 822 | coded[0] = coded[1] = 1; | |
| 820 | |||
| 821 |
2/2✓ Branch 0 taken 22194 times.
✓ Branch 1 taken 822 times.
|
23016 | for (i = 2; i < fc->values; i++) { |
| 822 | 22194 | int predicted = render_point(fc->list[fc->list[i].low].x, | |
| 823 | 22194 | posts[fc->list[i].low], | |
| 824 | 22194 | fc->list[fc->list[i].high].x, | |
| 825 | 22194 | posts[fc->list[i].high], | |
| 826 | 22194 | fc->list[i].x); | |
| 827 | 22194 | int highroom = range - predicted; | |
| 828 | 22194 | int lowroom = predicted; | |
| 829 | 22194 | int room = FFMIN(highroom, lowroom); | |
| 830 |
2/2✓ Branch 0 taken 5981 times.
✓ Branch 1 taken 16213 times.
|
22194 | if (predicted == posts[i]) { |
| 831 | 5981 | coded[i] = 0; // must be used later as flag! | |
| 832 | 5981 | continue; | |
| 833 | } else { | ||
| 834 |
2/2✓ Branch 0 taken 488 times.
✓ Branch 1 taken 15725 times.
|
16213 | if (!coded[fc->list[i].low ]) |
| 835 | 488 | coded[fc->list[i].low ] = -1; | |
| 836 |
2/2✓ Branch 0 taken 1012 times.
✓ Branch 1 taken 15201 times.
|
16213 | if (!coded[fc->list[i].high]) |
| 837 | 1012 | coded[fc->list[i].high] = -1; | |
| 838 | } | ||
| 839 |
2/2✓ Branch 0 taken 6159 times.
✓ Branch 1 taken 10054 times.
|
16213 | if (posts[i] > predicted) { |
| 840 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 6159 times.
|
6159 | if (posts[i] - predicted > room) |
| 841 | ✗ | coded[i] = posts[i] - predicted + lowroom; | |
| 842 | else | ||
| 843 | 6159 | coded[i] = (posts[i] - predicted) << 1; | |
| 844 | } else { | ||
| 845 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 10054 times.
|
10054 | if (predicted - posts[i] > room) |
| 846 | ✗ | coded[i] = predicted - posts[i] + highroom - 1; | |
| 847 | else | ||
| 848 | 10054 | coded[i] = ((predicted - posts[i]) << 1) - 1; | |
| 849 | } | ||
| 850 | } | ||
| 851 | |||
| 852 | 822 | counter = 2; | |
| 853 |
2/2✓ Branch 0 taken 6576 times.
✓ Branch 1 taken 822 times.
|
7398 | for (i = 0; i < fc->partitions; i++) { |
| 854 | 6576 | vorbis_enc_floor_class * c = &fc->classes[fc->partition_to_class[i]]; | |
| 855 | 6576 | int k, cval = 0, csub = 1<<c->subclass; | |
| 856 |
2/2✓ Branch 0 taken 5754 times.
✓ Branch 1 taken 822 times.
|
6576 | if (c->subclass) { |
| 857 | 5754 | vorbis_enc_codebook * book = &venc->codebooks[c->masterbook]; | |
| 858 | 5754 | int cshift = 0; | |
| 859 |
2/2✓ Branch 0 taken 19728 times.
✓ Branch 1 taken 5754 times.
|
25482 | for (k = 0; k < c->dim; k++) { |
| 860 | int l; | ||
| 861 |
1/2✓ Branch 0 taken 27010 times.
✗ Branch 1 not taken.
|
27010 | for (l = 0; l < csub; l++) { |
| 862 | 27010 | int maxval = 1; | |
| 863 |
2/2✓ Branch 0 taken 15502 times.
✓ Branch 1 taken 11508 times.
|
27010 | if (c->books[l] != -1) |
| 864 | 15502 | maxval = venc->codebooks[c->books[l]].nentries; | |
| 865 | // coded could be -1, but this still works, cause that is 0 | ||
| 866 |
2/2✓ Branch 0 taken 19728 times.
✓ Branch 1 taken 7282 times.
|
27010 | if (coded[counter + k] < maxval) |
| 867 | 19728 | break; | |
| 868 | } | ||
| 869 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 19728 times.
|
19728 | assert(l != csub); |
| 870 | 19728 | cval |= l << cshift; | |
| 871 | 19728 | cshift += c->subclass; | |
| 872 | } | ||
| 873 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 5754 times.
|
5754 | if (put_codeword(pb, book, cval)) |
| 874 | ✗ | return AVERROR(EINVAL); | |
| 875 | } | ||
| 876 |
2/2✓ Branch 0 taken 22194 times.
✓ Branch 1 taken 6576 times.
|
28770 | for (k = 0; k < c->dim; k++) { |
| 877 | 22194 | int book = c->books[cval & (csub-1)]; | |
| 878 | 22194 | int entry = coded[counter++]; | |
| 879 | 22194 | cval >>= c->subclass; | |
| 880 |
2/2✓ Branch 0 taken 4227 times.
✓ Branch 1 taken 17967 times.
|
22194 | if (book == -1) |
| 881 | 4227 | continue; | |
| 882 |
2/2✓ Branch 0 taken 1500 times.
✓ Branch 1 taken 16467 times.
|
17967 | if (entry == -1) |
| 883 | 1500 | entry = 0; | |
| 884 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 17967 times.
|
17967 | if (put_codeword(pb, &venc->codebooks[book], entry)) |
| 885 | ✗ | return AVERROR(EINVAL); | |
| 886 | } | ||
| 887 | } | ||
| 888 | |||
| 889 | 822 | ff_vorbis_floor1_render_list(fc->list, fc->values, posts, coded, | |
| 890 | fc->multiplier, floor, samples); | ||
| 891 | |||
| 892 | 822 | return 0; | |
| 893 | } | ||
| 894 | |||
| 895 | 365608 | static float *put_vector(vorbis_enc_codebook *book, PutBitContext *pb, | |
| 896 | float *num) | ||
| 897 | { | ||
| 898 | 365608 | int i, entry = -1; | |
| 899 | 365608 | float distance = FLT_MAX; | |
| 900 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 365608 times.
|
365608 | assert(book->dimensions); |
| 901 |
2/2✓ Branch 0 taken 123219496 times.
✓ Branch 1 taken 365608 times.
|
123585104 | for (i = 0; i < book->nentries; i++) { |
| 902 | 123219496 | float * vec = book->dimensions + i * book->ndimensions, d = book->pow2[i]; | |
| 903 | int j; | ||
| 904 |
2/2✓ Branch 0 taken 78436032 times.
✓ Branch 1 taken 44783464 times.
|
123219496 | if (!book->lens[i]) |
| 905 | 78436032 | continue; | |
| 906 |
2/2✓ Branch 0 taken 98504832 times.
✓ Branch 1 taken 44783464 times.
|
143288296 | for (j = 0; j < book->ndimensions; j++) |
| 907 | 98504832 | d -= vec[j] * num[j]; | |
| 908 |
2/2✓ Branch 0 taken 1516706 times.
✓ Branch 1 taken 43266758 times.
|
44783464 | if (distance > d) { |
| 909 | 1516706 | entry = i; | |
| 910 | 1516706 | distance = d; | |
| 911 | } | ||
| 912 | } | ||
| 913 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 365608 times.
|
365608 | if (put_codeword(pb, book, entry)) |
| 914 | ✗ | return NULL; | |
| 915 | 365608 | return &book->dimensions[entry * book->ndimensions]; | |
| 916 | } | ||
| 917 | |||
| 918 | 411 | static int residue_encode(vorbis_enc_context *venc, vorbis_enc_residue *rc, | |
| 919 | PutBitContext *pb, float *coeffs, int samples, | ||
| 920 | int real_ch) | ||
| 921 | { | ||
| 922 | int pass, i, j, p, k; | ||
| 923 | 411 | int psize = rc->partition_size; | |
| 924 | 411 | int partitions = (rc->end - rc->begin) / psize; | |
| 925 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 411 times.
|
411 | int channels = (rc->type == 2) ? 1 : real_ch; |
| 926 | int classes[MAX_CHANNELS][NUM_RESIDUE_PARTITIONS]; | ||
| 927 | 411 | int classwords = venc->codebooks[rc->classbook].ndimensions; | |
| 928 | |||
| 929 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 411 times.
|
411 | av_assert0(rc->type == 2); |
| 930 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 411 times.
|
411 | av_assert0(real_ch == 2); |
| 931 |
2/2✓ Branch 0 taken 20550 times.
✓ Branch 1 taken 411 times.
|
20961 | for (p = 0; p < partitions; p++) { |
| 932 | 20550 | float max1 = 0.0, max2 = 0.0; | |
| 933 | 20550 | int s = rc->begin + p * psize; | |
| 934 |
2/2✓ Branch 0 taken 328800 times.
✓ Branch 1 taken 20550 times.
|
349350 | for (k = s; k < s + psize; k += 2) { |
| 935 |
2/2✓ Branch 0 taken 258832 times.
✓ Branch 1 taken 69968 times.
|
328800 | max1 = FFMAX(max1, fabs(coeffs[ k / real_ch])); |
| 936 |
2/2✓ Branch 0 taken 258489 times.
✓ Branch 1 taken 70311 times.
|
328800 | max2 = FFMAX(max2, fabs(coeffs[samples + k / real_ch])); |
| 937 | } | ||
| 938 | |||
| 939 |
2/2✓ Branch 0 taken 120752 times.
✓ Branch 1 taken 1243 times.
|
121995 | for (i = 0; i < rc->classifications - 1; i++) |
| 940 |
4/4✓ Branch 0 taken 24546 times.
✓ Branch 1 taken 96206 times.
✓ Branch 2 taken 19307 times.
✓ Branch 3 taken 5239 times.
|
120752 | if (max1 < rc->maxes[i][0] && max2 < rc->maxes[i][1]) |
| 941 | 19307 | break; | |
| 942 | 20550 | classes[0][p] = i; | |
| 943 | } | ||
| 944 | |||
| 945 |
2/2✓ Branch 0 taken 3288 times.
✓ Branch 1 taken 411 times.
|
3699 | for (pass = 0; pass < 8; pass++) { |
| 946 | 3288 | p = 0; | |
| 947 |
2/2✓ Branch 0 taken 82200 times.
✓ Branch 1 taken 3288 times.
|
85488 | while (p < partitions) { |
| 948 |
2/2✓ Branch 0 taken 10275 times.
✓ Branch 1 taken 71925 times.
|
82200 | if (pass == 0) |
| 949 |
2/2✓ Branch 0 taken 10275 times.
✓ Branch 1 taken 10275 times.
|
20550 | for (j = 0; j < channels; j++) { |
| 950 | 10275 | vorbis_enc_codebook * book = &venc->codebooks[rc->classbook]; | |
| 951 | 10275 | int entry = 0; | |
| 952 |
2/2✓ Branch 0 taken 20550 times.
✓ Branch 1 taken 10275 times.
|
30825 | for (i = 0; i < classwords; i++) { |
| 953 | 20550 | entry *= rc->classifications; | |
| 954 | 20550 | entry += classes[j][p + i]; | |
| 955 | } | ||
| 956 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 10275 times.
|
10275 | if (put_codeword(pb, book, entry)) |
| 957 | ✗ | return AVERROR(EINVAL); | |
| 958 | } | ||
| 959 |
3/4✓ Branch 0 taken 164400 times.
✓ Branch 1 taken 82200 times.
✓ Branch 2 taken 164400 times.
✗ Branch 3 not taken.
|
246600 | for (i = 0; i < classwords && p < partitions; i++, p++) { |
| 960 |
2/2✓ Branch 0 taken 164400 times.
✓ Branch 1 taken 164400 times.
|
328800 | for (j = 0; j < channels; j++) { |
| 961 | 164400 | int nbook = rc->books[classes[j][p]][pass]; | |
| 962 | 164400 | vorbis_enc_codebook * book = &venc->codebooks[nbook]; | |
| 963 | 164400 | float *buf = coeffs + samples*j + rc->begin + p*psize; | |
| 964 |
2/2✓ Branch 0 taken 137852 times.
✓ Branch 1 taken 26548 times.
|
164400 | if (nbook == -1) |
| 965 | 137852 | continue; | |
| 966 | |||
| 967 |
2/4✓ Branch 0 taken 26548 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 26548 times.
|
26548 | assert(rc->type == 0 || rc->type == 2); |
| 968 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 26548 times.
|
26548 | assert(!(psize % book->ndimensions)); |
| 969 | |||
| 970 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 26548 times.
|
26548 | if (rc->type == 0) { |
| 971 | ✗ | for (k = 0; k < psize; k += book->ndimensions) { | |
| 972 | int l; | ||
| 973 | ✗ | float *a = put_vector(book, pb, &buf[k]); | |
| 974 | ✗ | if (!a) | |
| 975 | ✗ | return AVERROR(EINVAL); | |
| 976 | ✗ | for (l = 0; l < book->ndimensions; l++) | |
| 977 | ✗ | buf[k + l] -= a[l]; | |
| 978 | } | ||
| 979 | } else { | ||
| 980 | 26548 | int s = rc->begin + p * psize, a1, b1; | |
| 981 | 26548 | a1 = (s % real_ch) * samples; | |
| 982 | 26548 | b1 = s / real_ch; | |
| 983 | 26548 | s = real_ch * samples; | |
| 984 |
2/2✓ Branch 0 taken 365608 times.
✓ Branch 1 taken 26548 times.
|
392156 | for (k = 0; k < psize; k += book->ndimensions) { |
| 985 | 365608 | int dim, a2 = a1, b2 = b1; | |
| 986 | 365608 | float vec[MAX_CODEBOOK_DIM], *pv = vec; | |
| 987 |
2/2✓ Branch 0 taken 849536 times.
✓ Branch 1 taken 365608 times.
|
1215144 | for (dim = book->ndimensions; dim--; ) { |
| 988 | 849536 | *pv++ = coeffs[a2 + b2]; | |
| 989 |
2/2✓ Branch 0 taken 424768 times.
✓ Branch 1 taken 424768 times.
|
849536 | if ((a2 += samples) == s) { |
| 990 | 424768 | a2 = 0; | |
| 991 | 424768 | b2++; | |
| 992 | } | ||
| 993 | } | ||
| 994 | 365608 | pv = put_vector(book, pb, vec); | |
| 995 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 365608 times.
|
365608 | if (!pv) |
| 996 | ✗ | return AVERROR(EINVAL); | |
| 997 |
2/2✓ Branch 0 taken 849536 times.
✓ Branch 1 taken 365608 times.
|
1215144 | for (dim = book->ndimensions; dim--; ) { |
| 998 | 849536 | coeffs[a1 + b1] -= *pv++; | |
| 999 |
2/2✓ Branch 0 taken 424768 times.
✓ Branch 1 taken 424768 times.
|
849536 | if ((a1 += samples) == s) { |
| 1000 | 424768 | a1 = 0; | |
| 1001 | 424768 | b1++; | |
| 1002 | } | ||
| 1003 | } | ||
| 1004 | } | ||
| 1005 | } | ||
| 1006 | } | ||
| 1007 | } | ||
| 1008 | } | ||
| 1009 | } | ||
| 1010 | 411 | return 0; | |
| 1011 | } | ||
| 1012 | |||
| 1013 | 411 | static int apply_window_and_mdct(vorbis_enc_context *venc) | |
| 1014 | { | ||
| 1015 | int channel; | ||
| 1016 | 411 | const float * win = venc->win[1]; | |
| 1017 | 411 | int window_len = 1 << (venc->log2_blocksize[1] - 1); | |
| 1018 | 411 | float n = (float)(1 << venc->log2_blocksize[1]) / 4.0; | |
| 1019 | 411 | AVFloatDSPContext *fdsp = venc->fdsp; | |
| 1020 | |||
| 1021 |
2/2✓ Branch 0 taken 822 times.
✓ Branch 1 taken 411 times.
|
1233 | for (channel = 0; channel < venc->channels; channel++) { |
| 1022 | 822 | float *offset = venc->samples + channel * window_len * 2; | |
| 1023 | |||
| 1024 | 822 | fdsp->vector_fmul(offset, offset, win, window_len); | |
| 1025 | 822 | fdsp->vector_fmul_scalar(offset, offset, 1/n, window_len); | |
| 1026 | |||
| 1027 | 822 | offset += window_len; | |
| 1028 | |||
| 1029 | 822 | fdsp->vector_fmul_reverse(offset, offset, win, window_len); | |
| 1030 | 822 | fdsp->vector_fmul_scalar(offset, offset, 1/n, window_len); | |
| 1031 | |||
| 1032 | 822 | venc->mdct_fn[1](venc->mdct[1], venc->coeffs + channel * window_len, | |
| 1033 | 822 | venc->samples + channel * window_len * 2, sizeof(float)); | |
| 1034 | } | ||
| 1035 | 411 | return 1; | |
| 1036 | } | ||
| 1037 | |||
| 1038 | /* Used for padding the last encoded packet */ | ||
| 1039 | 29 | static AVFrame *spawn_empty_frame(AVCodecContext *avctx, int channels) | |
| 1040 | { | ||
| 1041 | 29 | AVFrame *f = av_frame_alloc(); | |
| 1042 | int ch; | ||
| 1043 | |||
| 1044 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 29 times.
|
29 | if (!f) |
| 1045 | ✗ | return NULL; | |
| 1046 | |||
| 1047 | 29 | f->format = avctx->sample_fmt; | |
| 1048 | 29 | f->nb_samples = avctx->frame_size; | |
| 1049 | 29 | f->ch_layout.order = AV_CHANNEL_ORDER_UNSPEC; | |
| 1050 | 29 | f->ch_layout.nb_channels = channels; | |
| 1051 | |||
| 1052 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 29 times.
|
29 | if (av_frame_get_buffer(f, 4)) { |
| 1053 | ✗ | av_frame_free(&f); | |
| 1054 | ✗ | return NULL; | |
| 1055 | } | ||
| 1056 | |||
| 1057 |
2/2✓ Branch 0 taken 58 times.
✓ Branch 1 taken 29 times.
|
87 | for (ch = 0; ch < channels; ch++) { |
| 1058 | 58 | size_t bps = av_get_bytes_per_sample(f->format); | |
| 1059 | 58 | memset(f->extended_data[ch], 0, bps * f->nb_samples); | |
| 1060 | } | ||
| 1061 | 29 | return f; | |
| 1062 | } | ||
| 1063 | |||
| 1064 | /* Set up audio samples for psy analysis and window/mdct */ | ||
| 1065 | 411 | static void move_audio(vorbis_enc_context *venc, int sf_size) | |
| 1066 | { | ||
| 1067 | 411 | AVFrame *cur = NULL; | |
| 1068 | 411 | int frame_size = 1 << (venc->log2_blocksize[1] - 1); | |
| 1069 | 411 | int subframes = frame_size / sf_size; | |
| 1070 | int sf, ch; | ||
| 1071 | |||
| 1072 | /* Copy samples from last frame into current frame */ | ||
| 1073 |
2/2✓ Branch 0 taken 410 times.
✓ Branch 1 taken 1 times.
|
411 | if (venc->have_saved) |
| 1074 |
2/2✓ Branch 0 taken 820 times.
✓ Branch 1 taken 410 times.
|
1230 | for (ch = 0; ch < venc->channels; ch++) |
| 1075 | 820 | memcpy(venc->samples + 2 * ch * frame_size, | |
| 1076 | 820 | venc->saved + ch * frame_size, sizeof(float) * frame_size); | |
| 1077 | else | ||
| 1078 |
2/2✓ Branch 0 taken 2 times.
✓ Branch 1 taken 1 times.
|
3 | for (ch = 0; ch < venc->channels; ch++) |
| 1079 | 2 | memset(venc->samples + 2 * ch * frame_size, 0, sizeof(float) * frame_size); | |
| 1080 | |||
| 1081 |
2/2✓ Branch 0 taken 6576 times.
✓ Branch 1 taken 411 times.
|
6987 | for (sf = 0; sf < subframes; sf++) { |
| 1082 | 6576 | cur = ff_bufqueue_get(&venc->bufqueue); | |
| 1083 | |||
| 1084 |
2/2✓ Branch 0 taken 13152 times.
✓ Branch 1 taken 6576 times.
|
19728 | for (ch = 0; ch < venc->channels; ch++) { |
| 1085 | 13152 | float *offset = venc->samples + 2 * ch * frame_size + frame_size; | |
| 1086 | 13152 | float *save = venc->saved + ch * frame_size; | |
| 1087 | 13152 | const float *input = (float *) cur->extended_data[ch]; | |
| 1088 | 13152 | const size_t len = cur->nb_samples * sizeof(float); | |
| 1089 | |||
| 1090 | 13152 | memcpy(offset + sf*sf_size, input, len); | |
| 1091 | 13152 | memcpy(save + sf*sf_size, input, len); // Move samples for next frame | |
| 1092 | } | ||
| 1093 | 6576 | av_frame_free(&cur); | |
| 1094 | } | ||
| 1095 | 411 | venc->have_saved = 1; | |
| 1096 | 411 | memcpy(venc->scratch, venc->samples, 2 * venc->channels * frame_size); | |
| 1097 | 411 | } | |
| 1098 | |||
| 1099 | 6550 | static int vorbis_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, | |
| 1100 | const AVFrame *frame, int *got_packet_ptr) | ||
| 1101 | { | ||
| 1102 | 6550 | vorbis_enc_context *venc = avctx->priv_data; | |
| 1103 | int i, ret, need_more; | ||
| 1104 | 6550 | int frame_size = 1 << (venc->log2_blocksize[1] - 1); | |
| 1105 | vorbis_enc_mode *mode; | ||
| 1106 | vorbis_enc_mapping *mapping; | ||
| 1107 | PutBitContext pb; | ||
| 1108 | |||
| 1109 |
2/2✓ Branch 0 taken 6547 times.
✓ Branch 1 taken 3 times.
|
6550 | if (frame) { |
| 1110 | AVFrame *clone; | ||
| 1111 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 6547 times.
|
6547 | if ((ret = ff_af_queue_add(&venc->afq, frame)) < 0) |
| 1112 | ✗ | return ret; | |
| 1113 | 6547 | clone = av_frame_clone(frame); | |
| 1114 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 6547 times.
|
6547 | if (!clone) |
| 1115 | ✗ | return AVERROR(ENOMEM); | |
| 1116 | 6547 | ff_bufqueue_add(avctx, &venc->bufqueue, clone); | |
| 1117 | } else | ||
| 1118 |
2/2✓ Branch 0 taken 1 times.
✓ Branch 1 taken 2 times.
|
3 | if (!venc->afq.remaining_samples) |
| 1119 | 1 | return 0; | |
| 1120 | |||
| 1121 | 6549 | need_more = venc->bufqueue.available * avctx->frame_size < frame_size; | |
| 1122 |
4/4✓ Branch 0 taken 6547 times.
✓ Branch 1 taken 2 times.
✓ Branch 2 taken 6138 times.
✓ Branch 3 taken 409 times.
|
6549 | need_more = frame && need_more; |
| 1123 |
2/2✓ Branch 0 taken 6138 times.
✓ Branch 1 taken 411 times.
|
6549 | if (need_more) |
| 1124 | 6138 | return 0; | |
| 1125 | |||
| 1126 | /* Pad the bufqueue with empty frames for encoding the last packet. */ | ||
| 1127 |
2/2✓ Branch 0 taken 2 times.
✓ Branch 1 taken 409 times.
|
411 | if (!frame) { |
| 1128 |
1/2✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
|
2 | if (venc->bufqueue.available * avctx->frame_size < frame_size) { |
| 1129 | 2 | int frames_needed = (frame_size/avctx->frame_size) - venc->bufqueue.available; | |
| 1130 | int i; | ||
| 1131 | |||
| 1132 |
2/2✓ Branch 0 taken 29 times.
✓ Branch 1 taken 2 times.
|
31 | for (i = 0; i < frames_needed; i++) { |
| 1133 | 29 | AVFrame *empty = spawn_empty_frame(avctx, venc->channels); | |
| 1134 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 29 times.
|
29 | if (!empty) |
| 1135 | ✗ | return AVERROR(ENOMEM); | |
| 1136 | |||
| 1137 | 29 | ff_bufqueue_add(avctx, &venc->bufqueue, empty); | |
| 1138 | } | ||
| 1139 | } | ||
| 1140 | } | ||
| 1141 | |||
| 1142 | 411 | move_audio(venc, avctx->frame_size); | |
| 1143 | |||
| 1144 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 411 times.
|
411 | if (!apply_window_and_mdct(venc)) |
| 1145 | ✗ | return 0; | |
| 1146 | |||
| 1147 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 411 times.
|
411 | if ((ret = ff_alloc_packet(avctx, avpkt, 8192)) < 0) |
| 1148 | ✗ | return ret; | |
| 1149 | |||
| 1150 | 411 | init_put_bits(&pb, avpkt->data, avpkt->size); | |
| 1151 | |||
| 1152 | 411 | put_bits(&pb, 1, 0); // magic bit | |
| 1153 | |||
| 1154 | 411 | put_bits(&pb, ilog(venc->nmodes - 1), 1); // Mode for current frame | |
| 1155 | |||
| 1156 | 411 | mode = &venc->modes[1]; | |
| 1157 | 411 | mapping = &venc->mappings[mode->mapping]; | |
| 1158 |
1/2✓ Branch 0 taken 411 times.
✗ Branch 1 not taken.
|
411 | if (mode->blockflag) { |
| 1159 | 411 | put_bits(&pb, 1, 1); // Previous windowflag | |
| 1160 | 411 | put_bits(&pb, 1, 1); // Next windowflag | |
| 1161 | } | ||
| 1162 | |||
| 1163 |
2/2✓ Branch 0 taken 822 times.
✓ Branch 1 taken 411 times.
|
1233 | for (i = 0; i < venc->channels; i++) { |
| 1164 | 822 | vorbis_enc_floor *fc = &venc->floors[mapping->floor[mapping->mux[i]]]; | |
| 1165 | uint16_t posts[MAX_FLOOR_VALUES]; | ||
| 1166 | 822 | floor_fit(venc, fc, &venc->coeffs[i * frame_size], posts, frame_size); | |
| 1167 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 822 times.
|
822 | if (floor_encode(venc, fc, &pb, posts, &venc->floor[i * frame_size], frame_size)) { |
| 1168 | ✗ | av_log(avctx, AV_LOG_ERROR, "output buffer is too small\n"); | |
| 1169 | ✗ | return AVERROR(EINVAL); | |
| 1170 | } | ||
| 1171 | } | ||
| 1172 | |||
| 1173 |
2/2✓ Branch 0 taken 841728 times.
✓ Branch 1 taken 411 times.
|
842139 | for (i = 0; i < venc->channels * frame_size; i++) |
| 1174 | 841728 | venc->coeffs[i] /= venc->floor[i]; | |
| 1175 | |||
| 1176 |
2/2✓ Branch 0 taken 411 times.
✓ Branch 1 taken 411 times.
|
822 | for (i = 0; i < mapping->coupling_steps; i++) { |
| 1177 | 411 | float *mag = venc->coeffs + mapping->magnitude[i] * frame_size; | |
| 1178 | 411 | float *ang = venc->coeffs + mapping->angle[i] * frame_size; | |
| 1179 | int j; | ||
| 1180 |
2/2✓ Branch 0 taken 420864 times.
✓ Branch 1 taken 411 times.
|
421275 | for (j = 0; j < frame_size; j++) { |
| 1181 | 420864 | float a = ang[j]; | |
| 1182 | 420864 | ang[j] -= mag[j]; | |
| 1183 |
2/2✓ Branch 0 taken 210263 times.
✓ Branch 1 taken 210601 times.
|
420864 | if (mag[j] > 0) |
| 1184 | 210263 | ang[j] = -ang[j]; | |
| 1185 |
2/2✓ Branch 0 taken 166489 times.
✓ Branch 1 taken 254375 times.
|
420864 | if (ang[j] < 0) |
| 1186 | 166489 | mag[j] = a; | |
| 1187 | } | ||
| 1188 | } | ||
| 1189 | |||
| 1190 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 411 times.
|
411 | if (residue_encode(venc, &venc->residues[mapping->residue[mapping->mux[0]]], |
| 1191 | &pb, venc->coeffs, frame_size, venc->channels)) { | ||
| 1192 | ✗ | av_log(avctx, AV_LOG_ERROR, "output buffer is too small\n"); | |
| 1193 | ✗ | return AVERROR(EINVAL); | |
| 1194 | } | ||
| 1195 | |||
| 1196 | 411 | flush_put_bits(&pb); | |
| 1197 | 411 | avpkt->size = put_bytes_output(&pb); | |
| 1198 | |||
| 1199 | 411 | ff_af_queue_remove(&venc->afq, frame_size, &avpkt->pts, &avpkt->duration); | |
| 1200 | |||
| 1201 |
2/2✓ Branch 0 taken 1 times.
✓ Branch 1 taken 410 times.
|
411 | if (frame_size > avpkt->duration) { |
| 1202 | 1 | uint8_t *side = av_packet_new_side_data(avpkt, AV_PKT_DATA_SKIP_SAMPLES, 10); | |
| 1203 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | if (!side) |
| 1204 | ✗ | return AVERROR(ENOMEM); | |
| 1205 | 1 | AV_WL32(&side[4], frame_size - avpkt->duration); | |
| 1206 | } | ||
| 1207 | |||
| 1208 | 411 | *got_packet_ptr = 1; | |
| 1209 | 411 | return 0; | |
| 1210 | } | ||
| 1211 | |||
| 1212 | |||
| 1213 | 1 | static av_cold int vorbis_encode_close(AVCodecContext *avctx) | |
| 1214 | { | ||
| 1215 | 1 | vorbis_enc_context *venc = avctx->priv_data; | |
| 1216 | int i; | ||
| 1217 | |||
| 1218 |
1/2✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
|
1 | if (venc->codebooks) |
| 1219 |
2/2✓ Branch 0 taken 29 times.
✓ Branch 1 taken 1 times.
|
30 | for (i = 0; i < venc->ncodebooks; i++) { |
| 1220 | 29 | av_freep(&venc->codebooks[i].lens); | |
| 1221 | 29 | av_freep(&venc->codebooks[i].codewords); | |
| 1222 | 29 | av_freep(&venc->codebooks[i].quantlist); | |
| 1223 | 29 | av_freep(&venc->codebooks[i].dimensions); | |
| 1224 | 29 | av_freep(&venc->codebooks[i].pow2); | |
| 1225 | } | ||
| 1226 | 1 | av_freep(&venc->codebooks); | |
| 1227 | |||
| 1228 |
1/2✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
|
1 | if (venc->floors) |
| 1229 |
2/2✓ Branch 0 taken 1 times.
✓ Branch 1 taken 1 times.
|
2 | for (i = 0; i < venc->nfloors; i++) { |
| 1230 | int j; | ||
| 1231 |
1/2✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
|
1 | if (venc->floors[i].classes) |
| 1232 |
2/2✓ Branch 0 taken 5 times.
✓ Branch 1 taken 1 times.
|
6 | for (j = 0; j < venc->floors[i].nclasses; j++) |
| 1233 | 5 | av_freep(&venc->floors[i].classes[j].books); | |
| 1234 | 1 | av_freep(&venc->floors[i].classes); | |
| 1235 | 1 | av_freep(&venc->floors[i].partition_to_class); | |
| 1236 | 1 | av_freep(&venc->floors[i].list); | |
| 1237 | } | ||
| 1238 | 1 | av_freep(&venc->floors); | |
| 1239 | |||
| 1240 |
1/2✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
|
1 | if (venc->residues) |
| 1241 |
2/2✓ Branch 0 taken 1 times.
✓ Branch 1 taken 1 times.
|
2 | for (i = 0; i < venc->nresidues; i++) { |
| 1242 | 1 | av_freep(&venc->residues[i].books); | |
| 1243 | 1 | av_freep(&venc->residues[i].maxes); | |
| 1244 | } | ||
| 1245 | 1 | av_freep(&venc->residues); | |
| 1246 | |||
| 1247 |
1/2✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
|
1 | if (venc->mappings) |
| 1248 |
2/2✓ Branch 0 taken 1 times.
✓ Branch 1 taken 1 times.
|
2 | for (i = 0; i < venc->nmappings; i++) { |
| 1249 | 1 | av_freep(&venc->mappings[i].mux); | |
| 1250 | 1 | av_freep(&venc->mappings[i].floor); | |
| 1251 | 1 | av_freep(&venc->mappings[i].residue); | |
| 1252 | 1 | av_freep(&venc->mappings[i].magnitude); | |
| 1253 | 1 | av_freep(&venc->mappings[i].angle); | |
| 1254 | } | ||
| 1255 | 1 | av_freep(&venc->mappings); | |
| 1256 | |||
| 1257 | 1 | av_freep(&venc->modes); | |
| 1258 | |||
| 1259 | 1 | av_freep(&venc->saved); | |
| 1260 | 1 | av_freep(&venc->samples); | |
| 1261 | 1 | av_freep(&venc->floor); | |
| 1262 | 1 | av_freep(&venc->coeffs); | |
| 1263 | 1 | av_freep(&venc->scratch); | |
| 1264 | 1 | av_freep(&venc->fdsp); | |
| 1265 | |||
| 1266 | 1 | av_tx_uninit(&venc->mdct[0]); | |
| 1267 | 1 | av_tx_uninit(&venc->mdct[1]); | |
| 1268 | 1 | ff_af_queue_close(&venc->afq); | |
| 1269 | 1 | ff_bufqueue_discard_all(&venc->bufqueue); | |
| 1270 | |||
| 1271 | 1 | return 0 ; | |
| 1272 | } | ||
| 1273 | |||
| 1274 | 1 | static av_cold int vorbis_encode_init(AVCodecContext *avctx) | |
| 1275 | { | ||
| 1276 | 1 | vorbis_enc_context *venc = avctx->priv_data; | |
| 1277 | int ret; | ||
| 1278 | |||
| 1279 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | if (avctx->ch_layout.nb_channels != 2) { |
| 1280 | ✗ | av_log(avctx, AV_LOG_ERROR, "Current FFmpeg Vorbis encoder only supports 2 channels.\n"); | |
| 1281 | ✗ | return -1; | |
| 1282 | } | ||
| 1283 | |||
| 1284 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 1 times.
|
1 | if ((ret = create_vorbis_context(venc, avctx)) < 0) |
| 1285 | ✗ | return ret; | |
| 1286 | |||
| 1287 | 1 | avctx->bit_rate = 0; | |
| 1288 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
|
1 | if (avctx->flags & AV_CODEC_FLAG_QSCALE) |
| 1289 | ✗ | venc->quality = avctx->global_quality / (float)FF_QP2LAMBDA; | |
| 1290 | else | ||
| 1291 | 1 | venc->quality = 8; | |
| 1292 | 1 | venc->quality *= venc->quality; | |
| 1293 | |||
| 1294 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 1 times.
|
1 | if ((ret = put_main_header(venc, (uint8_t**)&avctx->extradata)) < 0) |
| 1295 | ✗ | return ret; | |
| 1296 | 1 | avctx->extradata_size = ret; | |
| 1297 | |||
| 1298 | 1 | avctx->frame_size = 64; | |
| 1299 | 1 | avctx->initial_padding = 1 << (venc->log2_blocksize[1] - 1); | |
| 1300 | |||
| 1301 | 1 | ff_af_queue_init(avctx, &venc->afq); | |
| 1302 | |||
| 1303 | 1 | return 0; | |
| 1304 | } | ||
| 1305 | |||
| 1306 | const FFCodec ff_vorbis_encoder = { | ||
| 1307 | .p.name = "vorbis", | ||
| 1308 | CODEC_LONG_NAME("Vorbis"), | ||
| 1309 | .p.type = AVMEDIA_TYPE_AUDIO, | ||
| 1310 | .p.id = AV_CODEC_ID_VORBIS, | ||
| 1311 | .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_DELAY | | ||
| 1312 | AV_CODEC_CAP_EXPERIMENTAL, | ||
| 1313 | .priv_data_size = sizeof(vorbis_enc_context), | ||
| 1314 | .init = vorbis_encode_init, | ||
| 1315 | FF_CODEC_ENCODE_CB(vorbis_encode_frame), | ||
| 1316 | .close = vorbis_encode_close, | ||
| 1317 | CODEC_SAMPLEFMTS(AV_SAMPLE_FMT_FLTP), | ||
| 1318 | .caps_internal = FF_CODEC_CAP_INIT_CLEANUP, | ||
| 1319 | }; | ||
| 1320 |