Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
52867 views
1
/*
2
* AAC encoder
3
* Copyright (C) 2008 Konstantin Shishkov
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
#ifndef AVCODEC_AACENC_H
23
#define AVCODEC_AACENC_H
24
25
#include "libavutil/float_dsp.h"
26
#include "libavutil/lfg.h"
27
#include "avcodec.h"
28
#include "put_bits.h"
29
30
#include "aac.h"
31
#include "audio_frame_queue.h"
32
#include "psymodel.h"
33
34
#include "lpc.h"
35
36
typedef enum AACCoder {
37
AAC_CODER_ANMR = 0,
38
AAC_CODER_TWOLOOP,
39
AAC_CODER_FAST,
40
41
AAC_CODER_NB,
42
}AACCoder;
43
44
typedef struct AACEncOptions {
45
int coder;
46
int pns;
47
int tns;
48
int ltp;
49
int pred;
50
int mid_side;
51
int intensity_stereo;
52
} AACEncOptions;
53
54
struct AACEncContext;
55
56
typedef struct AACCoefficientsEncoder {
57
void (*search_for_quantizers)(AVCodecContext *avctx, struct AACEncContext *s,
58
SingleChannelElement *sce, const float lambda);
59
void (*encode_window_bands_info)(struct AACEncContext *s, SingleChannelElement *sce,
60
int win, int group_len, const float lambda);
61
void (*quantize_and_encode_band)(struct AACEncContext *s, PutBitContext *pb, const float *in, float *out, int size,
62
int scale_idx, int cb, const float lambda, int rtz);
63
void (*encode_tns_info)(struct AACEncContext *s, SingleChannelElement *sce);
64
void (*encode_ltp_info)(struct AACEncContext *s, SingleChannelElement *sce, int common_window);
65
void (*encode_main_pred)(struct AACEncContext *s, SingleChannelElement *sce);
66
void (*adjust_common_pred)(struct AACEncContext *s, ChannelElement *cpe);
67
void (*adjust_common_ltp)(struct AACEncContext *s, ChannelElement *cpe);
68
void (*apply_main_pred)(struct AACEncContext *s, SingleChannelElement *sce);
69
void (*apply_tns_filt)(struct AACEncContext *s, SingleChannelElement *sce);
70
void (*update_ltp)(struct AACEncContext *s, SingleChannelElement *sce);
71
void (*ltp_insert_new_frame)(struct AACEncContext *s);
72
void (*set_special_band_scalefactors)(struct AACEncContext *s, SingleChannelElement *sce);
73
void (*search_for_pns)(struct AACEncContext *s, AVCodecContext *avctx, SingleChannelElement *sce);
74
void (*mark_pns)(struct AACEncContext *s, AVCodecContext *avctx, SingleChannelElement *sce);
75
void (*search_for_tns)(struct AACEncContext *s, SingleChannelElement *sce);
76
void (*search_for_ltp)(struct AACEncContext *s, SingleChannelElement *sce, int common_window);
77
void (*search_for_ms)(struct AACEncContext *s, ChannelElement *cpe);
78
void (*search_for_is)(struct AACEncContext *s, AVCodecContext *avctx, ChannelElement *cpe);
79
void (*search_for_pred)(struct AACEncContext *s, SingleChannelElement *sce);
80
} AACCoefficientsEncoder;
81
82
extern AACCoefficientsEncoder ff_aac_coders[];
83
84
typedef struct AACQuantizeBandCostCacheEntry {
85
float rd;
86
float energy;
87
int bits; ///< -1 means uninitialized entry
88
char cb;
89
char rtz;
90
char padding[2]; ///< Keeps the entry size a multiple of 32 bits
91
} AACQuantizeBandCostCacheEntry;
92
93
/**
94
* AAC encoder context
95
*/
96
typedef struct AACEncContext {
97
AVClass *av_class;
98
AACEncOptions options; ///< encoding options
99
PutBitContext pb;
100
FFTContext mdct1024; ///< long (1024 samples) frame transform context
101
FFTContext mdct128; ///< short (128 samples) frame transform context
102
AVFloatDSPContext *fdsp;
103
AVLFG lfg; ///< PRNG needed for PNS
104
float *planar_samples[8]; ///< saved preprocessed input
105
106
int profile; ///< copied from avctx
107
LPCContext lpc; ///< used by TNS
108
int samplerate_index; ///< MPEG-4 samplerate index
109
int channels; ///< channel count
110
const uint8_t *chan_map; ///< channel configuration map
111
112
ChannelElement *cpe; ///< channel elements
113
FFPsyContext psy;
114
struct FFPsyPreprocessContext* psypp;
115
AACCoefficientsEncoder *coder;
116
int cur_channel; ///< current channel for coder context
117
int last_frame;
118
int random_state;
119
float lambda;
120
int last_frame_pb_count; ///< number of bits for the previous frame
121
float lambda_sum; ///< sum(lambda), for Qvg reporting
122
int lambda_count; ///< count(lambda), for Qvg reporting
123
enum RawDataBlockType cur_type; ///< channel group type cur_channel belongs to
124
125
AudioFrameQueue afq;
126
DECLARE_ALIGNED(16, int, qcoefs)[96]; ///< quantized coefficients
127
DECLARE_ALIGNED(32, float, scoefs)[1024]; ///< scaled coefficients
128
129
AACQuantizeBandCostCacheEntry quantize_band_cost_cache[256][128]; ///< memoization area for quantize_band_cost
130
131
struct {
132
float *samples;
133
} buffer;
134
} AACEncContext;
135
136
void ff_aac_coder_init_mips(AACEncContext *c);
137
void ff_quantize_band_cost_cache_init(struct AACEncContext *s);
138
139
140
#endif /* AVCODEC_AACENC_H */
141
142