Mercurial > mplayer.hg
annotate libmpcodecs/ad_imaadpcm.c @ 31278:2d75e55e74bc
Print media start time with -identify.
author | reimar |
---|---|
date | Mon, 07 Jun 2010 17:52:28 +0000 |
parents | cc27da5d7286 |
children | b40d593a463f |
rev | line source |
---|---|
5408 | 1 /* |
30421
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
2 * IMA ADPCM decoder |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
3 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
4 * This file is in charge of decoding all of the various IMA ADPCM data |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
5 * formats that various entities have created. Details about the data |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
6 * formats can be found here: |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
7 * http://www.pcisys.net/~melanson/codecs/ |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
8 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
9 * So far, this file handles these formats: |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
10 * 'ima4': IMA ADPCM found in QT files |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
11 * 0x11: IMA ADPCM found in MS AVI/ASF/WAV files |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
12 * 0x61: DK4 ADPCM found in certain AVI files on Sega Saturn CD-ROMs; |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
13 * note that this is a 'rogue' format number in that it was |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
14 * never officially registered with Microsoft |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
15 * 0x1100736d: IMA ADPCM coded like in MS AVI/ASF/WAV found in QT files |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
16 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
17 * Copyright (c) 2002 Mike Melanson |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
18 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
19 * This file is part of MPlayer. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
20 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
21 * MPlayer is free software; you can redistribute it and/or modify |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
22 * it under the terms of the GNU General Public License as published by |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
23 * the Free Software Foundation; either version 2 of the License, or |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
24 * (at your option) any later version. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
25 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
26 * MPlayer is distributed in the hope that it will be useful, |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
27 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
28 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
29 * GNU General Public License for more details. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
30 * |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
31 * You should have received a copy of the GNU General Public License along |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
32 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
33 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
bbb6ebec87a0
Add missing license headers to all files in the libmpcodecs directory.
diego
parents:
29297
diff
changeset
|
34 */ |
5408 | 35 |
5340
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
36 #include <stdio.h> |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
37 #include <stdlib.h> |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
38 #include <unistd.h> |
27220 | 39 #include <inttypes.h> |
5340
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
40 |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
41 #include "config.h" |
21372 | 42 #include "libavutil/common.h" |
21507
fa99b3d31d13
Hack around libavutil/bswap.h compilation problems due to always_inline undefined.
reimar
parents:
21372
diff
changeset
|
43 #include "mpbswap.h" |
5340
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
44 #include "ad_internal.h" |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
45 |
5408 | 46 #define MS_IMA_ADPCM_PREAMBLE_SIZE 4 |
47 | |
48 #define QT_IMA_ADPCM_PREAMBLE_SIZE 2 | |
49 #define QT_IMA_ADPCM_BLOCK_SIZE 0x22 | |
50 #define QT_IMA_ADPCM_SAMPLES_PER_BLOCK 64 | |
51 | |
52 #define BE_16(x) (be2me_16(*(unsigned short *)(x))) | |
53 #define LE_16(x) (le2me_16(*(unsigned short *)(x))) | |
54 | |
55 // pertinent tables for IMA ADPCM | |
27116 | 56 static const int16_t adpcm_step[89] = |
5408 | 57 { |
58 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, | |
59 19, 21, 23, 25, 28, 31, 34, 37, 41, 45, | |
60 50, 55, 60, 66, 73, 80, 88, 97, 107, 118, | |
61 130, 143, 157, 173, 190, 209, 230, 253, 279, 307, | |
62 337, 371, 408, 449, 494, 544, 598, 658, 724, 796, | |
63 876, 963, 1060, 1166, 1282, 1411, 1552, 1707, 1878, 2066, | |
64 2272, 2499, 2749, 3024, 3327, 3660, 4026, 4428, 4871, 5358, | |
65 5894, 6484, 7132, 7845, 8630, 9493, 10442, 11487, 12635, 13899, | |
66 15289, 16818, 18500, 20350, 22385, 24623, 27086, 29794, 32767 | |
67 }; | |
68 | |
27121 | 69 static const int8_t adpcm_index[8] = |
5408 | 70 { |
71 -1, -1, -1, -1, 2, 4, 6, 8, | |
72 }; | |
73 | |
74 // useful macros | |
75 // clamp a number between 0 and 88 | |
27118 | 76 #define CLAMP_0_TO_88(x) x = av_clip(x, 0, 88); |
5408 | 77 // clamp a number within a signed 16-bit range |
27118 | 78 #define CLAMP_S16(x) x = av_clip_int16(x); |
5408 | 79 // clamp a number above 16 |
80 #define CLAMP_ABOVE_16(x) if (x < 16) x = 16; | |
5340
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
81 |
30504
cc27da5d7286
Mark all ad_info_t/vd_info_t structure declarations as const.
diego
parents:
30421
diff
changeset
|
82 static const ad_info_t info = |
5340
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
83 { |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
84 "IMA ADPCM audio decoder", |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
85 "imaadpcm", |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
86 "Nick Kurshev", |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
87 "Mike Melanson", |
5408 | 88 "" |
5340
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
89 }; |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
90 |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
91 LIBAD_EXTERN(imaadpcm) |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
92 |
5408 | 93 static int preinit(sh_audio_t *sh_audio) |
94 { | |
95 // not exactly sure what this field is for | |
96 sh_audio->audio_out_minsize = 8192; | |
97 | |
98 // if format is "ima4", assume the audio is coming from a QT file which | |
99 // indicates constant block size, whereas an AVI/ASF/WAV file will fill | |
100 // in this field with 0x11 | |
8103 | 101 if ((sh_audio->format == 0x11) || (sh_audio->format == 0x61) || |
102 (sh_audio->format == 0x1100736d)) | |
5408 | 103 { |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27230
diff
changeset
|
104 sh_audio->ds->ss_div = (sh_audio->wf->nBlockAlign - |
5408 | 105 (MS_IMA_ADPCM_PREAMBLE_SIZE * sh_audio->wf->nChannels)) * 2; |
106 sh_audio->ds->ss_mul = sh_audio->wf->nBlockAlign; | |
107 } | |
108 else | |
109 { | |
110 sh_audio->ds->ss_div = QT_IMA_ADPCM_SAMPLES_PER_BLOCK; | |
111 sh_audio->ds->ss_mul = QT_IMA_ADPCM_BLOCK_SIZE * sh_audio->wf->nChannels; | |
112 } | |
5458 | 113 sh_audio->audio_in_minsize=sh_audio->ds->ss_mul; |
5408 | 114 return 1; |
115 } | |
116 | |
5340
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
117 static int init(sh_audio_t *sh_audio) |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
118 { |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
119 /* IMA-ADPCM 4:1 audio codec:*/ |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
120 sh_audio->channels=sh_audio->wf->nChannels; |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
121 sh_audio->samplerate=sh_audio->wf->nSamplesPerSec; |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
122 /* decodes 34 byte -> 64 short*/ |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27230
diff
changeset
|
123 sh_audio->i_bps = |
5408 | 124 (sh_audio->ds->ss_mul * sh_audio->samplerate) / sh_audio->ds->ss_div; |
13427
9d0b052c4f74
setting samplesize to 2 in decoders where neccessary.
reimar
parents:
10808
diff
changeset
|
125 sh_audio->samplesize=2; |
5408 | 126 |
5340
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
127 return 1; |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
128 } |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
129 |
5408 | 130 static void uninit(sh_audio_t *sh_audio) |
5340
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
131 { |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
132 } |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
133 |
5481 | 134 static int control(sh_audio_t *sh_audio,int cmd,void* arg, ...) |
5340
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
135 { |
5481 | 136 if(cmd==ADCTRL_SKIP_FRAME){ |
137 demux_read_data(sh_audio->ds, sh_audio->a_in_buffer,sh_audio->ds->ss_mul); | |
138 return CONTROL_TRUE; | |
139 } | |
5340
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
140 return CONTROL_UNKNOWN; |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
141 } |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
142 |
5408 | 143 static void decode_nibbles(unsigned short *output, |
144 int output_size, int channels, | |
27117 | 145 int predictor[2], int index[2]) |
5408 | 146 { |
147 int step[2]; | |
148 int i; | |
149 int sign; | |
150 int delta; | |
151 int channel_number = 0; | |
152 | |
27117 | 153 step[0] = adpcm_step[index[0]]; |
154 step[1] = adpcm_step[index[1]]; | |
5408 | 155 |
156 for (i = 0; i < output_size; i++) | |
157 { | |
158 delta = output[i]; | |
27121 | 159 sign = delta & 8; |
160 delta = delta & 7; | |
5408 | 161 |
162 index[channel_number] += adpcm_index[delta]; | |
163 CLAMP_0_TO_88(index[channel_number]); | |
164 | |
27120 | 165 delta = 2 * delta + 1; |
166 if (sign) delta = -delta; | |
5408 | 167 |
27120 | 168 predictor[channel_number] += (delta * step[channel_number]) >> 3; |
5408 | 169 |
170 CLAMP_S16(predictor[channel_number]); | |
171 output[i] = predictor[channel_number]; | |
172 step[channel_number] = adpcm_step[index[channel_number]]; | |
173 | |
174 // toggle channel | |
175 channel_number ^= channels - 1; | |
176 | |
177 } | |
178 } | |
179 | |
180 static int qt_ima_adpcm_decode_block(unsigned short *output, | |
27112 | 181 unsigned char *input, int channels, int block_size) |
5408 | 182 { |
29297
dbc412fcde45
Initialize local variable, avoids a possible crash due to using an
reimar
parents:
29263
diff
changeset
|
183 int initial_predictor[2] = {0}; |
dbc412fcde45
Initialize local variable, avoids a possible crash due to using an
reimar
parents:
29263
diff
changeset
|
184 int initial_index[2] = {0}; |
5408 | 185 int i; |
186 | |
27230
48b793612e37
Make really sure channels can only be 1 or 2 for imaadpcm
reimar
parents:
27229
diff
changeset
|
187 if (channels != 1) channels = 2; |
27113
680301b96149
Add a few size checks to IMA decoder. The code is still a mess though,
reimar
parents:
27112
diff
changeset
|
188 if (block_size < channels * QT_IMA_ADPCM_BLOCK_SIZE) |
680301b96149
Add a few size checks to IMA decoder. The code is still a mess though,
reimar
parents:
27112
diff
changeset
|
189 return -1; |
680301b96149
Add a few size checks to IMA decoder. The code is still a mess though,
reimar
parents:
27112
diff
changeset
|
190 |
27114 | 191 for (i = 0; i < channels; i++) { |
27119 | 192 initial_index[i] = initial_predictor[i] = (int16_t)BE_16(&input[i * QT_IMA_ADPCM_BLOCK_SIZE]); |
5408 | 193 |
194 // mask, sign-extend, and clamp the predictor portion | |
27119 | 195 initial_predictor[i] &= ~0x7F; |
27114 | 196 CLAMP_S16(initial_predictor[i]); |
5408 | 197 |
198 // mask and clamp the index portion | |
27114 | 199 initial_index[i] &= 0x7F; |
200 CLAMP_0_TO_88(initial_index[i]); | |
5408 | 201 } |
202 | |
203 // break apart all of the nibbles in the block | |
204 if (channels == 1) | |
205 for (i = 0; i < QT_IMA_ADPCM_SAMPLES_PER_BLOCK / 2; i++) | |
206 { | |
207 output[i * 2 + 0] = input[2 + i] & 0x0F; | |
208 output[i * 2 + 1] = input[2 + i] >> 4; | |
209 } | |
210 else | |
15786 | 211 for (i = 0; i < QT_IMA_ADPCM_SAMPLES_PER_BLOCK / 2; i++) |
5408 | 212 { |
213 output[i * 4 + 0] = input[2 + i] & 0x0F; | |
214 output[i * 4 + 1] = input[2 + QT_IMA_ADPCM_BLOCK_SIZE + i] & 0x0F; | |
215 output[i * 4 + 2] = input[2 + i] >> 4; | |
216 output[i * 4 + 3] = input[2 + QT_IMA_ADPCM_BLOCK_SIZE + i] >> 4; | |
217 } | |
218 | |
219 decode_nibbles(output, | |
220 QT_IMA_ADPCM_SAMPLES_PER_BLOCK * channels, channels, | |
27117 | 221 initial_predictor, initial_index); |
5408 | 222 |
223 return QT_IMA_ADPCM_SAMPLES_PER_BLOCK * channels; | |
224 } | |
225 | |
226 static int ms_ima_adpcm_decode_block(unsigned short *output, | |
227 unsigned char *input, int channels, int block_size) | |
228 { | |
27114 | 229 int predictor[2]; |
230 int index[2]; | |
5408 | 231 int i; |
232 int channel_counter; | |
233 int channel_index; | |
234 int channel_index_l; | |
235 int channel_index_r; | |
236 | |
27230
48b793612e37
Make really sure channels can only be 1 or 2 for imaadpcm
reimar
parents:
27229
diff
changeset
|
237 if (channels != 1) channels = 2; |
27113
680301b96149
Add a few size checks to IMA decoder. The code is still a mess though,
reimar
parents:
27112
diff
changeset
|
238 if (block_size < MS_IMA_ADPCM_PREAMBLE_SIZE * channels) |
680301b96149
Add a few size checks to IMA decoder. The code is still a mess though,
reimar
parents:
27112
diff
changeset
|
239 return -1; |
680301b96149
Add a few size checks to IMA decoder. The code is still a mess though,
reimar
parents:
27112
diff
changeset
|
240 |
27114 | 241 for (i = 0; i < channels; i++) { |
27119 | 242 predictor[i] = (int16_t)LE_16(&input[i * 4]); |
27114 | 243 index[i] = input[i * 4 + 2]; |
5408 | 244 } |
245 | |
246 if (channels == 1) | |
247 for (i = 0; | |
10808
9883dfced49c
100l: you have 2 nibbles per byte, don't divide byte count by 2
rtognimp
parents:
8103
diff
changeset
|
248 i < (block_size - MS_IMA_ADPCM_PREAMBLE_SIZE * channels); i++) |
5408 | 249 { |
250 output[i * 2 + 0] = input[MS_IMA_ADPCM_PREAMBLE_SIZE + i] & 0x0F; | |
251 output[i * 2 + 1] = input[MS_IMA_ADPCM_PREAMBLE_SIZE + i] >> 4; | |
252 } | |
253 else | |
254 { | |
255 // encoded as 8 nibbles (4 bytes) per channel; switch channel every | |
256 // 4th byte | |
257 channel_counter = 0; | |
258 channel_index_l = 0; | |
259 channel_index_r = 1; | |
260 channel_index = channel_index_l; | |
261 for (i = 0; | |
262 i < (block_size - MS_IMA_ADPCM_PREAMBLE_SIZE * channels); i++) | |
263 { | |
264 output[channel_index + 0] = | |
265 input[MS_IMA_ADPCM_PREAMBLE_SIZE * 2 + i] & 0x0F; | |
266 output[channel_index + 2] = | |
267 input[MS_IMA_ADPCM_PREAMBLE_SIZE * 2 + i] >> 4; | |
268 channel_index += 4; | |
269 channel_counter++; | |
270 if (channel_counter == 4) | |
271 { | |
272 channel_index_l = channel_index; | |
273 channel_index = channel_index_r; | |
274 } | |
275 else if (channel_counter == 8) | |
276 { | |
277 channel_index_r = channel_index; | |
278 channel_index = channel_index_l; | |
279 channel_counter = 0; | |
280 } | |
281 } | |
282 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27230
diff
changeset
|
283 |
5408 | 284 decode_nibbles(output, |
285 (block_size - MS_IMA_ADPCM_PREAMBLE_SIZE * channels) * 2, | |
286 channels, | |
27117 | 287 predictor, index); |
5408 | 288 |
289 return (block_size - MS_IMA_ADPCM_PREAMBLE_SIZE * channels) * 2; | |
290 } | |
291 | |
292 static int dk4_ima_adpcm_decode_block(unsigned short *output, | |
293 unsigned char *input, int channels, int block_size) | |
294 { | |
295 int i; | |
296 int output_ptr; | |
27114 | 297 int predictor[2]; |
298 int index[2]; | |
5408 | 299 |
27230
48b793612e37
Make really sure channels can only be 1 or 2 for imaadpcm
reimar
parents:
27229
diff
changeset
|
300 if (channels != 1) channels = 2; |
27113
680301b96149
Add a few size checks to IMA decoder. The code is still a mess though,
reimar
parents:
27112
diff
changeset
|
301 if (block_size < MS_IMA_ADPCM_PREAMBLE_SIZE * channels) |
680301b96149
Add a few size checks to IMA decoder. The code is still a mess though,
reimar
parents:
27112
diff
changeset
|
302 return -1; |
680301b96149
Add a few size checks to IMA decoder. The code is still a mess though,
reimar
parents:
27112
diff
changeset
|
303 |
27114 | 304 for (i = 0; i < channels; i++) { |
305 // the first predictor value goes straight to the output | |
27119 | 306 predictor[i] = output[i] = (int16_t)LE_16(&input[i * 4]); |
27114 | 307 index[i] = input[i * 4 + 2]; |
5408 | 308 } |
309 | |
310 output_ptr = channels; | |
311 for (i = MS_IMA_ADPCM_PREAMBLE_SIZE * channels; i < block_size; i++) | |
312 { | |
313 output[output_ptr++] = input[i] >> 4; | |
314 output[output_ptr++] = input[i] & 0x0F; | |
315 } | |
316 | |
317 decode_nibbles(&output[channels], | |
318 (block_size - MS_IMA_ADPCM_PREAMBLE_SIZE * channels) * 2 - channels, | |
319 channels, | |
27117 | 320 predictor, index); |
5408 | 321 |
322 return (block_size - MS_IMA_ADPCM_PREAMBLE_SIZE * channels) * 2 - channels; | |
323 } | |
324 | |
5340
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
325 static int decode_audio(sh_audio_t *sh_audio,unsigned char *buf,int minlen,int maxlen) |
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
326 { |
27112 | 327 int res = -1; |
328 int (*decode_func)(unsigned short *output, unsigned char *input, int channels, int block_size) = qt_ima_adpcm_decode_block; | |
5408 | 329 if (demux_read_data(sh_audio->ds, sh_audio->a_in_buffer, |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27230
diff
changeset
|
330 sh_audio->ds->ss_mul) != |
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
27230
diff
changeset
|
331 sh_audio->ds->ss_mul) |
5408 | 332 return -1; |
333 | |
8103 | 334 if ((sh_audio->format == 0x11) || (sh_audio->format == 0x1100736d)) |
27112 | 335 decode_func = ms_ima_adpcm_decode_block; |
5408 | 336 else if (sh_audio->format == 0x61) |
27112 | 337 decode_func = dk4_ima_adpcm_decode_block; |
338 | |
339 res = decode_func((unsigned short*)buf, sh_audio->a_in_buffer, | |
340 sh_audio->wf->nChannels, sh_audio->ds->ss_mul); | |
27229 | 341 return res < 0 ? res : 2 * res; |
5340
0f12fb7c1c5d
imported from MPlayerXP, dlopen() hack removed, some bugs fixed, interface functions changed to static, info->author field added
arpi
parents:
diff
changeset
|
342 } |