Libav
adxenc.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 Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #include "avcodec.h"
23 #include "adx.h"
24 #include "bytestream.h"
25 #include "internal.h"
26 #include "put_bits.h"
27 
37 static void adx_encode(ADXContext *c, uint8_t *adx, const int16_t *wav,
38  ADXChannelState *prev, int channels)
39 {
40  PutBitContext pb;
41  int scale;
42  int i, j;
43  int s0, s1, s2, d;
44  int max = 0;
45  int min = 0;
46  int data[BLOCK_SAMPLES];
47 
48  s1 = prev->s1;
49  s2 = prev->s2;
50  for (i = 0, j = 0; j < 32; i += channels, j++) {
51  s0 = wav[i];
52  d = ((s0 << COEFF_BITS) - c->coeff[0] * s1 - c->coeff[1] * s2) >> COEFF_BITS;
53  data[j] = d;
54  if (max < d)
55  max = d;
56  if (min > d)
57  min = d;
58  s2 = s1;
59  s1 = s0;
60  }
61  prev->s1 = s1;
62  prev->s2 = s2;
63 
64  if (max == 0 && min == 0) {
65  memset(adx, 0, BLOCK_SIZE);
66  return;
67  }
68 
69  if (max / 7 > -min / 8)
70  scale = max / 7;
71  else
72  scale = -min / 8;
73 
74  if (scale == 0)
75  scale = 1;
76 
77  AV_WB16(adx, scale);
78 
79  init_put_bits(&pb, adx + 2, 16);
80  for (i = 0; i < BLOCK_SAMPLES; i++)
81  put_sbits(&pb, 4, av_clip(data[i] / scale, -8, 7));
82  flush_put_bits(&pb);
83 }
84 
85 #define HEADER_SIZE 36
86 
87 static int adx_encode_header(AVCodecContext *avctx, uint8_t *buf, int bufsize)
88 {
89  ADXContext *c = avctx->priv_data;
90 
91  bytestream_put_be16(&buf, 0x8000); /* header signature */
92  bytestream_put_be16(&buf, HEADER_SIZE - 4); /* copyright offset */
93  bytestream_put_byte(&buf, 3); /* encoding */
94  bytestream_put_byte(&buf, BLOCK_SIZE); /* block size */
95  bytestream_put_byte(&buf, 4); /* sample size */
96  bytestream_put_byte(&buf, avctx->channels); /* channels */
97  bytestream_put_be32(&buf, avctx->sample_rate); /* sample rate */
98  bytestream_put_be32(&buf, 0); /* total sample count */
99  bytestream_put_be16(&buf, c->cutoff); /* cutoff frequency */
100  bytestream_put_byte(&buf, 3); /* version */
101  bytestream_put_byte(&buf, 0); /* flags */
102  bytestream_put_be32(&buf, 0); /* unknown */
103  bytestream_put_be32(&buf, 0); /* loop enabled */
104  bytestream_put_be16(&buf, 0); /* padding */
105  bytestream_put_buffer(&buf, "(c)CRI", 6); /* copyright signature */
106 
107  return HEADER_SIZE;
108 }
109 
111 {
112  ADXContext *c = avctx->priv_data;
113 
114  if (avctx->channels > 2) {
115  av_log(avctx, AV_LOG_ERROR, "Invalid number of channels\n");
116  return AVERROR(EINVAL);
117  }
118  avctx->frame_size = BLOCK_SAMPLES;
119 
120  /* the cutoff can be adjusted, but this seems to work pretty well */
121  c->cutoff = 500;
123 
124  return 0;
125 }
126 
127 static int adx_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
128  const AVFrame *frame, int *got_packet_ptr)
129 {
130  ADXContext *c = avctx->priv_data;
131  const int16_t *samples = (const int16_t *)frame->data[0];
132  uint8_t *dst;
133  int ch, out_size, ret;
134 
135  out_size = BLOCK_SIZE * avctx->channels + !c->header_parsed * HEADER_SIZE;
136  if ((ret = ff_alloc_packet(avpkt, out_size)) < 0) {
137  av_log(avctx, AV_LOG_ERROR, "Error getting output packet\n");
138  return ret;
139  }
140  dst = avpkt->data;
141 
142  if (!c->header_parsed) {
143  int hdrsize;
144  if ((hdrsize = adx_encode_header(avctx, dst, avpkt->size)) < 0) {
145  av_log(avctx, AV_LOG_ERROR, "output buffer is too small\n");
146  return AVERROR(EINVAL);
147  }
148  dst += hdrsize;
149  c->header_parsed = 1;
150  }
151 
152  for (ch = 0; ch < avctx->channels; ch++) {
153  adx_encode(c, dst, samples + ch, &c->prev[ch], avctx->channels);
154  dst += BLOCK_SIZE;
155  }
156 
157  *got_packet_ptr = 1;
158  return 0;
159 }
160 
162  .name = "adpcm_adx",
163  .long_name = NULL_IF_CONFIG_SMALL("SEGA CRI ADX ADPCM"),
164  .type = AVMEDIA_TYPE_AUDIO,
165  .id = AV_CODEC_ID_ADPCM_ADX,
166  .priv_data_size = sizeof(ADXContext),
168  .encode2 = adx_encode_frame,
169  .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_S16,
171 };
This structure describes decoded (raw) audio or video data.
Definition: frame.h:135
static void put_sbits(PutBitContext *pb, int n, int32_t value)
Definition: put_bits.h:172
int size
Definition: avcodec.h:974
int coeff[2]
Definition: adx.h:48
#define BLOCK_SIZE
Definition: adx.h:53
AVCodec.
Definition: avcodec.h:2812
static void adx_encode(ADXContext *c, uint8_t *adx, const int16_t *wav, ADXChannelState *prev, int channels)
Definition: adxenc.c:37
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:26
uint8_t
#define av_cold
Definition: attributes.h:66
const char data[16]
Definition: mxf.c:70
uint8_t * data
Definition: avcodec.h:973
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:123
#define COEFF_BITS
Definition: adx.h:51
#define HEADER_SIZE
Definition: adxenc.c:85
#define AVERROR(e)
Definition: error.h:43
sample_fmts
Definition: avconv_filter.c:68
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:145
void av_log(void *avcl, int level, const char *fmt,...)
Definition: log.c:169
const char * name
Name of the codec implementation.
Definition: avcodec.h:2819
int header_parsed
Definition: adx.h:45
AVCodec ff_adpcm_adx_encoder
Definition: adxenc.c:161
int ff_alloc_packet(AVPacket *avpkt, int size)
Check AVPacket size and/or allocate data.
Definition: utils.c:1245
if(ac->has_optimized_func)
int frame_size
Number of samples per channel in an audio frame.
Definition: avcodec.h:1827
#define BLOCK_SAMPLES
Definition: adx.h:54
Libavcodec external API header.
AVSampleFormat
Audio Sample Formats.
Definition: samplefmt.h:61
AV_SAMPLE_FMT_NONE
Definition: avconv_filter.c:68
int sample_rate
samples per second
Definition: avcodec.h:1807
main external API structure.
Definition: avcodec.h:1050
static int adx_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, const AVFrame *frame, int *got_packet_ptr)
Definition: adxenc.c:127
Definition: adx.h:42
int s2
Definition: adx.h:39
#define AV_WB16(p, d)
Definition: intreadwrite.h:213
int cutoff
Definition: adx.h:47
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:141
common internal api header.
static void flush_put_bits(PutBitContext *s)
Pad the end of the output stream with zeros.
Definition: put_bits.h:83
signed 16 bits
Definition: samplefmt.h:64
int s1
Definition: adx.h:39
static void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_size)
Initialize the PutBitContext s.
Definition: put_bits.h:48
static av_cold int init(AVCodecParserContext *s)
Definition: h264_parser.c:499
static av_cold int adx_encode_init(AVCodecContext *avctx)
Definition: adxenc.c:110
static av_always_inline void bytestream_put_buffer(uint8_t **b, const uint8_t *src, unsigned int size)
Definition: bytestream.h:365
void * priv_data
Definition: avcodec.h:1092
static int adx_encode_header(AVCodecContext *avctx, uint8_t *buf, int bufsize)
Definition: adxenc.c:87
ADXChannelState prev[2]
Definition: adx.h:44
int channels
number of audio channels
Definition: avcodec.h:1808
SEGA CRI adx codecs.
float min
This structure stores compressed data.
Definition: avcodec.h:950
bitstream writer API