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 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
|
/*
* Bluetooth low-complexity, subband codec (SBC)
*
* Copyright (C) 2017 Aurelien Jacobs <aurel@gnuage.org>
* Copyright (C) 2012-2013 Intel Corporation
* Copyright (C) 2008-2010 Nokia Corporation
* Copyright (C) 2004-2010 Marcel Holtmann <marcel@holtmann.org>
* Copyright (C) 2004-2005 Henryk Ploetz <henryk@ploetzli.ch>
* Copyright (C) 2005-2008 Brad Midgley <bmidgley@xmission.com>
*
* 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
* SBC encoder implementation
*/
#include "libavutil/channel_layout.h"
#include "libavutil/emms.h"
#include "libavutil/opt.h"
#include "avcodec.h"
#include "codec_internal.h"
#include "encode.h"
#include "profiles.h"
#include "put_bits.h"
#include "sbc.h"
#include "sbcdsp.h"
typedef struct SBCEncContext {
AVClass *class;
int64_t max_delay;
int msbc;
DECLARE_ALIGNED(SBC_ALIGN, struct sbc_frame, frame);
DECLARE_ALIGNED(SBC_ALIGN, SBCDSPContext, dsp);
} SBCEncContext;
static const int sbc_samplerates[] = { 16000, 32000, 44100, 48000, 0 };
static int sbc_analyze_audio(SBCDSPContext *s, struct sbc_frame *frame)
{
int ch, blk;
int16_t *x;
switch (frame->subbands) {
case 4:
for (ch = 0; ch < frame->channels; ch++) {
x = &s->X[ch][s->position - 4 *
s->increment + frame->blocks * 4];
for (blk = 0; blk < frame->blocks;
blk += s->increment) {
s->sbc_analyze_4s(
s, x,
frame->sb_sample_f[blk][ch],
frame->sb_sample_f[blk + 1][ch] -
frame->sb_sample_f[blk][ch]);
x -= 4 * s->increment;
}
}
return frame->blocks * 4;
case 8:
for (ch = 0; ch < frame->channels; ch++) {
x = &s->X[ch][s->position - 8 *
s->increment + frame->blocks * 8];
for (blk = 0; blk < frame->blocks;
blk += s->increment) {
s->sbc_analyze_8s(
s, x,
frame->sb_sample_f[blk][ch],
frame->sb_sample_f[blk + 1][ch] -
frame->sb_sample_f[blk][ch]);
x -= 8 * s->increment;
}
}
return frame->blocks * 8;
default:
return AVERROR(EIO);
}
}
/*
* Packs the SBC frame from frame into the memory in avpkt.
* Returns the length of the packed frame.
*/
static size_t sbc_pack_frame(AVPacket *avpkt, struct sbc_frame *frame,
int joint, int msbc)
{
PutBitContext pb;
/* Will copy the header parts for CRC-8 calculation here */
uint8_t crc_header[11] = { 0 };
int crc_pos;
uint32_t audio_sample;
int ch, sb, blk; /* channel, subband, block and bit counters */
int bits[2][8]; /* bits distribution */
uint32_t levels[2][8]; /* levels are derived from that */
uint32_t sb_sample_delta[2][8];
if (msbc) {
avpkt->data[0] = MSBC_SYNCWORD;
avpkt->data[1] = 0;
avpkt->data[2] = 0;
} else {
avpkt->data[0] = SBC_SYNCWORD;
avpkt->data[1] = (frame->frequency & 0x03) << 6;
avpkt->data[1] |= (((frame->blocks >> 2) - 1) & 0x03) << 4;
avpkt->data[1] |= (frame->mode & 0x03) << 2;
avpkt->data[1] |= (frame->allocation & 0x01) << 1;
avpkt->data[1] |= ((frame->subbands == 8) & 0x01) << 0;
avpkt->data[2] = frame->bitpool;
if (frame->bitpool > frame->subbands << (4 + (frame->mode == STEREO
|| frame->mode == JOINT_STEREO)))
return -5;
}
/* Can't fill in crc yet */
crc_header[0] = avpkt->data[1];
crc_header[1] = avpkt->data[2];
crc_pos = 16;
init_put_bits(&pb, avpkt->data + 4, avpkt->size);
if (frame->mode == JOINT_STEREO) {
put_bits(&pb, frame->subbands, joint);
crc_header[crc_pos >> 3] = joint;
crc_pos += frame->subbands;
}
for (ch = 0; ch < frame->channels; ch++) {
for (sb = 0; sb < frame->subbands; sb++) {
put_bits(&pb, 4, frame->scale_factor[ch][sb] & 0x0F);
crc_header[crc_pos >> 3] <<= 4;
crc_header[crc_pos >> 3] |= frame->scale_factor[ch][sb] & 0x0F;
crc_pos += 4;
}
}
/* align the last crc byte */
if (crc_pos % 8)
crc_header[crc_pos >> 3] <<= 8 - (crc_pos % 8);
avpkt->data[3] = ff_sbc_crc8(frame->crc_ctx, crc_header, crc_pos);
ff_sbc_calculate_bits(frame, bits);
for (ch = 0; ch < frame->channels; ch++) {
for (sb = 0; sb < frame->subbands; sb++) {
levels[ch][sb] = ((1 << bits[ch][sb]) - 1) <<
(32 - (frame->scale_factor[ch][sb] +
SCALE_OUT_BITS + 2));
sb_sample_delta[ch][sb] = (uint32_t) 1 <<
(frame->scale_factor[ch][sb] +
SCALE_OUT_BITS + 1);
}
}
for (blk = 0; blk < frame->blocks; blk++) {
for (ch = 0; ch < frame->channels; ch++) {
for (sb = 0; sb < frame->subbands; sb++) {
if (bits[ch][sb] == 0)
continue;
audio_sample = ((uint64_t) levels[ch][sb] *
(sb_sample_delta[ch][sb] +
frame->sb_sample_f[blk][ch][sb])) >> 32;
put_bits(&pb, bits[ch][sb], audio_sample);
}
}
}
flush_put_bits(&pb);
return put_bytes_output(&pb);
}
static av_cold int sbc_encode_init(AVCodecContext *avctx)
{
SBCEncContext *sbc = avctx->priv_data;
struct sbc_frame *frame = &sbc->frame;
if (avctx->profile == AV_PROFILE_SBC_MSBC)
sbc->msbc = 1;
if (sbc->msbc) {
if (avctx->ch_layout.nb_channels != 1) {
av_log(avctx, AV_LOG_ERROR, "mSBC require mono channel.\n");
return AVERROR(EINVAL);
}
if (avctx->sample_rate != 16000) {
av_log(avctx, AV_LOG_ERROR, "mSBC require 16 kHz samplerate.\n");
return AVERROR(EINVAL);
}
frame->mode = SBC_MODE_MONO;
frame->subbands = 8;
frame->blocks = MSBC_BLOCKS;
frame->allocation = SBC_AM_LOUDNESS;
frame->bitpool = 26;
avctx->frame_size = 8 * MSBC_BLOCKS;
} else {
int d;
if (avctx->global_quality > 255*FF_QP2LAMBDA) {
av_log(avctx, AV_LOG_ERROR, "bitpool > 255 is not allowed.\n");
return AVERROR(EINVAL);
}
if (avctx->ch_layout.nb_channels == 1) {
frame->mode = SBC_MODE_MONO;
if (sbc->max_delay <= 3000 || avctx->bit_rate > 270000)
frame->subbands = 4;
else
frame->subbands = 8;
} else {
if (avctx->bit_rate < 180000 || avctx->bit_rate > 420000)
frame->mode = SBC_MODE_JOINT_STEREO;
else
frame->mode = SBC_MODE_STEREO;
if (sbc->max_delay <= 4000 || avctx->bit_rate > 420000)
frame->subbands = 4;
else
frame->subbands = 8;
}
/* sbc algorithmic delay is ((blocks + 10) * subbands - 2) / sample_rate */
frame->blocks = av_clip(((sbc->max_delay * avctx->sample_rate + 2)
/ (1000000 * frame->subbands)) - 10, 4, 16) & ~3;
frame->allocation = SBC_AM_LOUDNESS;
d = frame->blocks * ((frame->mode == SBC_MODE_DUAL_CHANNEL) + 1);
frame->bitpool = (((avctx->bit_rate * frame->subbands * frame->blocks) / avctx->sample_rate)
- 4 * frame->subbands * avctx->ch_layout.nb_channels
- (frame->mode == SBC_MODE_JOINT_STEREO)*frame->subbands - 32 + d/2) / d;
if (avctx->global_quality > 0)
frame->bitpool = avctx->global_quality / FF_QP2LAMBDA;
avctx->frame_size = 4*((frame->subbands >> 3) + 1) * 4*(frame->blocks >> 2);
}
for (int i = 0; sbc_samplerates[i]; i++)
if (avctx->sample_rate == sbc_samplerates[i])
frame->frequency = i;
frame->channels = avctx->ch_layout.nb_channels;
frame->codesize = frame->subbands * frame->blocks * avctx->ch_layout.nb_channels * 2;
frame->crc_ctx = av_crc_get_table(AV_CRC_8_EBU);
memset(&sbc->dsp.X, 0, sizeof(sbc->dsp.X));
sbc->dsp.position = (SBC_X_BUFFER_SIZE - frame->subbands * 9) & ~7;
sbc->dsp.increment = sbc->msbc ? 1 : 4;
ff_sbcdsp_init(&sbc->dsp);
return 0;
}
static int sbc_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
const AVFrame *av_frame, int *got_packet_ptr)
{
SBCEncContext *sbc = avctx->priv_data;
struct sbc_frame *frame = &sbc->frame;
uint8_t joint = frame->mode == SBC_MODE_JOINT_STEREO;
uint8_t dual = frame->mode == SBC_MODE_DUAL_CHANNEL;
int ret, j = 0;
int frame_length = 4 + (4 * frame->subbands * frame->channels) / 8
+ ((frame->blocks * frame->bitpool * (1 + dual)
+ joint * frame->subbands) + 7) / 8;
/* input must be large enough to encode a complete frame */
if (av_frame->nb_samples * frame->channels * 2 < frame->codesize)
return 0;
if ((ret = ff_get_encode_buffer(avctx, avpkt, frame_length, 0)) < 0)
return ret;
/* Select the needed input data processing function and call it */
if (frame->subbands == 8)
sbc->dsp.position = sbc->dsp.sbc_enc_process_input_8s(
sbc->dsp.position, av_frame->data[0], sbc->dsp.X,
frame->subbands * frame->blocks, frame->channels);
else
sbc->dsp.position = sbc->dsp.sbc_enc_process_input_4s(
sbc->dsp.position, av_frame->data[0], sbc->dsp.X,
frame->subbands * frame->blocks, frame->channels);
sbc_analyze_audio(&sbc->dsp, &sbc->frame);
if (frame->mode == JOINT_STEREO)
j = sbc->dsp.sbc_calc_scalefactors_j(frame->sb_sample_f,
frame->scale_factor,
frame->blocks,
frame->subbands);
else
sbc->dsp.sbc_calc_scalefactors(frame->sb_sample_f,
frame->scale_factor,
frame->blocks,
frame->channels,
frame->subbands);
emms_c();
sbc_pack_frame(avpkt, frame, j, sbc->msbc);
*got_packet_ptr = 1;
return 0;
}
#define OFFSET(x) offsetof(SBCEncContext, x)
#define AE AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
static const AVOption options[] = {
{ "sbc_delay", "set maximum algorithmic latency",
OFFSET(max_delay), AV_OPT_TYPE_DURATION, {.i64 = 13000}, 1000,13000, AE },
{ "msbc", "use mSBC mode (wideband speech mono SBC)",
OFFSET(msbc), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, AE },
FF_AVCTX_PROFILE_OPTION("msbc", NULL, AUDIO, AV_PROFILE_SBC_MSBC)
{ NULL },
};
static const AVClass sbc_class = {
.class_name = "sbc encoder",
.item_name = av_default_item_name,
.option = options,
.version = LIBAVUTIL_VERSION_INT,
};
const FFCodec ff_sbc_encoder = {
.p.name = "sbc",
CODEC_LONG_NAME("SBC (low-complexity subband codec)"),
.p.type = AVMEDIA_TYPE_AUDIO,
.p.id = AV_CODEC_ID_SBC,
.p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_SMALL_LAST_FRAME |
AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE,
.priv_data_size = sizeof(SBCEncContext),
.init = sbc_encode_init,
FF_CODEC_ENCODE_CB(sbc_encode_frame),
CODEC_CH_LAYOUTS(AV_CHANNEL_LAYOUT_MONO, AV_CHANNEL_LAYOUT_STEREO),
CODEC_SAMPLEFMTS(AV_SAMPLE_FMT_S16),
CODEC_SAMPLERATES_ARRAY(sbc_samplerates),
.p.priv_class = &sbc_class,
.p.profiles = NULL_IF_CONFIG_SMALL(ff_sbc_profiles),
};
|