| 
									
										
										
										
											2006-10-02 05:54:55 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * copyright (c) 2006 Oded Shimon <ods15@ods15.dyndns.org> | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * This file is part of FFmpeg. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * FFmpeg is free software; you can redistribute it and/or | 
					
						
							| 
									
										
										
										
											2006-10-02 05:54:55 +00:00
										 |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2006-10-02 05:54:55 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * FFmpeg is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2006-10-02 05:54:55 +00:00
										 |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Lesser General Public | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * License along with FFmpeg; if not, write to the Free Software | 
					
						
							| 
									
										
										
										
											2007-07-05 10:40:25 +00:00
										 |  |  |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 
					
						
							| 
									
										
										
										
											2006-10-02 05:54:55 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-04-20 14:45:34 +00:00
										 |  |  |  * @file | 
					
						
							| 
									
										
										
										
											2006-10-02 05:54:55 +00:00
										 |  |  |  * Native Vorbis encoder. | 
					
						
							|  |  |  |  * @author Oded Shimon <ods15@ods15.dyndns.org> | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:41 +00:00
										 |  |  | #include <float.h>
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:54:55 +00:00
										 |  |  | #include "avcodec.h"
 | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:02 +00:00
										 |  |  | #include "dsputil.h"
 | 
					
						
							| 
									
										
										
										
											2010-03-06 14:34:46 +00:00
										 |  |  | #include "fft.h"
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:23 +00:00
										 |  |  | #include "vorbis.h"
 | 
					
						
							| 
									
										
										
										
											2006-10-02 06:56:39 +00:00
										 |  |  | #include "vorbis_enc_data.h"
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-15 08:01:54 +00:00
										 |  |  | #define BITSTREAM_WRITER_LE
 | 
					
						
							| 
									
										
										
										
											2009-04-12 08:35:26 +00:00
										 |  |  | #include "put_bits.h"
 | 
					
						
							| 
									
										
										
										
											2008-10-15 08:01:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:54:55 +00:00
										 |  |  | #undef NDEBUG
 | 
					
						
							|  |  |  | #include <assert.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:16 +00:00
										 |  |  | typedef struct { | 
					
						
							|  |  |  |     int nentries; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     uint8_t *lens; | 
					
						
							|  |  |  |     uint32_t *codewords; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:16 +00:00
										 |  |  |     int ndimentions; | 
					
						
							|  |  |  |     float min; | 
					
						
							|  |  |  |     float delta; | 
					
						
							|  |  |  |     int seq_p; | 
					
						
							|  |  |  |     int lookup; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     int *quantlist; | 
					
						
							|  |  |  |     float *dimentions; | 
					
						
							|  |  |  |     float *pow2; | 
					
						
							| 
									
										
										
										
											2008-12-12 05:12:51 +00:00
										 |  |  | } vorbis_enc_codebook; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:22 +00:00
										 |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:24 +00:00
										 |  |  |     int dim; | 
					
						
							|  |  |  |     int subclass; | 
					
						
							|  |  |  |     int masterbook; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     int *books; | 
					
						
							| 
									
										
										
										
											2008-12-12 05:12:51 +00:00
										 |  |  | } vorbis_enc_floor_class; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							|  |  |  |     int partitions; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     int *partition_to_class; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:24 +00:00
										 |  |  |     int nclasses; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     vorbis_enc_floor_class *classes; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:24 +00:00
										 |  |  |     int multiplier; | 
					
						
							|  |  |  |     int rangebits; | 
					
						
							|  |  |  |     int values; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     vorbis_floor1_entry *list; | 
					
						
							| 
									
										
										
										
											2008-12-12 05:12:51 +00:00
										 |  |  | } vorbis_enc_floor; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:26 +00:00
										 |  |  |     int type; | 
					
						
							|  |  |  |     int begin; | 
					
						
							|  |  |  |     int end; | 
					
						
							|  |  |  |     int partition_size; | 
					
						
							|  |  |  |     int classifications; | 
					
						
							|  |  |  |     int classbook; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:12 +00:00
										 |  |  |     int8_t (*books)[8]; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:36 +00:00
										 |  |  |     float (*maxes)[2]; | 
					
						
							| 
									
										
										
										
											2008-12-12 05:12:51 +00:00
										 |  |  | } vorbis_enc_residue; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:28 +00:00
										 |  |  |     int submaps; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     int *mux; | 
					
						
							|  |  |  |     int *floor; | 
					
						
							|  |  |  |     int *residue; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:09 +00:00
										 |  |  |     int coupling_steps; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     int *magnitude; | 
					
						
							|  |  |  |     int *angle; | 
					
						
							| 
									
										
										
										
											2008-12-12 05:12:51 +00:00
										 |  |  | } vorbis_enc_mapping; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:30 +00:00
										 |  |  | typedef struct { | 
					
						
							|  |  |  |     int blockflag; | 
					
						
							|  |  |  |     int mapping; | 
					
						
							| 
									
										
										
										
											2008-12-12 05:12:51 +00:00
										 |  |  | } vorbis_enc_mode; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:16 +00:00
										 |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:18 +00:00
										 |  |  |     int channels; | 
					
						
							|  |  |  |     int sample_rate; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:52 +00:00
										 |  |  |     int log2_blocksize[2]; | 
					
						
							| 
									
										
										
										
											2009-09-20 17:30:20 +00:00
										 |  |  |     FFTContext mdct[2]; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     const float *win[2]; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:25 +00:00
										 |  |  |     int have_saved; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     float *saved; | 
					
						
							|  |  |  |     float *samples; | 
					
						
							|  |  |  |     float *floor;  // also used for tmp values for mdct
 | 
					
						
							|  |  |  |     float *coeffs; // also used for residue after floor
 | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:59 +00:00
										 |  |  |     float quality; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:16 +00:00
										 |  |  |     int ncodebooks; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     vorbis_enc_codebook *codebooks; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     int nfloors; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     vorbis_enc_floor *floors; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     int nresidues; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     vorbis_enc_residue *residues; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     int nmappings; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     vorbis_enc_mapping *mappings; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     int nmodes; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     vorbis_enc_mode *modes; | 
					
						
							| 
									
										
										
										
											2008-09-09 14:42:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     int64_t sample_count; | 
					
						
							| 
									
										
										
										
											2008-12-12 05:12:51 +00:00
										 |  |  | } vorbis_enc_context; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:54:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-24 20:42:08 +00:00
										 |  |  | #define MAX_CHANNELS     2
 | 
					
						
							|  |  |  | #define MAX_CODEBOOK_DIM 8
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MAX_FLOOR_CLASS_DIM  4
 | 
					
						
							|  |  |  | #define NUM_FLOOR_PARTITIONS 8
 | 
					
						
							|  |  |  | #define MAX_FLOOR_VALUES     (MAX_FLOOR_CLASS_DIM*NUM_FLOOR_PARTITIONS+2)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define RESIDUE_SIZE           1600
 | 
					
						
							|  |  |  | #define RESIDUE_PART_SIZE      32
 | 
					
						
							|  |  |  | #define NUM_RESIDUE_PARTITIONS (RESIDUE_SIZE/RESIDUE_PART_SIZE)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  | static inline void put_codeword(PutBitContext *pb, vorbis_enc_codebook *cb, | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |                                 int entry) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:18 +00:00
										 |  |  |     assert(entry >= 0); | 
					
						
							|  |  |  |     assert(entry < cb->nentries); | 
					
						
							|  |  |  |     assert(cb->lens[entry]); | 
					
						
							|  |  |  |     put_bits(pb, cb->lens[entry], cb->codewords[entry]); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  | static int cb_lookup_vals(int lookup, int dimentions, int entries) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (lookup == 1) | 
					
						
							|  |  |  |         return ff_vorbis_nth_root(entries, dimentions); | 
					
						
							|  |  |  |     else if (lookup == 2) | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |         return dimentions *entries; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:33 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  | static void ready_codebook(vorbis_enc_codebook *cb) | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:33 +00:00
										 |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:18 +00:00
										 |  |  |     ff_vorbis_len2vlc(cb->lens, cb->codewords, cb->nentries); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     if (!cb->lookup) { | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |         cb->pow2 = cb->dimentions = NULL; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:33 +00:00
										 |  |  |         int vals = cb_lookup_vals(cb->lookup, cb->ndimentions, cb->nentries); | 
					
						
							|  |  |  |         cb->dimentions = av_malloc(sizeof(float) * cb->nentries * cb->ndimentions); | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:41 +00:00
										 |  |  |         cb->pow2 = av_mallocz(sizeof(float) * cb->nentries); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:33 +00:00
										 |  |  |         for (i = 0; i < cb->nentries; i++) { | 
					
						
							|  |  |  |             float last = 0; | 
					
						
							|  |  |  |             int j; | 
					
						
							|  |  |  |             int div = 1; | 
					
						
							|  |  |  |             for (j = 0; j < cb->ndimentions; j++) { | 
					
						
							|  |  |  |                 int off; | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |                 if (cb->lookup == 1) | 
					
						
							|  |  |  |                     off = (i / div) % vals; // lookup type 1
 | 
					
						
							|  |  |  |                 else | 
					
						
							|  |  |  |                     off = i * cb->ndimentions + j; // lookup type 2
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 cb->dimentions[i * cb->ndimentions + j] = last + cb->min + cb->quantlist[off] * cb->delta; | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |                 if (cb->seq_p) | 
					
						
							|  |  |  |                     last = cb->dimentions[i * cb->ndimentions + j]; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |                 cb->pow2[i] += cb->dimentions[i * cb->ndimentions + j] * cb->dimentions[i * cb->ndimentions + j]; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:33 +00:00
										 |  |  |                 div *= vals; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:41 +00:00
										 |  |  |             cb->pow2[i] /= 2.; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:33 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  | static void ready_residue(vorbis_enc_residue *rc, vorbis_enc_context *venc) | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:36 +00:00
										 |  |  |     int i; | 
					
						
							|  |  |  |     assert(rc->type == 2); | 
					
						
							|  |  |  |     rc->maxes = av_mallocz(sizeof(float[2]) * rc->classifications); | 
					
						
							|  |  |  |     for (i = 0; i < rc->classifications; i++) { | 
					
						
							|  |  |  |         int j; | 
					
						
							| 
									
										
										
										
											2008-12-12 05:12:51 +00:00
										 |  |  |         vorbis_enc_codebook * cb; | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |         for (j = 0; j < 8; j++) | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |             if (rc->books[i][j] != -1) | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |         if (j == 8) // zero
 | 
					
						
							|  |  |  |             continue; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:36 +00:00
										 |  |  |         cb = &venc->codebooks[rc->books[i][j]]; | 
					
						
							|  |  |  |         assert(cb->ndimentions >= 2); | 
					
						
							|  |  |  |         assert(cb->lookup); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for (j = 0; j < cb->nentries; j++) { | 
					
						
							|  |  |  |             float a; | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |             if (!cb->lens[j]) | 
					
						
							|  |  |  |                 continue; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:36 +00:00
										 |  |  |             a = fabs(cb->dimentions[j * cb->ndimentions]); | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |             if (a > rc->maxes[i][0]) | 
					
						
							|  |  |  |                 rc->maxes[i][0] = a; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:36 +00:00
										 |  |  |             a = fabs(cb->dimentions[j * cb->ndimentions + 1]); | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |             if (a > rc->maxes[i][1]) | 
					
						
							|  |  |  |                 rc->maxes[i][1] = a; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:36 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     // small bias
 | 
					
						
							|  |  |  |     for (i = 0; i < rc->classifications; i++) { | 
					
						
							|  |  |  |         rc->maxes[i][0] += 0.8; | 
					
						
							|  |  |  |         rc->maxes[i][1] += 0.8; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  | static void create_vorbis_context(vorbis_enc_context *venc, | 
					
						
							|  |  |  |                                   AVCodecContext *avccontext) | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     vorbis_enc_floor   *fc; | 
					
						
							|  |  |  |     vorbis_enc_residue *rc; | 
					
						
							|  |  |  |     vorbis_enc_mapping *mc; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:37 +00:00
										 |  |  |     int i, book; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     venc->channels    = avccontext->channels; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:04 +00:00
										 |  |  |     venc->sample_rate = avccontext->sample_rate; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:52 +00:00
										 |  |  |     venc->log2_blocksize[0] = venc->log2_blocksize[1] = 11; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-21 21:40:24 +00:00
										 |  |  |     venc->ncodebooks = FF_ARRAY_ELEMS(cvectors); | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     venc->codebooks  = av_malloc(sizeof(vorbis_enc_codebook) * venc->ncodebooks); | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:28 +00:00
										 |  |  |     // codebook 0..14 - floor1 book, values 0..255
 | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:33 +00:00
										 |  |  |     // codebook 15 residue masterbook
 | 
					
						
							|  |  |  |     // codebook 16..29 residue
 | 
					
						
							|  |  |  |     for (book = 0; book < venc->ncodebooks; book++) { | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |         vorbis_enc_codebook *cb = &venc->codebooks[book]; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:14 +00:00
										 |  |  |         int vals; | 
					
						
							|  |  |  |         cb->ndimentions = cvectors[book].dim; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |         cb->nentries    = cvectors[book].real_len; | 
					
						
							|  |  |  |         cb->min         = cvectors[book].min; | 
					
						
							|  |  |  |         cb->delta       = cvectors[book].delta; | 
					
						
							|  |  |  |         cb->lookup      = cvectors[book].lookup; | 
					
						
							|  |  |  |         cb->seq_p       = 0; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |         cb->lens      = av_malloc(sizeof(uint8_t)  * cb->nentries); | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:18 +00:00
										 |  |  |         cb->codewords = av_malloc(sizeof(uint32_t) * cb->nentries); | 
					
						
							|  |  |  |         memcpy(cb->lens, cvectors[book].clens, cvectors[book].len); | 
					
						
							|  |  |  |         memset(cb->lens + cvectors[book].len, 0, cb->nentries - cvectors[book].len); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:14 +00:00
										 |  |  |         if (cb->lookup) { | 
					
						
							|  |  |  |             vals = cb_lookup_vals(cb->lookup, cb->ndimentions, cb->nentries); | 
					
						
							|  |  |  |             cb->quantlist = av_malloc(sizeof(int) * vals); | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |             for (i = 0; i < vals; i++) | 
					
						
							|  |  |  |                 cb->quantlist[i] = cvectors[book].quant[i]; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:14 +00:00
										 |  |  |         } else { | 
					
						
							|  |  |  |             cb->quantlist = NULL; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:37 +00:00
										 |  |  |         ready_codebook(cb); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:47 +00:00
										 |  |  |     venc->nfloors = 1; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     venc->floors  = av_malloc(sizeof(vorbis_enc_floor) * venc->nfloors); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:49 +00:00
										 |  |  |     // just 1 floor
 | 
					
						
							|  |  |  |     fc = &venc->floors[0]; | 
					
						
							| 
									
										
										
										
											2010-09-24 20:42:08 +00:00
										 |  |  |     fc->partitions         = NUM_FLOOR_PARTITIONS; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:47 +00:00
										 |  |  |     fc->partition_to_class = av_malloc(sizeof(int) * fc->partitions); | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     fc->nclasses           = 0; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:28 +00:00
										 |  |  |     for (i = 0; i < fc->partitions; i++) { | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |         static const int a[] = {0, 1, 2, 2, 3, 3, 4, 4}; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:28 +00:00
										 |  |  |         fc->partition_to_class[i] = a[i]; | 
					
						
							|  |  |  |         fc->nclasses = FFMAX(fc->nclasses, fc->partition_to_class[i]); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     fc->nclasses++; | 
					
						
							| 
									
										
										
										
											2008-12-12 05:12:51 +00:00
										 |  |  |     fc->classes = av_malloc(sizeof(vorbis_enc_floor_class) * fc->nclasses); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:47 +00:00
										 |  |  |     for (i = 0; i < fc->nclasses; i++) { | 
					
						
							| 
									
										
										
										
											2008-12-12 05:12:51 +00:00
										 |  |  |         vorbis_enc_floor_class * c = &fc->classes[i]; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:47 +00:00
										 |  |  |         int j, books; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |         c->dim        = floor_classes[i].dim; | 
					
						
							|  |  |  |         c->subclass   = floor_classes[i].subclass; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:49 +00:00
										 |  |  |         c->masterbook = floor_classes[i].masterbook; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |         books         = (1 << c->subclass); | 
					
						
							|  |  |  |         c->books      = av_malloc(sizeof(int) * books); | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |         for (j = 0; j < books; j++) | 
					
						
							|  |  |  |             c->books[j] = floor_classes[i].nbooks[j]; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:47 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:28 +00:00
										 |  |  |     fc->multiplier = 2; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     fc->rangebits  = venc->log2_blocksize[0] - 1; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:47 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     fc->values = 2; | 
					
						
							|  |  |  |     for (i = 0; i < fc->partitions; i++) | 
					
						
							|  |  |  |         fc->values += fc->classes[fc->partition_to_class[i]].dim; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-12 05:12:51 +00:00
										 |  |  |     fc->list = av_malloc(sizeof(vorbis_floor1_entry) * fc->values); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:47 +00:00
										 |  |  |     fc->list[0].x = 0; | 
					
						
							|  |  |  |     fc->list[1].x = 1 << fc->rangebits; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:46 +00:00
										 |  |  |     for (i = 2; i < fc->values; i++) { | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:20 +00:00
										 |  |  |         static const int a[] = { | 
					
						
							|  |  |  |              93, 23,372,  6, 46,186,750, 14, 33, 65, | 
					
						
							|  |  |  |             130,260,556,  3, 10, 18, 28, 39, 55, 79, | 
					
						
							|  |  |  |             111,158,220,312,464,650,850 | 
					
						
							|  |  |  |         }; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:59 +00:00
										 |  |  |         fc->list[i].x = a[i - 2]; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:46 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:22 +00:00
										 |  |  |     ff_vorbis_ready_floor1_list(fc->list, fc->values); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     venc->nresidues = 1; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     venc->residues  = av_malloc(sizeof(vorbis_enc_residue) * venc->nresidues); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:55 +00:00
										 |  |  |     // single residue
 | 
					
						
							|  |  |  |     rc = &venc->residues[0]; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     rc->type            = 2; | 
					
						
							|  |  |  |     rc->begin           = 0; | 
					
						
							|  |  |  |     rc->end             = 1600; | 
					
						
							|  |  |  |     rc->partition_size  = 32; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:33 +00:00
										 |  |  |     rc->classifications = 10; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     rc->classbook       = 15; | 
					
						
							|  |  |  |     rc->books           = av_malloc(sizeof(*rc->books) * rc->classifications); | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:12 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |         static const int8_t a[10][8] = { | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:33 +00:00
										 |  |  |             { -1, -1, -1, -1, -1, -1, -1, -1, }, | 
					
						
							|  |  |  |             { -1, -1, 16, -1, -1, -1, -1, -1, }, | 
					
						
							|  |  |  |             { -1, -1, 17, -1, -1, -1, -1, -1, }, | 
					
						
							|  |  |  |             { -1, -1, 18, -1, -1, -1, -1, -1, }, | 
					
						
							|  |  |  |             { -1, -1, 19, -1, -1, -1, -1, -1, }, | 
					
						
							|  |  |  |             { -1, -1, 20, -1, -1, -1, -1, -1, }, | 
					
						
							|  |  |  |             { -1, -1, 21, -1, -1, -1, -1, -1, }, | 
					
						
							|  |  |  |             { 22, 23, -1, -1, -1, -1, -1, -1, }, | 
					
						
							|  |  |  |             { 24, 25, -1, -1, -1, -1, -1, -1, }, | 
					
						
							|  |  |  |             { 26, 27, 28, -1, -1, -1, -1, -1, }, | 
					
						
							|  |  |  |         }; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:12 +00:00
										 |  |  |         memcpy(rc->books, a, sizeof a); | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:24 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:36 +00:00
										 |  |  |     ready_residue(rc, venc); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:52 +00:00
										 |  |  |     venc->nmappings = 1; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     venc->mappings  = av_malloc(sizeof(vorbis_enc_mapping) * venc->nmappings); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:57 +00:00
										 |  |  |     // single mapping
 | 
					
						
							|  |  |  |     mc = &venc->mappings[0]; | 
					
						
							|  |  |  |     mc->submaps = 1; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     mc->mux     = av_malloc(sizeof(int) * venc->channels); | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |     for (i = 0; i < venc->channels; i++) | 
					
						
							|  |  |  |         mc->mux[i] = 0; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     mc->floor   = av_malloc(sizeof(int) * mc->submaps); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:57 +00:00
										 |  |  |     mc->residue = av_malloc(sizeof(int) * mc->submaps); | 
					
						
							|  |  |  |     for (i = 0; i < mc->submaps; i++) { | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |         mc->floor[i]   = 0; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:57 +00:00
										 |  |  |         mc->residue[i] = 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:09 +00:00
										 |  |  |     mc->coupling_steps = venc->channels == 2 ? 1 : 0; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     mc->magnitude      = av_malloc(sizeof(int) * mc->coupling_steps); | 
					
						
							|  |  |  |     mc->angle          = av_malloc(sizeof(int) * mc->coupling_steps); | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:09 +00:00
										 |  |  |     if (mc->coupling_steps) { | 
					
						
							|  |  |  |         mc->magnitude[0] = 0; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |         mc->angle[0]     = 1; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:09 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:52 +00:00
										 |  |  |     venc->nmodes = 1; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     venc->modes  = av_malloc(sizeof(vorbis_enc_mode) * venc->nmodes); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // single mode
 | 
					
						
							|  |  |  |     venc->modes[0].blockflag = 0; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     venc->modes[0].mapping   = 0; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:25 +00:00
										 |  |  |     venc->have_saved = 0; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     venc->saved      = av_malloc(sizeof(float) * venc->channels * (1 << venc->log2_blocksize[1]) / 2); | 
					
						
							|  |  |  |     venc->samples    = av_malloc(sizeof(float) * venc->channels * (1 << venc->log2_blocksize[1])); | 
					
						
							|  |  |  |     venc->floor      = av_malloc(sizeof(float) * venc->channels * (1 << venc->log2_blocksize[1]) / 2); | 
					
						
							|  |  |  |     venc->coeffs     = av_malloc(sizeof(float) * venc->channels * (1 << venc->log2_blocksize[1]) / 2); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:52 +00:00
										 |  |  |     venc->win[0] = ff_vorbis_vwin[venc->log2_blocksize[0] - 6]; | 
					
						
							|  |  |  |     venc->win[1] = ff_vorbis_vwin[venc->log2_blocksize[1] - 6]; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-16 14:17:08 +00:00
										 |  |  |     ff_mdct_init(&venc->mdct[0], venc->log2_blocksize[0], 0, 1.0); | 
					
						
							|  |  |  |     ff_mdct_init(&venc->mdct[1], venc->log2_blocksize[1], 0, 1.0); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:33 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  | static void put_float(PutBitContext *pb, float f) | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:20 +00:00
										 |  |  |     int exp, mant; | 
					
						
							|  |  |  |     uint32_t res = 0; | 
					
						
							|  |  |  |     mant = (int)ldexp(frexp(f, &exp), 20); | 
					
						
							|  |  |  |     exp += 788 - 20; | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |     if (mant < 0) { | 
					
						
							| 
									
										
										
										
											2011-04-09 17:22:04 -07:00
										 |  |  |         res |= (1U << 31); | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |         mant = -mant; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:20 +00:00
										 |  |  |     res |= mant | (exp << 21); | 
					
						
							| 
									
										
										
										
											2009-10-01 15:40:29 +00:00
										 |  |  |     put_bits32(pb, res); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:18 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  | static void put_codebook_header(PutBitContext *pb, vorbis_enc_codebook *cb) | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:16 +00:00
										 |  |  |     int i; | 
					
						
							|  |  |  |     int ordered = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     put_bits(pb, 24, 0x564342); //magic
 | 
					
						
							|  |  |  |     put_bits(pb, 16, cb->ndimentions); | 
					
						
							|  |  |  |     put_bits(pb, 24, cb->nentries); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |     for (i = 1; i < cb->nentries; i++) | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |         if (cb->lens[i] < cb->lens[i-1]) | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |     if (i == cb->nentries) | 
					
						
							|  |  |  |         ordered = 1; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     put_bits(pb, 1, ordered); | 
					
						
							|  |  |  |     if (ordered) { | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:18 +00:00
										 |  |  |         int len = cb->lens[0]; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:28 +00:00
										 |  |  |         put_bits(pb, 5, len - 1); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:16 +00:00
										 |  |  |         i = 0; | 
					
						
							|  |  |  |         while (i < cb->nentries) { | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:18 +00:00
										 |  |  |             int j; | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |             for (j = 0; j+i < cb->nentries; j++) | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |                 if (cb->lens[j+i] != len) | 
					
						
							|  |  |  |                     break; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:43 +00:00
										 |  |  |             put_bits(pb, ilog(cb->nentries - i), j); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:16 +00:00
										 |  |  |             i += j; | 
					
						
							|  |  |  |             len++; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         int sparse = 0; | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |         for (i = 0; i < cb->nentries; i++) | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |             if (!cb->lens[i]) | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |         if (i != cb->nentries) | 
					
						
							|  |  |  |             sparse = 1; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:16 +00:00
										 |  |  |         put_bits(pb, 1, sparse); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for (i = 0; i < cb->nentries; i++) { | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |             if (sparse) | 
					
						
							|  |  |  |                 put_bits(pb, 1, !!cb->lens[i]); | 
					
						
							|  |  |  |             if (cb->lens[i]) | 
					
						
							|  |  |  |                 put_bits(pb, 5, cb->lens[i] - 1); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:16 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     put_bits(pb, 4, cb->lookup); | 
					
						
							|  |  |  |     if (cb->lookup) { | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |         int tmp  = cb_lookup_vals(cb->lookup, cb->ndimentions, cb->nentries); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:33 +00:00
										 |  |  |         int bits = ilog(cb->quantlist[0]); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |         for (i = 1; i < tmp; i++) | 
					
						
							|  |  |  |             bits = FFMAX(bits, ilog(cb->quantlist[i])); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:18 +00:00
										 |  |  |         put_float(pb, cb->min); | 
					
						
							|  |  |  |         put_float(pb, cb->delta); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:18 +00:00
										 |  |  |         put_bits(pb, 4, bits - 1); | 
					
						
							|  |  |  |         put_bits(pb, 1, cb->seq_p); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |         for (i = 0; i < tmp; i++) | 
					
						
							|  |  |  |             put_bits(pb, bits, cb->quantlist[i]); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:16 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  | static void put_floor_header(PutBitContext *pb, vorbis_enc_floor *fc) | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:24 +00:00
										 |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     put_bits(pb, 16, 1); // type, only floor1 is supported
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     put_bits(pb, 5, fc->partitions); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |     for (i = 0; i < fc->partitions; i++) | 
					
						
							|  |  |  |         put_bits(pb, 4, fc->partition_to_class[i]); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < fc->nclasses; i++) { | 
					
						
							|  |  |  |         int j, books; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         put_bits(pb, 3, fc->classes[i].dim - 1); | 
					
						
							|  |  |  |         put_bits(pb, 2, fc->classes[i].subclass); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |         if (fc->classes[i].subclass) | 
					
						
							|  |  |  |             put_bits(pb, 8, fc->classes[i].masterbook); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         books = (1 << fc->classes[i].subclass); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |         for (j = 0; j < books; j++) | 
					
						
							|  |  |  |             put_bits(pb, 8, fc->classes[i].books[j] + 1); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:24 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     put_bits(pb, 2, fc->multiplier - 1); | 
					
						
							|  |  |  |     put_bits(pb, 4, fc->rangebits); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |     for (i = 2; i < fc->values; i++) | 
					
						
							|  |  |  |         put_bits(pb, fc->rangebits, fc->list[i].x); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:22 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  | static void put_residue_header(PutBitContext *pb, vorbis_enc_residue *rc) | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:26 +00:00
										 |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     put_bits(pb, 16, rc->type); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     put_bits(pb, 24, rc->begin); | 
					
						
							|  |  |  |     put_bits(pb, 24, rc->end); | 
					
						
							|  |  |  |     put_bits(pb, 24, rc->partition_size - 1); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:16 +00:00
										 |  |  |     put_bits(pb, 6, rc->classifications - 1); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:26 +00:00
										 |  |  |     put_bits(pb, 8, rc->classbook); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < rc->classifications; i++) { | 
					
						
							|  |  |  |         int j, tmp = 0; | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |         for (j = 0; j < 8; j++) | 
					
						
							|  |  |  |             tmp |= (rc->books[i][j] != -1) << j; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         put_bits(pb, 3, tmp & 7); | 
					
						
							|  |  |  |         put_bits(pb, 1, tmp > 7); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |         if (tmp > 7) | 
					
						
							|  |  |  |             put_bits(pb, 5, tmp >> 3); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:26 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < rc->classifications; i++) { | 
					
						
							|  |  |  |         int j; | 
					
						
							|  |  |  |         for (j = 0; j < 8; j++) | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:38 +00:00
										 |  |  |             if (rc->books[i][j] != -1) | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:26 +00:00
										 |  |  |                 put_bits(pb, 8, rc->books[i][j]); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:22 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  | static int put_main_header(vorbis_enc_context *venc, uint8_t **out) | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:16 +00:00
										 |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:18 +00:00
										 |  |  |     PutBitContext pb; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     uint8_t buffer[50000] = {0}, *p = buffer; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:18 +00:00
										 |  |  |     int buffer_len = sizeof buffer; | 
					
						
							|  |  |  |     int len, hlens[3]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // identification header
 | 
					
						
							|  |  |  |     init_put_bits(&pb, p, buffer_len); | 
					
						
							|  |  |  |     put_bits(&pb, 8, 1); //magic
 | 
					
						
							| 
									
										
										
										
											2009-12-02 23:51:15 +00:00
										 |  |  |     for (i = 0; "vorbis"[i]; i++) | 
					
						
							|  |  |  |         put_bits(&pb, 8, "vorbis"[i]); | 
					
						
							| 
									
										
										
										
											2009-10-01 15:40:29 +00:00
										 |  |  |     put_bits32(&pb, 0); // version
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     put_bits(&pb,  8, venc->channels); | 
					
						
							| 
									
										
										
										
											2009-10-01 15:40:29 +00:00
										 |  |  |     put_bits32(&pb, venc->sample_rate); | 
					
						
							|  |  |  |     put_bits32(&pb, 0); // bitrate
 | 
					
						
							|  |  |  |     put_bits32(&pb, 0); // bitrate
 | 
					
						
							|  |  |  |     put_bits32(&pb, 0); // bitrate
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     put_bits(&pb,  4, venc->log2_blocksize[0]); | 
					
						
							|  |  |  |     put_bits(&pb,  4, venc->log2_blocksize[1]); | 
					
						
							|  |  |  |     put_bits(&pb,  1, 1); // framing
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     flush_put_bits(&pb); | 
					
						
							| 
									
										
										
										
											2009-09-30 20:47:59 +00:00
										 |  |  |     hlens[0] = put_bits_count(&pb) >> 3; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:18 +00:00
										 |  |  |     buffer_len -= hlens[0]; | 
					
						
							|  |  |  |     p += hlens[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // comment header
 | 
					
						
							|  |  |  |     init_put_bits(&pb, p, buffer_len); | 
					
						
							|  |  |  |     put_bits(&pb, 8, 3); //magic
 | 
					
						
							| 
									
										
										
										
											2009-12-02 23:51:15 +00:00
										 |  |  |     for (i = 0; "vorbis"[i]; i++) | 
					
						
							|  |  |  |         put_bits(&pb, 8, "vorbis"[i]); | 
					
						
							| 
									
										
										
										
											2009-10-01 15:40:29 +00:00
										 |  |  |     put_bits32(&pb, 0); // vendor length TODO
 | 
					
						
							|  |  |  |     put_bits32(&pb, 0); // amount of comments
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     put_bits(&pb,  1, 1); // framing
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     flush_put_bits(&pb); | 
					
						
							| 
									
										
										
										
											2009-09-30 20:47:59 +00:00
										 |  |  |     hlens[1] = put_bits_count(&pb) >> 3; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:18 +00:00
										 |  |  |     buffer_len -= hlens[1]; | 
					
						
							|  |  |  |     p += hlens[1]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // setup header
 | 
					
						
							|  |  |  |     init_put_bits(&pb, p, buffer_len); | 
					
						
							|  |  |  |     put_bits(&pb, 8, 5); //magic
 | 
					
						
							| 
									
										
										
										
											2009-12-02 23:51:15 +00:00
										 |  |  |     for (i = 0; "vorbis"[i]; i++) | 
					
						
							|  |  |  |         put_bits(&pb, 8, "vorbis"[i]); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // codebooks
 | 
					
						
							|  |  |  |     put_bits(&pb, 8, venc->ncodebooks - 1); | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |     for (i = 0; i < venc->ncodebooks; i++) | 
					
						
							|  |  |  |         put_codebook_header(&pb, &venc->codebooks[i]); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:22 +00:00
										 |  |  |     // time domain, reserved, zero
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     put_bits(&pb,  6, 0); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:22 +00:00
										 |  |  |     put_bits(&pb, 16, 0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // floors
 | 
					
						
							|  |  |  |     put_bits(&pb, 6, venc->nfloors - 1); | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |     for (i = 0; i < venc->nfloors; i++) | 
					
						
							|  |  |  |         put_floor_header(&pb, &venc->floors[i]); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // residues
 | 
					
						
							|  |  |  |     put_bits(&pb, 6, venc->nresidues - 1); | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |     for (i = 0; i < venc->nresidues; i++) | 
					
						
							|  |  |  |         put_residue_header(&pb, &venc->residues[i]); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // mappings
 | 
					
						
							|  |  |  |     put_bits(&pb, 6, venc->nmappings - 1); | 
					
						
							|  |  |  |     for (i = 0; i < venc->nmappings; i++) { | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |         vorbis_enc_mapping *mc = &venc->mappings[i]; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:28 +00:00
										 |  |  |         int j; | 
					
						
							|  |  |  |         put_bits(&pb, 16, 0); // mapping type
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         put_bits(&pb, 1, mc->submaps > 1); | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |         if (mc->submaps > 1) | 
					
						
							|  |  |  |             put_bits(&pb, 4, mc->submaps - 1); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:09 +00:00
										 |  |  |         put_bits(&pb, 1, !!mc->coupling_steps); | 
					
						
							|  |  |  |         if (mc->coupling_steps) { | 
					
						
							|  |  |  |             put_bits(&pb, 8, mc->coupling_steps - 1); | 
					
						
							|  |  |  |             for (j = 0; j < mc->coupling_steps; j++) { | 
					
						
							|  |  |  |                 put_bits(&pb, ilog(venc->channels - 1), mc->magnitude[j]); | 
					
						
							|  |  |  |                 put_bits(&pb, ilog(venc->channels - 1), mc->angle[j]); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         put_bits(&pb, 2, 0); // reserved
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |         if (mc->submaps > 1) | 
					
						
							|  |  |  |             for (j = 0; j < venc->channels; j++) | 
					
						
							|  |  |  |                 put_bits(&pb, 4, mc->mux[j]); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         for (j = 0; j < mc->submaps; j++) { | 
					
						
							|  |  |  |             put_bits(&pb, 8, 0); // reserved time configuration
 | 
					
						
							|  |  |  |             put_bits(&pb, 8, mc->floor[j]); | 
					
						
							|  |  |  |             put_bits(&pb, 8, mc->residue[j]); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:22 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:30 +00:00
										 |  |  |     // modes
 | 
					
						
							|  |  |  |     put_bits(&pb, 6, venc->nmodes - 1); | 
					
						
							|  |  |  |     for (i = 0; i < venc->nmodes; i++) { | 
					
						
							|  |  |  |         put_bits(&pb, 1, venc->modes[i].blockflag); | 
					
						
							|  |  |  |         put_bits(&pb, 16, 0); // reserved window type
 | 
					
						
							|  |  |  |         put_bits(&pb, 16, 0); // reserved transform type
 | 
					
						
							|  |  |  |         put_bits(&pb, 8, venc->modes[i].mapping); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:12 +00:00
										 |  |  |     put_bits(&pb, 1, 1); // framing
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:18 +00:00
										 |  |  |     flush_put_bits(&pb); | 
					
						
							| 
									
										
										
										
											2009-09-30 20:47:59 +00:00
										 |  |  |     hlens[2] = put_bits_count(&pb) >> 3; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     len = hlens[0] + hlens[1] + hlens[2]; | 
					
						
							|  |  |  |     p = *out = av_mallocz(64 + len + len/255); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     *p++ = 2; | 
					
						
							|  |  |  |     p += av_xiphlacing(p, hlens[0]); | 
					
						
							|  |  |  |     p += av_xiphlacing(p, hlens[1]); | 
					
						
							|  |  |  |     buffer_len = 0; | 
					
						
							|  |  |  |     for (i = 0; i < 3; i++) { | 
					
						
							|  |  |  |         memcpy(p, buffer + buffer_len, hlens[i]); | 
					
						
							|  |  |  |         p += hlens[i]; | 
					
						
							|  |  |  |         buffer_len += hlens[i]; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:18 +00:00
										 |  |  |     return p - *out; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:55:16 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  | static float get_floor_average(vorbis_enc_floor * fc, float *coeffs, int i) | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:57 +00:00
										 |  |  |     int begin = fc->list[fc->list[FFMAX(i-1, 0)].sort].x; | 
					
						
							|  |  |  |     int end   = fc->list[fc->list[FFMIN(i+1, fc->values - 1)].sort].x; | 
					
						
							|  |  |  |     int j; | 
					
						
							|  |  |  |     float average = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |     for (j = begin; j < end; j++) | 
					
						
							|  |  |  |         average += fabs(coeffs[j]); | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:57 +00:00
										 |  |  |     return average / (end - begin); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  | static void floor_fit(vorbis_enc_context *venc, vorbis_enc_floor *fc, | 
					
						
							| 
									
										
										
										
											2011-04-29 16:08:20 +02:00
										 |  |  |                       float *coeffs, uint16_t *posts, int samples) | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:49 +00:00
										 |  |  |     int range = 255 / fc->multiplier + 1; | 
					
						
							|  |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:57 +00:00
										 |  |  |     float tot_average = 0.; | 
					
						
							| 
									
										
										
										
											2010-09-24 20:42:08 +00:00
										 |  |  |     float averages[MAX_FLOOR_VALUES]; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     for (i = 0; i < fc->values; i++) { | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |         averages[i] = get_floor_average(fc, coeffs, i); | 
					
						
							|  |  |  |         tot_average += averages[i]; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:57 +00:00
										 |  |  |     tot_average /= fc->values; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:59 +00:00
										 |  |  |     tot_average /= venc->quality; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:49 +00:00
										 |  |  |     for (i = 0; i < fc->values; i++) { | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |         int position  = fc->list[fc->list[i].sort].x; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:24 +00:00
										 |  |  |         float average = averages[i]; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:49 +00:00
										 |  |  |         int j; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-02 16:09:19 +00:00
										 |  |  |         average = sqrt(tot_average * average) * pow(1.25f, position*0.005f); // MAGIC!
 | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |         for (j = 0; j < range - 1; j++) | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |             if (ff_vorbis_floor1_inverse_db_table[j * fc->multiplier] > average) | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:49 +00:00
										 |  |  |         posts[fc->list[i].sort] = j; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  | static int render_point(int x0, int y0, int x1, int y1, int x) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:53 +00:00
										 |  |  |     return y0 +  (x - x0) * (y1 - y0) / (x1 - x0); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  | static void floor_encode(vorbis_enc_context *venc, vorbis_enc_floor *fc, | 
					
						
							| 
									
										
										
										
											2011-04-29 16:08:20 +02:00
										 |  |  |                          PutBitContext *pb, uint16_t *posts, | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |                          float *floor, int samples) | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:46 +00:00
										 |  |  |     int range = 255 / fc->multiplier + 1; | 
					
						
							| 
									
										
										
										
											2010-09-24 20:42:08 +00:00
										 |  |  |     int coded[MAX_FLOOR_VALUES]; // first 2 values are unused
 | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:53 +00:00
										 |  |  |     int i, counter; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:46 +00:00
										 |  |  |     put_bits(pb, 1, 1); // non zero
 | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:53 +00:00
										 |  |  |     put_bits(pb, ilog(range - 1), posts[0]); | 
					
						
							|  |  |  |     put_bits(pb, ilog(range - 1), posts[1]); | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:51 +00:00
										 |  |  |     coded[0] = coded[1] = 1; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:53 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for (i = 2; i < fc->values; i++) { | 
					
						
							|  |  |  |         int predicted = render_point(fc->list[fc->list[i].low].x, | 
					
						
							|  |  |  |                                      posts[fc->list[i].low], | 
					
						
							|  |  |  |                                      fc->list[fc->list[i].high].x, | 
					
						
							|  |  |  |                                      posts[fc->list[i].high], | 
					
						
							|  |  |  |                                      fc->list[i].x); | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:57 +00:00
										 |  |  |         int highroom = range - predicted; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:53 +00:00
										 |  |  |         int lowroom = predicted; | 
					
						
							|  |  |  |         int room = FFMIN(highroom, lowroom); | 
					
						
							|  |  |  |         if (predicted == posts[i]) { | 
					
						
							|  |  |  |             coded[i] = 0; // must be used later as flag!
 | 
					
						
							|  |  |  |             continue; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:55 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |             if (!coded[fc->list[i].low ]) | 
					
						
							|  |  |  |                 coded[fc->list[i].low ] = -1; | 
					
						
							|  |  |  |             if (!coded[fc->list[i].high]) | 
					
						
							|  |  |  |                 coded[fc->list[i].high] = -1; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:53 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         if (posts[i] > predicted) { | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |             if (posts[i] - predicted > room) | 
					
						
							|  |  |  |                 coded[i] = posts[i] - predicted + lowroom; | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 coded[i] = (posts[i] - predicted) << 1; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:53 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |             if (predicted - posts[i] > room) | 
					
						
							|  |  |  |                 coded[i] = predicted - posts[i] + highroom - 1; | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |                 coded[i] = ((predicted - posts[i]) << 1) - 1; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:53 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     counter = 2; | 
					
						
							|  |  |  |     for (i = 0; i < fc->partitions; i++) { | 
					
						
							| 
									
										
										
										
											2008-12-12 05:12:51 +00:00
										 |  |  |         vorbis_enc_floor_class * c = &fc->classes[fc->partition_to_class[i]]; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:19 +00:00
										 |  |  |         int k, cval = 0, csub = 1<<c->subclass; | 
					
						
							|  |  |  |         if (c->subclass) { | 
					
						
							| 
									
										
										
										
											2008-12-12 05:12:51 +00:00
										 |  |  |             vorbis_enc_codebook * book = &venc->codebooks[c->masterbook]; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:19 +00:00
										 |  |  |             int cshift = 0; | 
					
						
							|  |  |  |             for (k = 0; k < c->dim; k++) { | 
					
						
							|  |  |  |                 int l; | 
					
						
							|  |  |  |                 for (l = 0; l < csub; l++) { | 
					
						
							|  |  |  |                     int maxval = 1; | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |                     if (c->books[l] != -1) | 
					
						
							|  |  |  |                         maxval = venc->codebooks[c->books[l]].nentries; | 
					
						
							| 
									
										
										
										
											2007-06-12 09:29:25 +00:00
										 |  |  |                     // coded could be -1, but this still works, cause that is 0
 | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |                     if (coded[counter + k] < maxval) | 
					
						
							|  |  |  |                         break; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:19 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |                 assert(l != csub); | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |                 cval   |= l << cshift; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:19 +00:00
										 |  |  |                 cshift += c->subclass; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:18 +00:00
										 |  |  |             put_codeword(pb, book, cval); | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:19 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:46 +00:00
										 |  |  |         for (k = 0; k < c->dim; k++) { | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |             int book  = c->books[cval & (csub-1)]; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:53 +00:00
										 |  |  |             int entry = coded[counter++]; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:19 +00:00
										 |  |  |             cval >>= c->subclass; | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |             if (book == -1) | 
					
						
							|  |  |  |                 continue; | 
					
						
							|  |  |  |             if (entry == -1) | 
					
						
							|  |  |  |                 entry = 0; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:18 +00:00
										 |  |  |             put_codeword(pb, &venc->codebooks[book], entry); | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:46 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     ff_vorbis_floor1_render_list(fc->list, fc->values, posts, coded, | 
					
						
							|  |  |  |                                  fc->multiplier, floor, samples); | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  | static float *put_vector(vorbis_enc_codebook *book, PutBitContext *pb, | 
					
						
							|  |  |  |                          float *num) | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:41 +00:00
										 |  |  |     int i, entry = -1; | 
					
						
							|  |  |  |     float distance = FLT_MAX; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:44 +00:00
										 |  |  |     assert(book->dimentions); | 
					
						
							|  |  |  |     for (i = 0; i < book->nentries; i++) { | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:41 +00:00
										 |  |  |         float * vec = book->dimentions + i * book->ndimentions, d = book->pow2[i]; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:44 +00:00
										 |  |  |         int j; | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |         if (!book->lens[i]) | 
					
						
							|  |  |  |             continue; | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |         for (j = 0; j < book->ndimentions; j++) | 
					
						
							|  |  |  |             d -= vec[j] * num[j]; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:41 +00:00
										 |  |  |         if (distance > d) { | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |             entry    = i; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:44 +00:00
										 |  |  |             distance = d; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:18 +00:00
										 |  |  |     put_codeword(pb, book, entry); | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:44 +00:00
										 |  |  |     return &book->dimentions[entry * book->ndimentions]; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2006-10-02 05:54:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  | static void residue_encode(vorbis_enc_context *venc, vorbis_enc_residue *rc, | 
					
						
							|  |  |  |                            PutBitContext *pb, float *coeffs, int samples, | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |                            int real_ch) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:44 +00:00
										 |  |  |     int pass, i, j, p, k; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     int psize      = rc->partition_size; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:44 +00:00
										 |  |  |     int partitions = (rc->end - rc->begin) / psize; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     int channels   = (rc->type == 2) ? 1 : real_ch; | 
					
						
							| 
									
										
										
										
											2010-09-24 20:42:08 +00:00
										 |  |  |     int classes[MAX_CHANNELS][NUM_RESIDUE_PARTITIONS]; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:44 +00:00
										 |  |  |     int classwords = venc->codebooks[rc->classbook].ndimentions; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:36 +00:00
										 |  |  |     assert(rc->type == 2); | 
					
						
							|  |  |  |     assert(real_ch == 2); | 
					
						
							|  |  |  |     for (p = 0; p < partitions; p++) { | 
					
						
							|  |  |  |         float max1 = 0., max2 = 0.; | 
					
						
							|  |  |  |         int s = rc->begin + p * psize; | 
					
						
							|  |  |  |         for (k = s; k < s + psize; k += 2) { | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:28 +00:00
										 |  |  |             max1 = FFMAX(max1, fabs(coeffs[          k / real_ch])); | 
					
						
							|  |  |  |             max2 = FFMAX(max2, fabs(coeffs[samples + k / real_ch])); | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:36 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |         for (i = 0; i < rc->classifications - 1; i++) | 
					
						
							|  |  |  |             if (max1 < rc->maxes[i][0] && max2 < rc->maxes[i][1]) | 
					
						
							|  |  |  |                 break; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:36 +00:00
										 |  |  |         classes[0][p] = i; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:44 +00:00
										 |  |  |     for (pass = 0; pass < 8; pass++) { | 
					
						
							|  |  |  |         p = 0; | 
					
						
							|  |  |  |         while (p < partitions) { | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |             if (pass == 0) | 
					
						
							|  |  |  |                 for (j = 0; j < channels; j++) { | 
					
						
							| 
									
										
										
										
											2008-12-12 05:12:51 +00:00
										 |  |  |                     vorbis_enc_codebook * book = &venc->codebooks[rc->classbook]; | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |                     int entry = 0; | 
					
						
							|  |  |  |                     for (i = 0; i < classwords; i++) { | 
					
						
							|  |  |  |                         entry *= rc->classifications; | 
					
						
							|  |  |  |                         entry += classes[j][p + i]; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     put_codeword(pb, book, entry); | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:44 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |             for (i = 0; i < classwords && p < partitions; i++, p++) { | 
					
						
							|  |  |  |                 for (j = 0; j < channels; j++) { | 
					
						
							|  |  |  |                     int nbook = rc->books[classes[j][p]][pass]; | 
					
						
							| 
									
										
										
										
											2008-12-12 05:12:51 +00:00
										 |  |  |                     vorbis_enc_codebook * book = &venc->codebooks[nbook]; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |                     float *buf = coeffs + samples*j + rc->begin + p*psize; | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |                     if (nbook == -1) | 
					
						
							|  |  |  |                         continue; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:54:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:11 +00:00
										 |  |  |                     assert(rc->type == 0 || rc->type == 2); | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:44 +00:00
										 |  |  |                     assert(!(psize % book->ndimentions)); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:54:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:11 +00:00
										 |  |  |                     if (rc->type == 0) { | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:14 +00:00
										 |  |  |                         for (k = 0; k < psize; k += book->ndimentions) { | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |                             float *a = put_vector(book, pb, &buf[k]); | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:14 +00:00
										 |  |  |                             int l; | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |                             for (l = 0; l < book->ndimentions; l++) | 
					
						
							|  |  |  |                                 buf[k + l] -= a[l]; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:14 +00:00
										 |  |  |                         } | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:11 +00:00
										 |  |  |                     } else { | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:39 +00:00
										 |  |  |                         int s = rc->begin + p * psize, a1, b1; | 
					
						
							|  |  |  |                         a1 = (s % real_ch) * samples; | 
					
						
							|  |  |  |                         b1 =  s / real_ch; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |                         s  = real_ch * samples; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:11 +00:00
										 |  |  |                         for (k = 0; k < psize; k += book->ndimentions) { | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:39 +00:00
										 |  |  |                             int dim, a2 = a1, b2 = b1; | 
					
						
							| 
									
										
										
										
											2010-09-24 20:42:08 +00:00
										 |  |  |                             float vec[MAX_CODEBOOK_DIM], *pv = vec; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:39 +00:00
										 |  |  |                             for (dim = book->ndimentions; dim--; ) { | 
					
						
							|  |  |  |                                 *pv++ = coeffs[a2 + b2]; | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |                                 if ((a2 += samples) == s) { | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |                                     a2 = 0; | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |                                     b2++; | 
					
						
							|  |  |  |                                 } | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:39 +00:00
										 |  |  |                             } | 
					
						
							|  |  |  |                             pv = put_vector(book, pb, vec); | 
					
						
							|  |  |  |                             for (dim = book->ndimentions; dim--; ) { | 
					
						
							|  |  |  |                                 coeffs[a1 + b1] -= *pv++; | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |                                 if ((a1 += samples) == s) { | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |                                     a1 = 0; | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |                                     b1++; | 
					
						
							|  |  |  |                                 } | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:39 +00:00
										 |  |  |                             } | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:11 +00:00
										 |  |  |                         } | 
					
						
							|  |  |  |                     } | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:44 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-10-02 05:54:55 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-07-24 13:59:49 +00:00
										 |  |  | static int apply_window_and_mdct(vorbis_enc_context *venc, const signed short *audio, | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |                                  int samples) | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:25 +00:00
										 |  |  |     int i, j, channel; | 
					
						
							|  |  |  |     const float * win = venc->win[0]; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:52 +00:00
										 |  |  |     int window_len = 1 << (venc->log2_blocksize[0] - 1); | 
					
						
							|  |  |  |     float n = (float)(1 << venc->log2_blocksize[0]) / 4.; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:25 +00:00
										 |  |  |     // FIXME use dsp
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-28 21:46:22 +00:00
										 |  |  |     if (!venc->have_saved && !samples) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     if (venc->have_saved) { | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |         for (channel = 0; channel < venc->channels; channel++) | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |             memcpy(venc->samples + channel * window_len * 2, | 
					
						
							|  |  |  |                    venc->saved + channel * window_len, sizeof(float) * window_len); | 
					
						
							|  |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |         for (channel = 0; channel < venc->channels; channel++) | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |             memset(venc->samples + channel * window_len * 2, 0, | 
					
						
							|  |  |  |                    sizeof(float) * window_len); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (samples) { | 
					
						
							|  |  |  |         for (channel = 0; channel < venc->channels; channel++) { | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:37 +00:00
										 |  |  |             float * offset = venc->samples + channel*window_len*2 + window_len; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:25 +00:00
										 |  |  |             j = channel; | 
					
						
							|  |  |  |             for (i = 0; i < samples; i++, j += venc->channels) | 
					
						
							| 
									
										
										
										
											2010-05-25 22:53:22 +00:00
										 |  |  |                 offset[i] = audio[j] / 32768. / n * win[window_len - i - 1]; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:25 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |         for (channel = 0; channel < venc->channels; channel++) | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |             memset(venc->samples + channel * window_len * 2 + window_len, | 
					
						
							|  |  |  |                    0, sizeof(float) * window_len); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:25 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |     for (channel = 0; channel < venc->channels; channel++) | 
					
						
							| 
									
										
										
										
											2011-03-19 15:14:17 +00:00
										 |  |  |         venc->mdct[0].mdct_calc(&venc->mdct[0], venc->coeffs + channel * window_len, | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |                      venc->samples + channel * window_len * 2); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (samples) { | 
					
						
							|  |  |  |         for (channel = 0; channel < venc->channels; channel++) { | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |             float *offset = venc->saved + channel * window_len; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:25 +00:00
										 |  |  |             j = channel; | 
					
						
							|  |  |  |             for (i = 0; i < samples; i++, j += venc->channels) | 
					
						
							| 
									
										
										
										
											2010-05-25 22:53:22 +00:00
										 |  |  |                 offset[i] = audio[j] / 32768. / n * win[i]; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:25 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         venc->have_saved = 1; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         venc->have_saved = 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2006-10-02 05:54:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  | static av_cold int vorbis_encode_init(AVCodecContext *avccontext) | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:44 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     vorbis_enc_context *venc = avccontext->priv_data; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:36 +00:00
										 |  |  |     if (avccontext->channels != 2) { | 
					
						
							| 
									
										
										
										
											2011-04-17 23:57:50 +02:00
										 |  |  |         av_log(avccontext, AV_LOG_ERROR, "Current FFmpeg Vorbis encoder only supports 2 channels.\n"); | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:36 +00:00
										 |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:44 +00:00
										 |  |  |     create_vorbis_context(venc, avccontext); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |     if (avccontext->flags & CODEC_FLAG_QSCALE) | 
					
						
							|  |  |  |         venc->quality = avccontext->global_quality / (float)FF_QP2LAMBDA / 10.; | 
					
						
							|  |  |  |     else | 
					
						
							| 
									
										
										
										
											2010-06-03 23:53:10 +00:00
										 |  |  |         venc->quality = 0.03; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:47 +00:00
										 |  |  |     venc->quality *= venc->quality; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:44 +00:00
										 |  |  |     avccontext->extradata_size = put_main_header(venc, (uint8_t**)&avccontext->extradata); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     avccontext->frame_size     = 1 << (venc->log2_blocksize[0] - 1); | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     avccontext->coded_frame            = avcodec_alloc_frame(); | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:44 +00:00
										 |  |  |     avccontext->coded_frame->key_frame = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:30 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  | static int vorbis_encode_frame(AVCodecContext *avccontext, | 
					
						
							|  |  |  |                                unsigned char *packets, | 
					
						
							|  |  |  |                                int buf_size, void *data) | 
					
						
							| 
									
										
										
										
											2006-10-02 05:54:55 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     vorbis_enc_context *venc = avccontext->priv_data; | 
					
						
							| 
									
										
										
										
											2010-07-24 13:59:49 +00:00
										 |  |  |     const signed short *audio = data; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:05 +00:00
										 |  |  |     int samples = data ? avccontext->frame_size : 0; | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     vorbis_enc_mode *mode; | 
					
						
							|  |  |  |     vorbis_enc_mapping *mapping; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:18 +00:00
										 |  |  |     PutBitContext pb; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |     if (!apply_window_and_mdct(venc, audio, samples)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:52 +00:00
										 |  |  |     samples = 1 << (venc->log2_blocksize[0] - 1); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:18 +00:00
										 |  |  |     init_put_bits(&pb, packets, buf_size); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     put_bits(&pb, 1, 0); // magic bit
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     put_bits(&pb, ilog(venc->nmodes - 1), 0); // 0 bits, the mode
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     mode    = &venc->modes[0]; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:18 +00:00
										 |  |  |     mapping = &venc->mappings[mode->mapping]; | 
					
						
							|  |  |  |     if (mode->blockflag) { | 
					
						
							|  |  |  |         put_bits(&pb, 1, 0); | 
					
						
							|  |  |  |         put_bits(&pb, 1, 0); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < venc->channels; i++) { | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |         vorbis_enc_floor *fc = &venc->floors[mapping->floor[mapping->mux[i]]]; | 
					
						
							| 
									
										
										
										
											2011-04-29 16:08:20 +02:00
										 |  |  |         uint16_t posts[MAX_FLOOR_VALUES]; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:49 +00:00
										 |  |  |         floor_fit(venc, fc, &venc->coeffs[i * samples], posts, samples); | 
					
						
							| 
									
										
										
										
											2006-10-02 06:07:51 +00:00
										 |  |  |         floor_encode(venc, fc, &pb, posts, &venc->floor[i * samples], samples); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:18 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-10-02 05:54:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |     for (i = 0; i < venc->channels * samples; i++) | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:43 +00:00
										 |  |  |         venc->coeffs[i] /= venc->floor[i]; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:09 +00:00
										 |  |  |     for (i = 0; i < mapping->coupling_steps; i++) { | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |         float *mag = venc->coeffs + mapping->magnitude[i] * samples; | 
					
						
							|  |  |  |         float *ang = venc->coeffs + mapping->angle[i]     * samples; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:09 +00:00
										 |  |  |         int j; | 
					
						
							|  |  |  |         for (j = 0; j < samples; j++) { | 
					
						
							|  |  |  |             float a = ang[j]; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:30 +00:00
										 |  |  |             ang[j] -= mag[j]; | 
					
						
							| 
									
										
										
										
											2009-09-28 21:13:47 +00:00
										 |  |  |             if (mag[j] > 0) | 
					
						
							|  |  |  |                 ang[j] = -ang[j]; | 
					
						
							|  |  |  |             if (ang[j] < 0) | 
					
						
							|  |  |  |                 mag[j] = a; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:08:09 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     residue_encode(venc, &venc->residues[mapping->residue[mapping->mux[0]]], | 
					
						
							|  |  |  |                    &pb, venc->coeffs, samples, venc->channels); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-09 14:42:50 +00:00
										 |  |  |     avccontext->coded_frame->pts = venc->sample_count; | 
					
						
							|  |  |  |     venc->sample_count += avccontext->frame_size; | 
					
						
							| 
									
										
										
										
											2006-10-02 06:09:08 +00:00
										 |  |  |     flush_put_bits(&pb); | 
					
						
							| 
									
										
										
										
											2009-09-30 20:47:59 +00:00
										 |  |  |     return put_bits_count(&pb) >> 3; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:54:55 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  | static av_cold int vorbis_encode_close(AVCodecContext *avccontext) | 
					
						
							| 
									
										
										
										
											2006-10-02 05:54:55 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-29 11:43:58 +00:00
										 |  |  |     vorbis_enc_context *venc = avccontext->priv_data; | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:01 +00:00
										 |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |     if (venc->codebooks) | 
					
						
							|  |  |  |         for (i = 0; i < venc->ncodebooks; i++) { | 
					
						
							|  |  |  |             av_freep(&venc->codebooks[i].lens); | 
					
						
							|  |  |  |             av_freep(&venc->codebooks[i].codewords); | 
					
						
							|  |  |  |             av_freep(&venc->codebooks[i].quantlist); | 
					
						
							|  |  |  |             av_freep(&venc->codebooks[i].dimentions); | 
					
						
							|  |  |  |             av_freep(&venc->codebooks[i].pow2); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:01 +00:00
										 |  |  |     av_freep(&venc->codebooks); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |     if (venc->floors) | 
					
						
							|  |  |  |         for (i = 0; i < venc->nfloors; i++) { | 
					
						
							|  |  |  |             int j; | 
					
						
							|  |  |  |             if (venc->floors[i].classes) | 
					
						
							|  |  |  |                 for (j = 0; j < venc->floors[i].nclasses; j++) | 
					
						
							|  |  |  |                     av_freep(&venc->floors[i].classes[j].books); | 
					
						
							| 
									
										
										
										
											2006-10-02 11:47:10 +00:00
										 |  |  |             av_freep(&venc->floors[i].classes); | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |             av_freep(&venc->floors[i].partition_to_class); | 
					
						
							|  |  |  |             av_freep(&venc->floors[i].list); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:01 +00:00
										 |  |  |     av_freep(&venc->floors); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |     if (venc->residues) | 
					
						
							|  |  |  |         for (i = 0; i < venc->nresidues; i++) { | 
					
						
							|  |  |  |             av_freep(&venc->residues[i].books); | 
					
						
							|  |  |  |             av_freep(&venc->residues[i].maxes); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:01 +00:00
										 |  |  |     av_freep(&venc->residues); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |     if (venc->mappings) | 
					
						
							|  |  |  |         for (i = 0; i < venc->nmappings; i++) { | 
					
						
							|  |  |  |             av_freep(&venc->mappings[i].mux); | 
					
						
							|  |  |  |             av_freep(&venc->mappings[i].floor); | 
					
						
							|  |  |  |             av_freep(&venc->mappings[i].residue); | 
					
						
							| 
									
										
										
										
											2006-10-02 11:55:24 +00:00
										 |  |  |             av_freep(&venc->mappings[i].magnitude); | 
					
						
							|  |  |  |             av_freep(&venc->mappings[i].angle); | 
					
						
							| 
									
										
										
										
											2006-10-02 11:31:52 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:01 +00:00
										 |  |  |     av_freep(&venc->mappings); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     av_freep(&venc->modes); | 
					
						
							| 
									
										
										
										
											2006-10-02 05:54:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:56:23 +00:00
										 |  |  |     av_freep(&venc->saved); | 
					
						
							|  |  |  |     av_freep(&venc->samples); | 
					
						
							|  |  |  |     av_freep(&venc->floor); | 
					
						
							|  |  |  |     av_freep(&venc->coeffs); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ff_mdct_end(&venc->mdct[0]); | 
					
						
							|  |  |  |     ff_mdct_end(&venc->mdct[1]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-02 05:54:55 +00:00
										 |  |  |     av_freep(&avccontext->coded_frame); | 
					
						
							|  |  |  |     av_freep(&avccontext->extradata); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 0 ; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-25 21:40:11 +00:00
										 |  |  | AVCodec ff_vorbis_encoder = { | 
					
						
							| 
									
										
										
										
											2011-07-17 12:54:31 +02:00
										 |  |  |     .name           = "vorbis", | 
					
						
							|  |  |  |     .type           = AVMEDIA_TYPE_AUDIO, | 
					
						
							|  |  |  |     .id             = CODEC_ID_VORBIS, | 
					
						
							|  |  |  |     .priv_data_size = sizeof(vorbis_enc_context), | 
					
						
							|  |  |  |     .init           = vorbis_encode_init, | 
					
						
							|  |  |  |     .encode         = vorbis_encode_frame, | 
					
						
							|  |  |  |     .close          = vorbis_encode_close, | 
					
						
							| 
									
										
										
										
											2010-05-26 18:54:59 +00:00
										 |  |  |     .capabilities= CODEC_CAP_DELAY | CODEC_CAP_EXPERIMENTAL, | 
					
						
							| 
									
										
										
										
											2010-11-12 11:04:40 +00:00
										 |  |  |     .sample_fmts = (const enum AVSampleFormat[]){AV_SAMPLE_FMT_S16,AV_SAMPLE_FMT_NONE}, | 
					
						
							| 
									
										
										
										
											2008-06-12 21:50:13 +00:00
										 |  |  |     .long_name = NULL_IF_CONFIG_SMALL("Vorbis"), | 
					
						
							| 
									
										
										
										
											2006-10-02 05:54:55 +00:00
										 |  |  | }; |