forked from mixxxdj/mixxx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathencodermp3.cpp
More file actions
264 lines (228 loc) · 8.54 KB
/
Copy pathencodermp3.cpp
File metadata and controls
264 lines (228 loc) · 8.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
#include "encoder/encodermp3.h"
#include <limits.h>
#include <QObject>
#include <QtDebug>
#include "audio/types.h"
#include "encoder/encodercallback.h"
#include "encoder/encodermp3settings.h"
// Automatic thresholds for switching the encoder to mono
// They have been chosen by testing and to keep the same number
// of values for the slider.
// The threshold of bitrate (CBR/ABR) at which the encoder
// with switch to mono encoding
const int EncoderMp3::MONO_BITRATE_THRESHOLD = 100;
// The threshold of quality (VBR) at which the encoder
// with switch to mono encoding. Values from 0 to 6 encode at 44Khz
const int EncoderMp3::MONO_VBR_THRESHOLD = 8;
// Quality offset to subtract to the quality value when
// switching to mono encoding.
const int EncoderMp3::MONO_VBR_OFFSET = 4;
EncoderMp3::EncoderMp3(EncoderCallback* pCallback)
: m_lameFlags(nullptr),
m_bitrate(128),
m_bufferOut(nullptr),
m_bufferOutSize(0),
m_bufferIn{nullptr, nullptr},
m_bufferInSize(0),
m_pCallback(pCallback) {
}
EncoderMp3::~EncoderMp3() {
flush();
if (m_lameFlags != nullptr) {
lame_close(m_lameFlags);
}
// free requested buffers
if (m_bufferIn[0] != nullptr) {
free(m_bufferIn[0]);
}
if (m_bufferIn[1] != nullptr) {
free(m_bufferIn[1]);
}
if (m_bufferOut != nullptr) {
free(m_bufferOut);
}
}
void EncoderMp3::setEncoderSettings(const EncoderSettings& settings) {
m_bitrate = settings.getQuality();
int modeoption = settings.getSelectedOption(EncoderMp3Settings::ENCODING_MODE_GROUP);
m_encoding_mode = (modeoption==0) ? vbr_off : (modeoption==1) ? vbr_abr : vbr_default;
if (m_encoding_mode == vbr_off) {
if (m_bitrate > MONO_BITRATE_THRESHOLD ) {
m_stereo_mode = JOINT_STEREO;
} else {
m_stereo_mode = MONO;
}
} else {
// Inverting range: vbr 0 best, 9 worst. slider 0 min to max.
int val = settings.getQualityValues().size() - 1 - settings.getQualityIndex();
if (val < MONO_VBR_THRESHOLD) {
m_stereo_mode = JOINT_STEREO;
m_vbr_index = val;
} else {
m_vbr_index = val-4;
m_stereo_mode = MONO;
}
}
// Check if the user has forced a stereo mode.
switch (settings.getChannelMode()) {
case EncoderSettings::ChannelMode::MONO: m_stereo_mode = MONO; break;
case EncoderSettings::ChannelMode::STEREO: m_stereo_mode = JOINT_STEREO; break;
default: break;
}
}
int EncoderMp3::bufferOutGrow(std::size_t bufferSize) {
if (m_bufferOutSize >= bufferSize) {
return 0;
}
m_bufferOut = (unsigned char*)realloc(m_bufferOut, bufferSize);
if (m_bufferOut == nullptr) {
return -1;
}
m_bufferOutSize = bufferSize;
return 0;
}
int EncoderMp3::bufferInGrow(std::size_t bufferSize) {
if (m_bufferInSize >= bufferSize) {
return 0;
}
m_bufferIn[0] = (float*)realloc(m_bufferIn[0], bufferSize * sizeof(float));
m_bufferIn[1] = (float*)realloc(m_bufferIn[1], bufferSize * sizeof(float));
if ((m_bufferIn[0] == nullptr) || (m_bufferIn[1] == nullptr)) {
return -1;
}
m_bufferInSize = bufferSize;
return 0;
}
// Using this method requires to call method 'write()' or 'sendPackages()'
// depending on which context you use the class (broadcast or recording to HDD)
void EncoderMp3::flush() {
if (m_lameFlags == nullptr) {
return;
}
// Flush also writes ID3 tags.
int rc = lame_encode_flush(m_lameFlags, m_bufferOut, static_cast<int>(m_bufferOutSize));
if (rc < 0) {
return;
}
// end encoded audio to broadcast or file
m_pCallback->write(nullptr, m_bufferOut, 0, rc);
// `lame_get_lametag_frame` returns the number of bytes copied into buffer,
// or the required buffer size, if the provided buffer is too small.
// Function failed, if the return value is larger than `m_bufferOutSize`!
std::size_t numBytes =
lame_get_lametag_frame(m_lameFlags, m_bufferOut, m_bufferOutSize);
if (numBytes > m_bufferOutSize) {
bufferOutGrow(numBytes);
numBytes = lame_get_lametag_frame(
m_lameFlags, m_bufferOut, m_bufferOutSize);
}
// Write the lame/xing header.
m_pCallback->seek(0);
m_pCallback->write(nullptr, m_bufferOut, 0, static_cast<int>(numBytes));
}
void EncoderMp3::encodeBuffer(const CSAMPLE* samples, const std::size_t bufferSize) {
if (m_lameFlags == nullptr) {
return;
}
std::size_t outsize = 0;
int rc = 0;
outsize = (int)((1.25 * bufferSize + 7200) + 1);
bufferOutGrow(outsize);
bufferInGrow(bufferSize);
// Deinterleave samples. We use normalized floats in the engine [-1.0, 1.0]
// but LAME expects samples in the range [SHRT_MIN, SHRT_MAX].
for (std::size_t i = 0; i < bufferSize / 2; ++i) {
m_bufferIn[0][i] = samples[i*2] * SHRT_MAX;
m_bufferIn[1][i] = samples[i*2+1] * SHRT_MAX;
}
rc = lame_encode_buffer_float(m_lameFlags,
m_bufferIn[0],
m_bufferIn[1],
static_cast<int>(bufferSize / 2),
m_bufferOut,
static_cast<int>(m_bufferOutSize));
if (rc < 0) {
return;
}
//write encoded audio to broadcast stream or file
m_pCallback->write(nullptr, m_bufferOut, 0, rc);
}
void EncoderMp3::initStream() {
m_bufferOutSize = (size_t)((1.25 * 20000 + 7200) + 1);
m_bufferOut = (unsigned char *)malloc(m_bufferOutSize);
m_bufferIn[0] = (float *)malloc(m_bufferOutSize * sizeof(float));
m_bufferIn[1] = (float *)malloc(m_bufferOutSize * sizeof(float));
}
int EncoderMp3::initEncoder(mixxx::audio::SampleRate sampleRate,
QString* pUserErrorMessage) {
unsigned long samplerate_in = sampleRate;
// samplerate_out 0 means "let LAME pick the appropriate one"
unsigned long samplerate_out = (samplerate_in > 48000 ? 48000 : 0);
m_lameFlags = lame_init();
if (m_lameFlags == nullptr) {
qDebug() << "Unable to initialize lame";
if (pUserErrorMessage) {
*pUserErrorMessage = QObject::tr(
"MP3 encoding is not supported. Lame could not be "
"initialized");
}
return -1;
}
lame_set_in_samplerate(m_lameFlags, samplerate_in);
lame_set_out_samplerate(m_lameFlags, samplerate_out);
// Input channels into the encoder
int channels = (m_stereo_mode == MONO) ? 1 : 2;
lame_set_num_channels(m_lameFlags, channels);
// Output channels (on the mp3 file)
// mode = 0,1,2,3 = stereo, jstereo, dual channel (not supported), mono
// Note: JOINT_STEREO is not "forced joint stereo" (That is lame_set_force_ms )
if (channels == 1) {
m_stereo_mode = MONO;
qDebug() << "EncoderMp3: forcing MONO (channels = 1)";
} else {
// channels == 2
m_stereo_mode = JOINT_STEREO;
qDebug() << "EncoderMp3: stereo encoding (channels = 2)";
}
lame_set_mode(m_lameFlags, m_stereo_mode);
qDebug() << "EncoderMp3::initEncoder"
<< "sampleRate =" << samplerate_in
<< "channels =" << channels
<< "mode =" << m_stereo_mode;
if (m_encoding_mode == vbr_off) {
qDebug() << " CBR mode with bitrate: " << m_bitrate;
lame_set_brate(m_lameFlags, m_bitrate);
} else if (m_encoding_mode == vbr_abr) {
qDebug() << " ABR mode with bitrate: " << m_bitrate;
lame_set_VBR(m_lameFlags, vbr_abr);
lame_set_VBR_mean_bitrate_kbps(m_lameFlags, m_bitrate);
} else {
qDebug() << " VBR mode with value: " << m_vbr_index;
lame_set_VBR(m_lameFlags, vbr_default);
lame_set_VBR_q(m_lameFlags, m_vbr_index);
}
lame_set_quality(m_lameFlags, 2);
//ID3 Tag if fields are not NULL
id3tag_init(m_lameFlags);
if (!m_metaDataTitle.isEmpty()) {
id3tag_set_title(m_lameFlags, m_metaDataTitle.toLatin1().constData());
}
if (!m_metaDataArtist.isEmpty()) {
id3tag_set_artist(m_lameFlags, m_metaDataArtist.toLatin1().constData());
}
if (!m_metaDataAlbum.isEmpty()) {
id3tag_set_album(m_lameFlags,m_metaDataAlbum.toLatin1().constData());
}
int ret = lame_init_params(m_lameFlags);
if (ret < 0) {
qDebug() << "Unable to initialize MP3 parameters. return code:" << ret;
return -1;
}
initStream();
return 0;
}
void EncoderMp3::updateMetaData(const QString& artist, const QString& title, const QString& album) {
m_metaDataTitle = title;
m_metaDataArtist = artist;
m_metaDataAlbum = album;
}