FFmpeg
Loading...
Searching...
No Matches
ac3.h
Go to the documentation of this file.
1/*
2 * Common code between the AC-3 encoder and decoder
3 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22/**
23 * @file
24 * Common code between the AC-3 encoder and decoder.
25 */
26
27#ifndef AVCODEC_AC3_H
28#define AVCODEC_AC3_H
29
30#include <math.h>
31#include <stdint.h>
32
33#include "ac3tab.h"
34
35#ifndef USE_FIXED
36#define USE_FIXED 0
37#endif
38
39#if USE_FIXED
40
41#define FIXR(a) ((int)((a) * 0 + 0.5))
42#define FIXR12(a) ((int)((a) * 4096 + 0.5))
43#define FIXR15(a) ((int)((a) * 32768 + 0.5))
44#define ROUND15(x) ((x) + 16384) >> 15
45
46#define AC3_RENAME(x) x ## _fixed
47#define AC3_NORM(norm) (1<<24)/(norm)
48#define AC3_MUL(a,b) ((((int64_t) (a)) * (b))>>12)
49#define AC3_RANGE(x) ((x)|(((x)&128)<<1))
50#define AC3_HEAVY_RANGE(x) ((x)<<1)
51#define AC3_DYNAMIC_RANGE(x) (x)
52#define AC3_SPX_BLEND(x) (x)
53#define AC3_DYNAMIC_RANGE1 0
54
55typedef int INTFLOAT;
56typedef unsigned int UINTFLOAT;
57typedef int16_t SHORTFLOAT;
58
59#else /* USE_FIXED */
60#include "libavutil/libm.h"
61
62#define FIXR(x) ((float)(x))
63#define FIXR12(x) ((float)(x))
64#define FIXR15(x) ((float)(x))
65#define ROUND15(x) (x)
66
67#define AC3_RENAME(x) x
68#define AC3_NORM(norm) (1.0f/(norm))
69#define AC3_MUL(a,b) ((a) * (b))
70#define AC3_RANGE(x) (dynamic_range_tab[(x)])
71#define AC3_HEAVY_RANGE(x) (ff_ac3_heavy_dynamic_range_tab[(x)])
72#define AC3_DYNAMIC_RANGE(x) (powf(x, s->drc_scale))
73#define AC3_SPX_BLEND(x) (x)* (1.0f/32)
74#define AC3_DYNAMIC_RANGE1 1.0f
75
76typedef float INTFLOAT;
77typedef float UINTFLOAT;
78typedef float SHORTFLOAT;
79
80#endif /* USE_FIXED */
81
82#define AC3_LEVEL(x) ROUND15((x) * FIXR15(M_SQRT1_2))
83
90
91/**
92 * Calculate the log power-spectral density of the input signal.
93 * This gives a rough estimate of signal power in the frequency domain by using
94 * the spectral envelope (exponents). The psd is also separately grouped
95 * into critical bands for use in the calculating the masking curve.
96 * 128 units in psd = -6 dB. The dbknee parameter in AC3BitAllocParameters
97 * determines the reference level.
98 *
99 * @param[in] exp frequency coefficient exponents
100 * @param[in] start starting bin location
101 * @param[in] end ending bin location
102 * @param[out] psd signal power for each frequency bin
103 * @param[out] band_psd signal power for each critical band
104 */
105void ff_ac3_bit_alloc_calc_psd(int8_t *exp, int start, int end, int16_t *psd,
106 int16_t *band_psd);
107
108/**
109 * Calculate the masking curve.
110 * First, the excitation is calculated using parameters in s and the signal
111 * power in each critical band. The excitation is compared with a predefined
112 * hearing threshold table to produce the masking curve. If delta bit
113 * allocation information is provided, it is used for adjusting the masking
114 * curve, usually to give a closer match to a better psychoacoustic model.
115 *
116 * @param[in] s adjustable bit allocation parameters
117 * @param[in] band_psd signal power for each critical band
118 * @param[in] start starting bin location
119 * @param[in] end ending bin location
120 * @param[in] fast_gain fast gain (estimated signal-to-mask ratio)
121 * @param[in] is_lfe whether or not the channel being processed is the LFE
122 * @param[in] dba_mode delta bit allocation mode (none, reuse, or new)
123 * @param[in] dba_nsegs number of delta segments
124 * @param[in] dba_offsets location offsets for each segment
125 * @param[in] dba_lengths length of each segment
126 * @param[in] dba_values delta bit allocation for each segment
127 * @param[out] mask calculated masking curve
128 * @return returns 0 for success, non-zero for error
129 */
131 int start, int end, int fast_gain, int is_lfe,
132 int dba_mode, int dba_nsegs, uint8_t *dba_offsets,
133 uint8_t *dba_lengths, uint8_t *dba_values,
134 int16_t *mask);
135
136#endif /* AVCODEC_AC3_H */
float SHORTFLOAT
float UINTFLOAT
int ff_ac3_bit_alloc_calc_mask(AC3BitAllocParameters *s, int16_t *band_psd, int start, int end, int fast_gain, int is_lfe, int dba_mode, int dba_nsegs, uint8_t *dba_offsets, uint8_t *dba_lengths, uint8_t *dba_values, int16_t *mask)
Calculate the masking curve.
Definition ac3.c:201
void ff_ac3_bit_alloc_calc_psd(int8_t *exp, int start, int end, int16_t *psd, int16_t *band_psd)
Calculate the log power-spectral density of the input signal.
Definition ac3.c:175
#define s(width, name)
Definition cbs_vp9.c:198
#define INTFLOAT
int8_t exp
Definition eval.c:76
Replacements for frequently missing libm functions.
static const uint16_t mask[17]
Definition lzw.c:38