| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | /* | ||
| 2 | * The simplest AC-3 encoder | ||
| 3 | * Copyright (c) 2000 Fabrice Bellard | ||
| 4 | * Copyright (c) 2006-2010 Justin Ruggles <justin.ruggles@gmail.com> | ||
| 5 | * Copyright (c) 2006-2010 Prakash Punnoor <prakash@punnoor.de> | ||
| 6 | * | ||
| 7 | * This file is part of FFmpeg. | ||
| 8 | * | ||
| 9 | * FFmpeg is free software; you can redistribute it and/or | ||
| 10 | * modify it under the terms of the GNU Lesser General Public | ||
| 11 | * License as published by the Free Software Foundation; either | ||
| 12 | * version 2.1 of the License, or (at your option) any later version. | ||
| 13 | * | ||
| 14 | * FFmpeg is distributed in the hope that it will be useful, | ||
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 17 | * Lesser General Public License for more details. | ||
| 18 | * | ||
| 19 | * You should have received a copy of the GNU Lesser General Public | ||
| 20 | * License along with FFmpeg; if not, write to the Free Software | ||
| 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 22 | */ | ||
| 23 | |||
| 24 | /** | ||
| 25 | * @file | ||
| 26 | * fixed-point AC-3 encoder. | ||
| 27 | */ | ||
| 28 | |||
| 29 | #define AC3ENC_FLOAT 0 | ||
| 30 | #include "audiodsp.h" | ||
| 31 | #include "ac3enc.h" | ||
| 32 | #include "codec_internal.h" | ||
| 33 | #include "eac3enc.h" | ||
| 34 | #include "kbdwin.h" | ||
| 35 | |||
| 36 | 4152 | static void sum_square_butterfly(AC3EncodeContext *s, int64_t sum[4], | |
| 37 | const int32_t *coef0, const int32_t *coef1, | ||
| 38 | int len) | ||
| 39 | { | ||
| 40 | 4152 | s->ac3dsp.sum_square_butterfly_int32(sum, coef0, coef1, len); | |
| 41 | 4152 | } | |
| 42 | |||
| 43 | /* | ||
| 44 | * Clip MDCT coefficients to allowable range. | ||
| 45 | */ | ||
| 46 | 1086 | static void clip_coefficients(AudioDSPContext *adsp, int32_t *coef, | |
| 47 | unsigned int len) | ||
| 48 | { | ||
| 49 | 1086 | adsp->vector_clip_int32(coef, coef, COEF_MIN, COEF_MAX, len); | |
| 50 | 1086 | } | |
| 51 | |||
| 52 | |||
| 53 | /* | ||
| 54 | * Calculate a single coupling coordinate. | ||
| 55 | */ | ||
| 56 | 10264 | static CoefType calc_cpl_coord(CoefSumType energy_ch, CoefSumType energy_cpl) | |
| 57 | { | ||
| 58 |
2/2✓ Branch 0 taken 8422 times.
✓ Branch 1 taken 1842 times.
|
10264 | if (energy_cpl <= COEF_MAX) { |
| 59 | 8422 | return 1048576; | |
| 60 | } else { | ||
| 61 | 1842 | uint64_t coord = energy_ch / (energy_cpl >> 24); | |
| 62 | 1842 | uint32_t coord32 = FFMIN(coord, 1073741824); | |
| 63 | 1842 | coord32 = ff_sqrt(coord32) << 9; | |
| 64 | 1842 | return FFMIN(coord32, COEF_MAX); | |
| 65 | } | ||
| 66 | } | ||
| 67 | |||
| 68 | #include "ac3enc_template.c" | ||
| 69 | |||
| 70 | /** | ||
| 71 | * Initialize MDCT tables. | ||
| 72 | * | ||
| 73 | * @param s AC-3 encoder private context | ||
| 74 | * @return 0 on success, negative error code on failure | ||
| 75 | */ | ||
| 76 | 9 | static av_cold int ac3_fixed_mdct_init(AVCodecContext *avctx, AC3EncodeContext *s) | |
| 77 | { | ||
| 78 | float fwin[AC3_BLOCK_SIZE]; | ||
| 79 | 9 | const float scale = -1.0f; | |
| 80 | |||
| 81 | 9 | int32_t *iwin = s->mdct_window_fixed; | |
| 82 | |||
| 83 | 9 | ff_kbd_window_init(fwin, 5.0, AC3_BLOCK_SIZE); | |
| 84 |
2/2✓ Branch 0 taken 2304 times.
✓ Branch 1 taken 9 times.
|
2313 | for (int i = 0; i < AC3_BLOCK_SIZE; i++) |
| 85 | 2304 | iwin[i] = lrintf(fwin[i] * (1 << 22)); | |
| 86 | |||
| 87 | 9 | s->fdsp = avpriv_alloc_fixed_dsp(avctx->flags & AV_CODEC_FLAG_BITEXACT); | |
| 88 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 9 times.
|
9 | if (!s->fdsp) |
| 89 | ✗ | return AVERROR(ENOMEM); | |
| 90 | |||
| 91 | 9 | return av_tx_init(&s->tx, &s->tx_fn, AV_TX_INT32_MDCT, 0, | |
| 92 | AC3_BLOCK_SIZE, &scale, 0); | ||
| 93 | } | ||
| 94 | |||
| 95 | |||
| 96 | 9 | static av_cold int ac3_fixed_encode_init(AVCodecContext *avctx) | |
| 97 | { | ||
| 98 | 9 | AC3EncodeContext *s = avctx->priv_data; | |
| 99 | int ret; | ||
| 100 | |||
| 101 | 9 | s->fixed_point = 1; | |
| 102 | 9 | s->encode_frame = encode_frame; | |
| 103 | |||
| 104 | 9 | ret = ac3_fixed_mdct_init(avctx, s); | |
| 105 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 9 times.
|
9 | if (ret < 0) |
| 106 | ✗ | return ret; | |
| 107 | |||
| 108 | 9 | return ff_ac3_encode_init(avctx); | |
| 109 | } | ||
| 110 | |||
| 111 | |||
| 112 | const FFCodec ff_ac3_fixed_encoder = { | ||
| 113 | .p.name = "ac3_fixed", | ||
| 114 | CODEC_LONG_NAME("ATSC A/52A (AC-3)"), | ||
| 115 | .p.type = AVMEDIA_TYPE_AUDIO, | ||
| 116 | .p.id = AV_CODEC_ID_AC3, | ||
| 117 | .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE, | ||
| 118 | .priv_data_size = sizeof(AC3EncodeContext), | ||
| 119 | .init = ac3_fixed_encode_init, | ||
| 120 | FF_CODEC_ENCODE_CB(ff_ac3_encode_frame), | ||
| 121 | .close = ff_ac3_encode_close, | ||
| 122 | CODEC_SAMPLEFMTS(AV_SAMPLE_FMT_S32P), | ||
| 123 | .p.priv_class = &ff_ac3enc_class, | ||
| 124 | .caps_internal = FF_CODEC_CAP_INIT_CLEANUP, | ||
| 125 | CODEC_SAMPLERATES_ARRAY(ff_ac3_sample_rate_tab), | ||
| 126 | CODEC_CH_LAYOUTS_ARRAY(ff_ac3_ch_layouts), | ||
| 127 | .defaults = ff_ac3_enc_defaults, | ||
| 128 | }; | ||
| 129 |