2 MS ADPCM Decoder for MPlayer
5 This file is responsible for decoding Microsoft ADPCM data.
6 Details about the data format can be found here:
7 http://www.pcisys.net/~melanson/codecs/
15 #include "libavutil/common.h"
16 #include "libavutil/intreadwrite.h"
18 #include "ad_internal.h"
20 static ad_info_t info
=
22 "MS ADPCM audio decoder",
31 static const int ms_adapt_table
[] =
33 230, 230, 230, 230, 307, 409, 512, 614,
34 768, 614, 512, 409, 307, 230, 230, 230
37 static const uint8_t ms_adapt_coeff1
[] =
39 64, 128, 0, 48, 60, 115, 98
42 static const int8_t ms_adapt_coeff2
[] =
44 0, -64, 0, 16, 0, -52, -58
47 #define MS_ADPCM_PREAMBLE_SIZE 6
49 #define LE_16(x) ((int16_t)AV_RL16(x))
51 // clamp a number between 0 and 88
52 #define CLAMP_0_TO_88(x) x = av_clip(x, 0, 88);
53 // clamp a number within a signed 16-bit range
54 #define CLAMP_S16(x) x = av_clip_int16(x);
55 // clamp a number above 16
56 #define CLAMP_ABOVE_16(x) if (x < 16) x = 16;
57 // sign extend a 4-bit value
58 #define SE_4BIT(x) if (x & 0x8) x -= 0x10;
60 static int preinit(sh_audio_t
*sh_audio
)
62 sh_audio
->audio_out_minsize
= sh_audio
->wf
->nBlockAlign
* 4;
63 sh_audio
->ds
->ss_div
=
64 (sh_audio
->wf
->nBlockAlign
- MS_ADPCM_PREAMBLE_SIZE
) * 2;
65 sh_audio
->audio_in_minsize
=
66 sh_audio
->ds
->ss_mul
= sh_audio
->wf
->nBlockAlign
;
70 static int init(sh_audio_t
*sh_audio
)
72 sh_audio
->channels
=sh_audio
->wf
->nChannels
;
73 sh_audio
->samplerate
=sh_audio
->wf
->nSamplesPerSec
;
74 sh_audio
->i_bps
= sh_audio
->wf
->nBlockAlign
*
75 (sh_audio
->channels
*sh_audio
->samplerate
) / sh_audio
->ds
->ss_div
;
76 sh_audio
->samplesize
=2;
81 static void uninit(sh_audio_t
*sh_audio
)
85 static int control(sh_audio_t
*sh_audio
,int cmd
,void* arg
, ...)
87 if(cmd
==ADCTRL_SKIP_FRAME
){
88 demux_read_data(sh_audio
->ds
, sh_audio
->a_in_buffer
,sh_audio
->ds
->ss_mul
);
91 return CONTROL_UNKNOWN
;
94 static inline int check_coeff(uint8_t c
) {
96 mp_msg(MSGT_DECAUDIO
, MSGL_WARN
,
97 "MS ADPCM: coefficient (%d) out of range (should be [0..6])\n",
104 static int ms_adpcm_decode_block(unsigned short *output
, unsigned char *input
,
105 int channels
, int block_size
)
107 int current_channel
= 0;
116 int upper_nibble
= 1;
118 int snibble
; // signed nibble
121 if (channels
!= 1) channels
= 2;
122 if (block_size
< 7 * channels
)
125 // fetch the header information, in stereo if both channels are present
126 coeff_idx
= check_coeff(input
[stream_ptr
]);
127 coeff1
[0] = ms_adapt_coeff1
[coeff_idx
];
128 coeff2
[0] = ms_adapt_coeff2
[coeff_idx
];
132 coeff_idx
= check_coeff(input
[stream_ptr
]);
133 coeff1
[1] = ms_adapt_coeff1
[coeff_idx
];
134 coeff2
[1] = ms_adapt_coeff2
[coeff_idx
];
138 idelta
[0] = LE_16(&input
[stream_ptr
]);
142 idelta
[1] = LE_16(&input
[stream_ptr
]);
146 sample1
[0] = LE_16(&input
[stream_ptr
]);
150 sample1
[1] = LE_16(&input
[stream_ptr
]);
154 sample2
[0] = LE_16(&input
[stream_ptr
]);
158 sample2
[1] = LE_16(&input
[stream_ptr
]);
164 output
[out_ptr
++] = sample2
[0];
165 output
[out_ptr
++] = sample1
[0];
167 output
[out_ptr
++] = sample2
[0];
168 output
[out_ptr
++] = sample2
[1];
169 output
[out_ptr
++] = sample1
[0];
170 output
[out_ptr
++] = sample1
[1];
173 while (stream_ptr
< block_size
)
175 // get the next nibble
177 nibble
= snibble
= input
[stream_ptr
] >> 4;
179 nibble
= snibble
= input
[stream_ptr
++] & 0x0F;
183 // should this really be a division and not a shift?
184 // coefficients were originally scaled by for, which might have
185 // been an optimization for 8-bit CPUs _if_ a shift is correct
187 ((sample1
[current_channel
] * coeff1
[current_channel
]) +
188 (sample2
[current_channel
] * coeff2
[current_channel
])) / 64) +
189 (snibble
* idelta
[current_channel
]);
190 CLAMP_S16(predictor
);
191 sample2
[current_channel
] = sample1
[current_channel
];
192 sample1
[current_channel
] = predictor
;
193 output
[out_ptr
++] = predictor
;
195 // compute the next adaptive scale factor (a.k.a. the variable idelta)
196 idelta
[current_channel
] =
197 (ms_adapt_table
[nibble
] * idelta
[current_channel
]) / 256;
198 CLAMP_ABOVE_16(idelta
[current_channel
]);
200 // toggle the channel
201 current_channel
^= channels
- 1;
204 return (block_size
- (MS_ADPCM_PREAMBLE_SIZE
* channels
)) * 2;
207 static int decode_audio(sh_audio_t
*sh_audio
,unsigned char *buf
,int minlen
,int maxlen
)
210 if (demux_read_data(sh_audio
->ds
, sh_audio
->a_in_buffer
,
211 sh_audio
->ds
->ss_mul
) !=
212 sh_audio
->ds
->ss_mul
)
215 res
= ms_adpcm_decode_block(
216 (unsigned short*)buf
, sh_audio
->a_in_buffer
,
217 sh_audio
->wf
->nChannels
, sh_audio
->wf
->nBlockAlign
);
218 return res
< 0 ? res
: 2 * res
;