1 /*
2 * NellyMoser audio decoder
3 * Copyright (c) 2007 a840bda5870ba11f19698ff6eb9581dfb0f95fa5,
4 * 539459aeb7d425140b62a3ec7dbf6dc8e408a306, and
5 * 520e17cd55896441042b14df2566a6eb610ed444
6 * Copyright (c) 2007 Loic Minier <lool at dooz.org>
7 * Benjamin Larsson
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice shall be included in
17 * all copies or substantial portions of the Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
24 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25 * DEALINGS IN THE SOFTWARE.
26 */
27
28 /**
29 * @file
30 * The 3 alphanumeric copyright notices are md5summed they are from the original
31 * implementors. The original code is available from http://code.google.com/p/nelly2pcm/
32 */
33
44
45 #define BITSTREAM_READER_LE
47
48
60
64 {
65 int i,j;
67 float *aptr, *bptr, *pptr,
val, pval;
70
72
74 pptr = pows;
77 if (i > 0)
82 *pptr++ = pval;
83 }
84
85 }
86
88
89 for (i = 0; i < 2; i++) {
91
94
96 if (bits[j] <= 0) {
99 aptr[j] *= -1.0;
100 } else {
103 }
104 }
105 memset(&aptr[NELLY_FILL_LEN], 0,
106 (NELLY_BUF_LEN - NELLY_FILL_LEN) * sizeof(float));
107
111 NELLY_BUF_LEN / 2);
113 }
114 }
115
118
124
126
129
130 /* Generate overlap window */
131 if (!ff_sine_128[127])
133
136
137 return 0;
138 }
139
141 int *got_frame_ptr,
AVPacket *avpkt)
142 {
146 int buf_size = avpkt->
size;
149 float *samples_flt;
150
152
153 if (blocks <= 0) {
156 }
157
160 buf_size % NELLY_BLOCK_LEN);
161 }
162 /* Normal numbers of blocks for sample rates:
163 * 8000 Hz - 1
164 * 11025 Hz - 2
165 * 16000 Hz - 3
166 * 22050 Hz - 4
167 * 44100 Hz - 8
168 */
169 if(side && blocks>1 && avctx->
sample_rate%11025==0 && (1<<((side[0]>>2)&3)) == blocks)
171
172 /* get output buffer */
175 return ret;
176 samples_flt = (
float *)frame->
data[0];
177
178 for (i=0 ; i<blocks ; i++) {
182 }
183
184 *got_frame_ptr = 1;
185
186 return buf_size;
187 }
188
191
193
194 return 0;
195 }
196
198 .
name =
"nellymoser",
209 };