| 
									
										
										
										
											2011-01-03 16:08:56 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * The simplest AC-3 encoder | 
					
						
							|  |  |  |  * Copyright (c) 2000 Fabrice Bellard | 
					
						
							|  |  |  |  * Copyright (c) 2006-2010 Justin Ruggles <justin.ruggles@gmail.com> | 
					
						
							|  |  |  |  * Copyright (c) 2006-2010 Prakash Punnoor <prakash@punnoor.de> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file is part of FFmpeg. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * FFmpeg is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							|  |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * FFmpeg is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * 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 | 
					
						
							|  |  |  |  * License along with FFmpeg; if not, write to the Free Software | 
					
						
							|  |  |  |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * @file | 
					
						
							|  |  |  |  * fixed-point AC-3 encoder. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-21 18:07:59 +00:00
										 |  |  | #define CONFIG_FFT_FLOAT 0
 | 
					
						
							| 
									
										
										
										
											2011-01-04 11:53:44 +00:00
										 |  |  | #undef CONFIG_AC3ENC_FLOAT
 | 
					
						
							| 
									
										
										
										
											2011-06-10 14:57:19 -04:00
										 |  |  | #include "ac3enc.h"
 | 
					
						
							| 
									
										
										
										
											2011-08-07 17:47:42 -04:00
										 |  |  | #include "eac3enc.h"
 | 
					
						
							| 
									
										
										
										
											2011-06-10 14:57:19 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define AC3ENC_TYPE AC3ENC_TYPE_AC3_FIXED
 | 
					
						
							|  |  |  | #include "ac3enc_opts_template.c"
 | 
					
						
							| 
									
										
										
										
											2011-07-15 00:21:15 +03:00
										 |  |  | static const AVClass ac3enc_class = { "Fixed-Point AC-3 Encoder", av_default_item_name, | 
					
						
							|  |  |  |                                       ac3fixed_options, LIBAVUTIL_VERSION_INT }; | 
					
						
							| 
									
										
										
										
											2011-06-10 14:57:19 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "ac3enc_template.c"
 | 
					
						
							| 
									
										
										
										
											2011-01-03 16:08:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * Finalize MDCT and free allocated memory. | 
					
						
							| 
									
										
										
										
											2011-11-02 10:38:10 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * @param s  AC-3 encoder private context | 
					
						
							| 
									
										
										
										
											2011-01-03 16:08:56 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-07-13 15:12:11 -04:00
										 |  |  | av_cold void AC3_NAME(mdct_end)(AC3EncodeContext *s) | 
					
						
							| 
									
										
										
										
											2011-01-03 16:08:56 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-07-13 15:12:11 -04:00
										 |  |  |     ff_mdct_end(&s->mdct); | 
					
						
							| 
									
										
										
										
											2011-01-03 16:08:56 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * Initialize MDCT tables. | 
					
						
							| 
									
										
										
										
											2011-11-02 10:38:10 -04:00
										 |  |  |  * | 
					
						
							|  |  |  |  * @param s  AC-3 encoder private context | 
					
						
							|  |  |  |  * @return   0 on success, negative error code on failure | 
					
						
							| 
									
										
										
										
											2011-01-03 16:08:56 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-07-13 15:12:11 -04:00
										 |  |  | av_cold int AC3_NAME(mdct_init)(AC3EncodeContext *s) | 
					
						
							| 
									
										
										
										
											2011-01-03 16:08:56 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-07-13 15:12:11 -04:00
										 |  |  |     int ret = ff_mdct_init(&s->mdct, 9, 0, -1.0); | 
					
						
							|  |  |  |     s->mdct_window = ff_ac3_window; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:07:59 +00:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2011-01-03 16:08:56 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-02 10:38:10 -04:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2011-01-03 16:08:56 +00:00
										 |  |  |  * Apply KBD window to input samples prior to MDCT. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-06-26 23:58:19 -04:00
										 |  |  | static void apply_window(DSPContext *dsp, int16_t *output, const int16_t *input, | 
					
						
							|  |  |  |                          const int16_t *window, unsigned int len) | 
					
						
							| 
									
										
										
										
											2011-01-03 16:08:56 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-03-20 13:31:36 -04:00
										 |  |  |     dsp->apply_window_int16(output, input, window, len); | 
					
						
							| 
									
										
										
										
											2011-01-03 16:08:56 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-02 10:38:10 -04:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2011-01-03 16:08:56 +00:00
										 |  |  |  * Normalize the input samples to use the maximum available precision. | 
					
						
							| 
									
										
										
										
											2011-03-11 13:03:26 -05:00
										 |  |  |  * This assumes signed 16-bit input samples. | 
					
						
							| 
									
										
										
										
											2011-01-03 16:08:56 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-06-26 23:58:19 -04:00
										 |  |  | static int normalize_samples(AC3EncodeContext *s) | 
					
						
							| 
									
										
										
										
											2011-01-03 16:08:56 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-06-27 07:46:27 -04:00
										 |  |  |     int v = s->ac3dsp.ac3_max_msb_abs_int16(s->windowed_samples, AC3_WINDOW_SIZE); | 
					
						
							|  |  |  |     v = 14 - av_log2(v); | 
					
						
							| 
									
										
										
										
											2011-03-11 16:45:01 -05:00
										 |  |  |     if (v > 0) | 
					
						
							|  |  |  |         s->ac3dsp.ac3_lshift_int16(s->windowed_samples, AC3_WINDOW_SIZE, v); | 
					
						
							| 
									
										
										
										
											2011-03-11 13:03:26 -05:00
										 |  |  |     /* +6 to right-shift from 31-bit to 25-bit */ | 
					
						
							|  |  |  |     return v + 6; | 
					
						
							| 
									
										
										
										
											2011-01-03 16:08:56 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-02 10:38:10 -04:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2011-03-11 13:03:26 -05:00
										 |  |  |  * Scale MDCT coefficients to 25-bit signed fixed-point. | 
					
						
							| 
									
										
										
										
											2011-01-05 20:35:36 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-06-26 23:58:19 -04:00
										 |  |  | static void scale_coefficients(AC3EncodeContext *s) | 
					
						
							| 
									
										
										
										
											2011-01-05 20:35:36 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-03-11 13:03:26 -05:00
										 |  |  |     int blk, ch; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-14 13:02:45 -04:00
										 |  |  |     for (blk = 0; blk < s->num_blocks; blk++) { | 
					
						
							| 
									
										
										
										
											2011-03-11 13:03:26 -05:00
										 |  |  |         AC3Block *block = &s->blocks[blk]; | 
					
						
							| 
									
										
										
										
											2011-05-23 17:45:51 +02:00
										 |  |  |         for (ch = 1; ch <= s->channels; ch++) { | 
					
						
							| 
									
										
										
										
											2011-03-11 16:45:01 -05:00
										 |  |  |             s->ac3dsp.ac3_rshift_int32(block->mdct_coef[ch], AC3_MAX_COEFS, | 
					
						
							|  |  |  |                                        block->coeff_shift[ch]); | 
					
						
							| 
									
										
										
										
											2011-03-11 13:03:26 -05:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-01-05 20:35:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-03 19:38:41 +01:00
										 |  |  | static void sum_square_butterfly(AC3EncodeContext *s, int64_t sum[4], | 
					
						
							|  |  |  |                                  const int32_t *coef0, const int32_t *coef1, | 
					
						
							|  |  |  |                                  int len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     s->ac3dsp.sum_square_butterfly_int32(sum, coef0, coef1, len); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2011-01-05 20:35:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-02 10:38:10 -04:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2011-06-27 14:29:33 -04:00
										 |  |  |  * Clip MDCT coefficients to allowable range. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void clip_coefficients(DSPContext *dsp, int32_t *coef, unsigned int len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     dsp->vector_clip_int32(coef, coef, COEF_MIN, COEF_MAX, len); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-02 10:38:10 -04:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2011-08-07 17:47:42 -04:00
										 |  |  |  * Calculate a single coupling coordinate. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static CoefType calc_cpl_coord(CoefSumType energy_ch, CoefSumType energy_cpl) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (energy_cpl <= COEF_MAX) { | 
					
						
							|  |  |  |         return 1048576; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         uint64_t coord   = energy_ch / (energy_cpl >> 24); | 
					
						
							|  |  |  |         uint32_t coord32 = FFMIN(coord, 1073741824); | 
					
						
							|  |  |  |         coord32          = ff_sqrt(coord32) << 9; | 
					
						
							|  |  |  |         return FFMIN(coord32, COEF_MAX); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-10 14:57:19 -04:00
										 |  |  | static av_cold int ac3_fixed_encode_init(AVCodecContext *avctx) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     AC3EncodeContext *s = avctx->priv_data; | 
					
						
							|  |  |  |     s->fixed_point = 1; | 
					
						
							|  |  |  |     return ff_ac3_encode_init(avctx); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-25 21:40:11 +00:00
										 |  |  | AVCodec ff_ac3_fixed_encoder = { | 
					
						
							| 
									
										
										
										
											2011-07-17 12:54:31 +02:00
										 |  |  |     .name           = "ac3_fixed", | 
					
						
							|  |  |  |     .type           = AVMEDIA_TYPE_AUDIO, | 
					
						
							|  |  |  |     .id             = CODEC_ID_AC3, | 
					
						
							|  |  |  |     .priv_data_size = sizeof(AC3EncodeContext), | 
					
						
							|  |  |  |     .init           = ac3_fixed_encode_init, | 
					
						
							|  |  |  |     .encode         = ff_ac3_fixed_encode_frame, | 
					
						
							|  |  |  |     .close          = ff_ac3_encode_close, | 
					
						
							| 
									
										
										
										
											2011-01-03 16:08:56 +00:00
										 |  |  |     .sample_fmts = (const enum AVSampleFormat[]){AV_SAMPLE_FMT_S16,AV_SAMPLE_FMT_NONE}, | 
					
						
							|  |  |  |     .long_name = NULL_IF_CONFIG_SMALL("ATSC A/52A (AC-3)"), | 
					
						
							| 
									
										
										
										
											2011-03-25 17:12:26 -04:00
										 |  |  |     .priv_class = &ac3enc_class, | 
					
						
							| 
									
										
										
										
											2011-04-16 23:20:48 +02:00
										 |  |  |     .channel_layouts = ff_ac3_channel_layouts, | 
					
						
							| 
									
										
										
										
											2011-01-03 16:08:56 +00:00
										 |  |  | }; |