FFmpeg
Loading...
Searching...
No Matches
aptxdec.c
Go to the documentation of this file.
1/*
2 * Audio Processing Technology codec for Bluetooth (aptX)
3 *
4 * Copyright (C) 2017 Aurelien Jacobs <aurel@gnuage.org>
5 *
6 * This file is part of FFmpeg.
7 *
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23#include "config_components.h"
24
26#include "aptx.h"
27#include "codec_internal.h"
28#include "decode.h"
29
30/*
31 * Half-band QMF synthesis filter realized with a polyphase FIR filter.
32 * Join 2 subbands and upsample by 2.
33 * So for each 2 subbands sample that goes in, a pair of samples goes out.
34 */
37 const int32_t coeffs[NB_FILTERS][FILTER_TAPS],
38 int shift,
39 int32_t low_subband_input,
40 int32_t high_subband_input,
41 int32_t samples[NB_FILTERS])
42{
44 int i;
45
46 subbands[0] = low_subband_input + high_subband_input;
47 subbands[1] = low_subband_input - high_subband_input;
48
49 for (i = 0; i < NB_FILTERS; i++) {
51 samples[i] = aptx_qmf_convolution(&signal[i], coeffs[i], shift);
52 }
53}
54
55/*
56 * Two stage QMF synthesis tree.
57 * Join 4 subbands and upsample by 4.
58 * So for each 4 subbands sample that goes in, a group of 4 samples goes out.
59 */
61 int32_t subband_samples[4],
62 int32_t samples[4])
63{
64 int32_t intermediate_samples[4];
65 int i;
66
67 /* Join 4 subbands into 2 intermediate subbands upsampled to 2 samples. */
68 for (i = 0; i < 2; i++)
71 subband_samples[2*i+0],
72 subband_samples[2*i+1],
73 &intermediate_samples[2*i]);
74
75 /* Join 2 samples from intermediate subbands upsampled to 4 samples. */
76 for (i = 0; i < 2; i++)
79 intermediate_samples[0+i],
80 intermediate_samples[2+i],
81 &samples[2*i]);
82}
83
84
85static void aptx_decode_channel(Channel *channel, int32_t samples[4])
86{
87 int32_t subband_samples[4];
88 int subband;
89 for (subband = 0; subband < NB_SUBBANDS; subband++)
90 subband_samples[subband] = channel->prediction[subband].previous_reconstructed_sample;
91 aptx_qmf_tree_synthesis(&channel->qmf, subband_samples, samples);
92}
93
94static void aptx_unpack_codeword(Channel *channel, uint16_t codeword)
95{
96 channel->quantize[0].quantized_sample = sign_extend(codeword >> 0, 7);
97 channel->quantize[1].quantized_sample = sign_extend(codeword >> 7, 4);
98 channel->quantize[2].quantized_sample = sign_extend(codeword >> 11, 2);
99 channel->quantize[3].quantized_sample = sign_extend(codeword >> 13, 3);
100 channel->quantize[3].quantized_sample = (channel->quantize[3].quantized_sample & ~1)
102}
103
104static void aptxhd_unpack_codeword(Channel *channel, uint32_t codeword)
105{
106 channel->quantize[0].quantized_sample = sign_extend(codeword >> 0, 9);
107 channel->quantize[1].quantized_sample = sign_extend(codeword >> 9, 6);
108 channel->quantize[2].quantized_sample = sign_extend(codeword >> 15, 4);
109 channel->quantize[3].quantized_sample = sign_extend(codeword >> 19, 5);
110 channel->quantize[3].quantized_sample = (channel->quantize[3].quantized_sample & ~1)
112}
113
115 const uint8_t *input,
116 int32_t samples[NB_CHANNELS][4])
117{
118 int channel, ret;
119
120 for (channel = 0; channel < NB_CHANNELS; channel++) {
122
123 if (ctx->hd)
125 AV_RB24(input + 3*channel));
126 else
127 aptx_unpack_codeword(&ctx->channels[channel],
128 AV_RB16(input + 2*channel));
130 }
131
132 ret = aptx_check_parity(ctx->channels, &ctx->sync_idx);
133
134 for (channel = 0; channel < NB_CHANNELS; channel++)
135 aptx_decode_channel(&ctx->channels[channel], samples[channel]);
136
137 return ret;
138}
139
141 int *got_frame_ptr, AVPacket *avpkt)
142{
143 AptXContext *s = avctx->priv_data;
144 int pos, opos, channel, sample, ret;
145
146 if (avpkt->size < s->block_size) {
147 av_log(avctx, AV_LOG_ERROR, "Packet is too small\n");
148 return AVERROR_INVALIDDATA;
149 }
150
151 /* get output buffer */
152 frame->ch_layout.nb_channels = NB_CHANNELS;
153 frame->format = AV_SAMPLE_FMT_S32P;
154 frame->nb_samples = 4 * (avpkt->size / s->block_size);
155 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
156 return ret;
157
158 for (pos = 0, opos = 0; opos < frame->nb_samples; pos += s->block_size, opos += 4) {
159 int32_t samples[NB_CHANNELS][4];
160
161 if (aptx_decode_samples(s, &avpkt->data[pos], samples)) {
162 av_log(avctx, AV_LOG_ERROR, "Synchronization error\n");
163 return AVERROR_INVALIDDATA;
164 }
165
166 for (channel = 0; channel < NB_CHANNELS; channel++)
167 for (sample = 0; sample < 4; sample++)
168 AV_WN32A(&frame->data[channel][4*(opos+sample)],
169 samples[channel][sample] * 256);
170 }
171
172 *got_frame_ptr = 1;
173 return s->block_size * frame->nb_samples / 4;
174}
175
176#if CONFIG_APTX_DECODER
177const FFCodec ff_aptx_decoder = {
178 .p.name = "aptx",
179 CODEC_LONG_NAME("aptX (Audio Processing Technology for Bluetooth)"),
180 .p.type = AVMEDIA_TYPE_AUDIO,
181 .p.id = AV_CODEC_ID_APTX,
182 .priv_data_size = sizeof(AptXContext),
185 .p.capabilities = AV_CODEC_CAP_DR1,
188};
189#endif
190
191#if CONFIG_APTX_HD_DECODER
193 .p.name = "aptx_hd",
194 CODEC_LONG_NAME("aptX HD (Audio Processing Technology for Bluetooth)"),
195 .p.type = AVMEDIA_TYPE_AUDIO,
196 .p.id = AV_CODEC_ID_APTX_HD,
197 .priv_data_size = sizeof(AptXContext),
200 .p.capabilities = AV_CODEC_CAP_DR1,
203};
204#endif
const FFCodec ff_aptx_hd_decoder
const FFCodec ff_aptx_decoder
static AVFormatContext * ctx
av_cold int ff_aptx_init(AVCodecContext *avctx)
Definition aptx.c:508
void ff_aptx_invert_quantize_and_prediction(Channel *channel, int hd)
Definition aptx.c:497
void ff_aptx_generate_dither(Channel *channel)
Definition aptx.c:385
#define NB_FILTERS
Definition aptx.h:45
static av_always_inline void aptx_qmf_filter_signal_push(FilterSignal *signal, int32_t sample)
Definition aptx.h:162
static const int32_t aptx_qmf_outer_coeffs[NB_FILTERS][FILTER_TAPS]
Definition aptx.h:132
static int aptx_check_parity(Channel channels[NB_CHANNELS], int32_t *idx)
Definition aptx.h:201
static int32_t aptx_quantized_parity(Channel *channel)
Definition aptx.h:188
static const int32_t aptx_qmf_inner_coeffs[NB_FILTERS][FILTER_TAPS]
Definition aptx.h:147
@ NB_CHANNELS
Definition aptx.h:34
static av_always_inline int32_t aptx_qmf_convolution(FilterSignal *signal, const int32_t coeffs[FILTER_TAPS], int shift)
Definition aptx.h:174
#define FILTER_TAPS
Definition aptx.h:46
subbands
Definition aptx.h:37
@ NB_SUBBANDS
Definition aptx.h:42
int32_t
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
Public libavutil channel layout APIs header.
#define CODEC_CH_LAYOUTS(...)
#define FF_CODEC_DECODE_CB(func)
#define CODEC_LONG_NAME(str)
#define CODEC_SAMPLEFMTS(...)
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition decode.c:1777
static AVFrame * frame
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
channel
Use these values when setting the channel map with ebur128_set_channel().
Definition ebur128.h:39
#define sample
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition codec.h:49
@ AV_CODEC_ID_APTX
Definition codec_id.h:538
@ AV_CODEC_ID_APTX_HD
Definition codec_id.h:539
#define AV_CHANNEL_LAYOUT_STEREO
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
@ AV_SAMPLE_FMT_S32P
signed 32 bits, planar
Definition samplefmt.h:65
#define AV_WN32A(p, v)
#define AV_RB24(x)
#define AV_RB16(p)
static void aptx_decode_channel(Channel *channel, int32_t samples[4])
Definition aptxdec.c:85
static int aptx_decode_samples(AptXContext *ctx, const uint8_t *input, int32_t samples[NB_CHANNELS][4])
Definition aptxdec.c:114
static void aptx_qmf_tree_synthesis(QMFAnalysis *qmf, int32_t subband_samples[4], int32_t samples[4])
Definition aptxdec.c:60
static int aptx_decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame_ptr, AVPacket *avpkt)
Definition aptxdec.c:140
static void aptxhd_unpack_codeword(Channel *channel, uint32_t codeword)
Definition aptxdec.c:104
static void aptx_unpack_codeword(Channel *channel, uint16_t codeword)
Definition aptxdec.c:94
static av_always_inline void aptx_qmf_polyphase_synthesis(FilterSignal signal[NB_FILTERS], const int32_t coeffs[NB_FILTERS][FILTER_TAPS], int shift, int32_t low_subband_input, int32_t high_subband_input, int32_t samples[NB_FILTERS])
Definition aptxdec.c:36
static int shift(int a, int b)
Definition bonk.c:261
#define av_always_inline
Definition attributes.h:72
static av_const int sign_extend(int val, unsigned bits)
Definition mathops.h:135
unsigned int pos
Definition spdifenc.c:431
main external API structure.
Definition avcodec.h:443
void * priv_data
Definition avcodec.h:470
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
This structure stores compressed data.
Definition packet.h:580
int size
Definition packet.h:604
uint8_t * data
Definition packet.h:603
Definition aptx.h:81
FilterSignal inner_filter_signal[NB_FILTERS][NB_FILTERS]
Definition aptx.h:55
FilterSignal outer_filter_signal[NB_FILTERS]
Definition aptx.h:54
#define av_log(a,...)