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
27
28 /**
29 * @file
30 * SEGA CRI adx codecs.
31 *
32 * Reference documents:
33 * http://ku-www.ss.titech.ac.jp/~yatsushi/adx.html
34 * adx2wav & wav2adx http://www.geocities.co.jp/Playtown/2004/
35 */
36
39 {
42 int i, j;
44 int max = 0;
47
50 for (i = 0, j = 0; j < 32; i += channels, j++) {
51 s0 = wav[i];
53 data[j] = d;
54 if (max < d)
55 max = d;
56 if (min > d)
57 min = d;
60 }
63
64 if (max == 0 && min == 0) {
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
78
81 put_sbits(&pb, 4, av_clip(data[i] / scale, -8, 7));
83 }
84
85 #define HEADER_SIZE 36
86
88 {
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 */
106
108 }
109
111 {
113
117 }
119
120 #if FF_API_OLD_ENCODE_AUDIO
123 #endif
124
125 /* the cutoff can be adjusted, but this seems to work pretty well */
128
129 return 0;
130 }
131
134 {
136 const int16_t *
samples = (
const int16_t *)frame->
data[0];
138 int ch, out_size, ret;
139
142 return ret;
144
146 int hdrsize;
150 }
153 }
154
155 for (ch = 0; ch < avctx->
channels; ch++) {
158 }
159
160 *got_packet_ptr = 1;
161 return 0;
162 }
163
174 };