FFmpeg
adxdec.c
Go to the documentation of this file.
1 /*
2  * ADX ADPCM codecs
3  * Copyright (c) 2001,2003 BERO
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 #include "libavutil/attributes.h"
23 #include "libavutil/intreadwrite.h"
24 #include "avcodec.h"
25 #include "adx.h"
26 #include "codec_internal.h"
27 #include "decode.h"
28 #include "get_bits.h"
29 
30 /**
31  * @file
32  * SEGA CRI adx codecs.
33  *
34  * Reference documents:
35  * http://ku-www.ss.titech.ac.jp/~yatsushi/adx.html
36  * adx2wav & wav2adx http://www.geocities.co.jp/Playtown/2004/
37  */
38 
39 /**
40  * Decode ADX stream header.
41  * Sets avctx->channels and avctx->sample_rate.
42  *
43  * @param avctx codec context
44  * @param buf header data
45  * @param bufsize data size, should be at least 24 bytes
46  * @param[out] header_size size of ADX header
47  * @param[out] coeff 2 LPC coefficients, can be NULL
48  * @return data offset or negative error code if header is invalid
49  */
50 static int adx_decode_header(AVCodecContext *avctx, const uint8_t *buf,
51  int bufsize, int *header_size, int *coeff)
52 {
53  int offset, cutoff, channels;
54 
55  if (bufsize < 24)
56  return AVERROR_INVALIDDATA;
57 
58  if (AV_RB16(buf) != 0x8000)
59  return AVERROR_INVALIDDATA;
60  offset = AV_RB16(buf + 2) + 4;
61 
62  /* if copyright string is within the provided data, validate it */
63  if (bufsize >= offset && offset >= 6 && memcmp(buf + offset - 6, "(c)CRI", 6))
64  return AVERROR_INVALIDDATA;
65 
66  /* check for encoding=3 block_size=18, sample_size=4 */
67  if (buf[4] != 3 || buf[5] != 18 || buf[6] != 4) {
68  avpriv_request_sample(avctx, "Support for this ADX format");
69  return AVERROR_PATCHWELCOME;
70  }
71 
72  /* channels */
73  channels = buf[7];
75  return AVERROR_INVALIDDATA;
76 
77  if (avctx->ch_layout.nb_channels != channels) {
81  }
82 
83  /* sample rate */
84  avctx->sample_rate = AV_RB32(buf + 8);
85  if (avctx->sample_rate < 1 ||
86  avctx->sample_rate > INT_MAX / (channels * BLOCK_SIZE * 8))
87  return AVERROR_INVALIDDATA;
88 
89  /* bit rate */
90  avctx->bit_rate = avctx->sample_rate * channels * BLOCK_SIZE * 8 / BLOCK_SAMPLES;
91 
92  /* LPC coefficients */
93  if (coeff) {
94  cutoff = AV_RB16(buf + 16);
96  }
97 
98  *header_size = offset;
99  return 0;
100 }
101 
103 {
104  ADXContext *c = avctx->priv_data;
105  int ret, header_size;
106 
107  if (avctx->extradata_size >= 24) {
108  if ((ret = adx_decode_header(avctx, avctx->extradata,
109  avctx->extradata_size, &header_size,
110  c->coeff)) < 0) {
111  av_log(avctx, AV_LOG_ERROR, "error parsing ADX header\n");
112  return AVERROR_INVALIDDATA;
113  }
114  c->channels = avctx->ch_layout.nb_channels;
115  c->header_parsed = 1;
116  }
117 
119 
120  return 0;
121 }
122 
123 /**
124  * Decode 32 samples from 18 bytes.
125  *
126  * A 16-bit scalar value is applied to 32 residuals, which then have a
127  * 2nd-order LPC filter applied to it to form the output signal for a single
128  * channel.
129  */
130 static int adx_decode(ADXContext *c, int16_t *out, int offset,
131  const uint8_t *in, int ch)
132 {
133  ADXChannelState *prev = &c->prev[ch];
134  GetBitContext gb;
135  int scale = AV_RB16(in);
136  int i;
137  int s0, s1, s2, d;
138 
139  /* check if this is an EOF packet */
140  if (scale & 0x8000)
141  return -1;
142 
143  init_get_bits(&gb, in + 2, (BLOCK_SIZE - 2) * 8);
144  out += offset;
145  s1 = prev->s1;
146  s2 = prev->s2;
147  for (i = 0; i < BLOCK_SAMPLES; i++) {
148  d = get_sbits(&gb, 4);
149  s0 = d * scale + ((c->coeff[0] * s1 + c->coeff[1] * s2) >> COEFF_BITS);
150  s2 = s1;
151  s1 = av_clip_int16(s0);
152  *out++ = s1;
153  }
154  prev->s1 = s1;
155  prev->s2 = s2;
156 
157  return 0;
158 }
159 
161  int *got_frame_ptr, AVPacket *avpkt)
162 {
163  int buf_size = avpkt->size;
164  ADXContext *c = avctx->priv_data;
165  int16_t **samples;
166  int samples_offset;
167  const uint8_t *buf = avpkt->data;
168  const uint8_t *buf_end = buf + avpkt->size;
169  int num_blocks, ch, ret;
170  size_t new_extradata_size;
171  uint8_t *new_extradata;
172 
173  new_extradata = av_packet_get_side_data(avpkt, AV_PKT_DATA_NEW_EXTRADATA,
174  &new_extradata_size);
175  if (new_extradata && new_extradata_size > 0) {
176  int header_size;
177  if ((ret = adx_decode_header(avctx, new_extradata,
178  new_extradata_size, &header_size,
179  c->coeff)) < 0) {
180  av_log(avctx, AV_LOG_ERROR, "error parsing new ADX extradata\n");
181  return AVERROR_INVALIDDATA;
182  }
183 
184  c->eof = 0;
185  }
186 
187  if (c->eof) {
188  *got_frame_ptr = 0;
189  return buf_size;
190  }
191 
192  if (!c->header_parsed && buf_size >= 2 && AV_RB16(buf) == 0x8000) {
193  int header_size;
194  if ((ret = adx_decode_header(avctx, buf, buf_size, &header_size,
195  c->coeff)) < 0) {
196  av_log(avctx, AV_LOG_ERROR, "error parsing ADX header\n");
197  return AVERROR_INVALIDDATA;
198  }
199  c->channels = avctx->ch_layout.nb_channels;
200  c->header_parsed = 1;
201  if (buf_size < header_size)
202  return AVERROR_INVALIDDATA;
203  buf += header_size;
204  buf_size -= header_size;
205  }
206  if (!c->header_parsed)
207  return AVERROR_INVALIDDATA;
208 
209  /* calculate number of blocks in the packet */
210  num_blocks = buf_size / (BLOCK_SIZE * c->channels);
211 
212  /* if the packet is not an even multiple of BLOCK_SIZE, check for an EOF
213  packet */
214  if (!num_blocks || buf_size % (BLOCK_SIZE * c->channels)) {
215  if (buf_size >= 4 && (AV_RB16(buf) & 0x8000)) {
216  c->eof = 1;
217  *got_frame_ptr = 0;
218  return avpkt->size;
219  }
220  return AVERROR_INVALIDDATA;
221  }
222 
223  /* get output buffer */
224  frame->nb_samples = num_blocks * BLOCK_SAMPLES;
225  if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
226  return ret;
227  samples = (int16_t **)frame->extended_data;
228  samples_offset = 0;
229 
230  while (num_blocks--) {
231  for (ch = 0; ch < c->channels; ch++) {
232  if (buf_end - buf < BLOCK_SIZE || adx_decode(c, samples[ch], samples_offset, buf, ch)) {
233  c->eof = 1;
234  buf = avpkt->data + avpkt->size;
235  break;
236  }
237  buf_size -= BLOCK_SIZE;
238  buf += BLOCK_SIZE;
239  }
240  if (!c->eof)
241  samples_offset += BLOCK_SAMPLES;
242  }
243 
244  frame->nb_samples = samples_offset;
245  *got_frame_ptr = 1;
246 
247  return buf - avpkt->data;
248 }
249 
251 {
252  ADXContext *c = avctx->priv_data;
253  memset(c->prev, 0, sizeof(c->prev));
254  c->eof = 0;
255 }
256 
258  .p.name = "adpcm_adx",
259  CODEC_LONG_NAME("SEGA CRI ADX ADPCM"),
260  .p.type = AVMEDIA_TYPE_AUDIO,
261  .p.id = AV_CODEC_ID_ADPCM_ADX,
262  .priv_data_size = sizeof(ADXContext),
265  .flush = adx_decode_flush,
266  .p.capabilities = AV_CODEC_CAP_CHANNEL_CONF |
269 };
adx_decode_flush
static av_cold void adx_decode_flush(AVCodecContext *avctx)
Definition: adxdec.c:250
ADXChannelState::s2
int s2
Definition: adx.h:35
out
FILE * out
Definition: movenc.c:55
AVCodecContext::sample_rate
int sample_rate
samples per second
Definition: avcodec.h:1024
AV_PKT_DATA_NEW_EXTRADATA
@ AV_PKT_DATA_NEW_EXTRADATA
The AV_PKT_DATA_NEW_EXTRADATA is used to notify the codec or the format that the extradata buffer was...
Definition: packet.h:56
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:427
BLOCK_SAMPLES
#define BLOCK_SAMPLES
Definition: adxdec.c:32
AVPacket::data
uint8_t * data
Definition: packet.h:558
FFCodec
Definition: codec_internal.h:127
adx_decode
static int adx_decode(ADXContext *c, int16_t *out, int offset, const uint8_t *in, int ch)
Decode 32 samples from 18 bytes.
Definition: adxdec.c:130
AVChannelLayout::order
enum AVChannelOrder order
Channel order used in this layout.
Definition: channel_layout.h:324
AVChannelLayout::nb_channels
int nb_channels
Number of channels in this layout.
Definition: channel_layout.h:329
ADXChannelState::s1
int s1
Definition: adx.h:35
init_get_bits
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Definition: get_bits.h:512
FFCodec::p
AVCodec p
The public AVCodec.
Definition: codec_internal.h:131
AVCodecContext::ch_layout
AVChannelLayout ch_layout
Audio channel layout.
Definition: avcodec.h:1039
GetBitContext
Definition: get_bits.h:109
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:210
av_cold
#define av_cold
Definition: attributes.h:90
AVCodecContext::extradata_size
int extradata_size
Definition: avcodec.h:515
ff_adpcm_adx_decoder
const FFCodec ff_adpcm_adx_decoder
Definition: adxdec.c:257
BLOCK_SIZE
#define BLOCK_SIZE
Definition: adxdec.c:31
FF_CODEC_DECODE_CB
#define FF_CODEC_DECODE_CB(func)
Definition: codec_internal.h:346
intreadwrite.h
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:201
AV_CHANNEL_ORDER_UNSPEC
@ AV_CHANNEL_ORDER_UNSPEC
Only the channel count is specified, without any further information about the channel order.
Definition: channel_layout.h:119
get_sbits
static int get_sbits(GetBitContext *s, int n)
Definition: get_bits.h:318
channels
channels
Definition: aptx.h:31
decode.h
get_bits.h
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:331
av_clip_int16
#define av_clip_int16
Definition: common.h:115
AVERROR_PATCHWELCOME
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:64
AVCodecContext::bit_rate
int64_t bit_rate
the average bitrate
Definition: avcodec.h:481
c
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
Definition: undefined.txt:32
adx_decode_init
static av_cold int adx_decode_init(AVCodecContext *avctx)
Definition: adxdec.c:102
AV_CODEC_CAP_CHANNEL_CONF
#define AV_CODEC_CAP_CHANNEL_CONF
Codec should fill in channel configuration and samplerate instead of container.
Definition: codec.h:91
ff_adx_calculate_coeffs
void ff_adx_calculate_coeffs(int cutoff, int sample_rate, int bits, int *coeff)
Calculate LPC coefficients based on cutoff frequency and sample rate.
Definition: adx.c:25
ff_get_buffer
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition: decode.c:1720
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:368
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
AV_CODEC_ID_ADPCM_ADX
@ AV_CODEC_ID_ADPCM_ADX
Definition: codec_id.h:385
AVPacket::size
int size
Definition: packet.h:559
codec_internal.h
AVCodecContext::sample_fmt
enum AVSampleFormat sample_fmt
audio sample format
Definition: avcodec.h:1031
AV_RB32
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_RB32
Definition: bytestream.h:96
offset
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf offset
Definition: writing_filters.txt:86
attributes.h
CODEC_SAMPLEFMTS
#define CODEC_SAMPLEFMTS(...)
Definition: codec_internal.h:385
MAX_CHANNELS
#define MAX_CHANNELS
Definition: aac.h:33
AV_SAMPLE_FMT_S16P
@ AV_SAMPLE_FMT_S16P
signed 16 bits, planar
Definition: samplefmt.h:64
ADXChannelState
Definition: adx.h:34
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
adx_decode_header
static int adx_decode_header(AVCodecContext *avctx, const uint8_t *buf, int bufsize, int *header_size, int *coeff)
Decode ADX stream header.
Definition: adxdec.c:50
AVCodecContext::extradata
uint8_t * extradata
Out-of-band global headers that may be used by some codecs.
Definition: avcodec.h:514
av_packet_get_side_data
uint8_t * av_packet_get_side_data(const AVPacket *pkt, enum AVPacketSideDataType type, size_t *size)
Get side information from packet.
Definition: packet.c:253
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:179
avcodec.h
ret
ret
Definition: filter_design.txt:187
frame
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
Definition: filter_design.txt:265
AVCodecContext
main external API structure.
Definition: avcodec.h:431
av_channel_layout_uninit
void av_channel_layout_uninit(AVChannelLayout *channel_layout)
Free any allocated data in the channel layout and reset the channel count to 0.
Definition: channel_layout.c:442
samples
Filter the word “frame” indicates either a video frame or a group of audio samples
Definition: filter_design.txt:8
ADXContext
Definition: adx.h:40
COEFF_BITS
#define COEFF_BITS
Definition: adx.h:49
adx.h
avpriv_request_sample
#define avpriv_request_sample(...)
Definition: tableprint_vlc.h:37
scale
static void scale(int *out, const int *in, const int w, const int h, const int shift)
Definition: intra.c:273
AVPacket
This structure stores compressed data.
Definition: packet.h:535
AVCodecContext::priv_data
void * priv_data
Definition: avcodec.h:458
coeff
static const double coeff[2][5]
Definition: vf_owdenoise.c:80
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
adx_decode_frame
static int adx_decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame_ptr, AVPacket *avpkt)
Definition: adxdec.c:160
AV_RB16
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_WB24 unsigned int_TMPL AV_RB16
Definition: bytestream.h:98