2 * Copyright (C) 2006 Andre Noll <maan@systemlinux.org>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
20 * based in parts on libfaad, Copyright (C) 2003-2005 M. Bakker,
24 /** \file aacdec.c paraslash's mp3 decoder */
34 /** the output buffer size */
35 #define MAX_CHANNELS 6
36 #define AAC_OUTBUF_SIZE (FAAD_MIN_STREAMSIZE * MAX_CHANNELS)
39 * data specific to the aacdec filter
41 * \sa filter, filter_node
43 struct private_mp4dec_data
{
44 NeAACDecHandle decoder
;
45 NeAACDecFrameInfo frame_info
;
52 long unsigned consumed_total
;
57 static ssize_t
mp4dec(char *inbuffer
, size_t len
, struct filter_node
*fn
)
59 struct private_mp4dec_data
*padd
= fn
->private_data
;
60 struct filter_chain_info
*fci
= fn
->fci
;
61 unsigned long rate
= 0;
62 unsigned char channels
= 0;
64 unsigned char *p
, *outbuffer
;
66 if (fn
->loaded
> fn
->bufsize
* 4 / 5)
68 if (len
< 1000 && !*fci
->eof
)
71 padd
->inbuf
= (unsigned char*)inbuffer
;
72 padd
->inbuf_len
= len
;
74 if (!padd
->initialized
) {
75 padd
->decoder_length
= aac_find_esds(padd
->inbuf
, padd
->inbuf_len
,
77 PARA_INFO_LOG("decoder len: %d\n", padd
->decoder_length
);
78 if (padd
->decoder_length
< 0) {
79 ret
= NeAACDecInit(padd
->decoder
, padd
->inbuf
,
80 padd
->inbuf_len
, &rate
, &channels
);
81 PARA_INFO_LOG("decoder init: %d\n", ret
);
88 padd
->consumed
+= skip
;
89 p
= padd
->inbuf
+ padd
->consumed
;
91 if (NeAACDecInit2(padd
->decoder
, p
,
92 padd
->decoder_length
, &rate
,
96 fci
->samplerate
= rate
;
97 fci
->channels
= channels
;
98 PARA_INFO_LOG("rate: %u, channels: %d\n",
99 fci
->samplerate
, fci
->channels
);
100 padd
->initialized
= 1;
102 if (padd
->decoder_length
> 0) {
105 ret
= aac_find_stco(padd
->inbuf
+ padd
->consumed
,
106 padd
->inbuf_len
- padd
->consumed
, &skip
);
111 padd
->consumed
+= skip
;
112 padd
->entry
= aac_read_int32(padd
->inbuf
+ padd
->consumed
);
113 PARA_INFO_LOG("entry: %lu\n", padd
->entry
);
116 if (padd
->consumed_total
+ len
< padd
->entry
)
118 if (padd
->consumed_total
< padd
->entry
)
119 padd
->consumed
= padd
->entry
- padd
->consumed_total
;
121 for (; padd
->consumed
< padd
->inbuf_len
; padd
->consumed
++)
122 if ((padd
->inbuf
[padd
->consumed
] & 0xfe) == 0x20)
124 if (padd
->consumed
>= padd
->inbuf_len
)
126 p
= padd
->inbuf
+ padd
->consumed
;
127 outbuffer
= NeAACDecDecode(padd
->decoder
, &padd
->frame_info
, p
,
128 len
- padd
->consumed
);
130 if (padd
->frame_info
.error
!= 0) {
131 PARA_ERROR_LOG("frame_error: %d, consumed: %lu + %d + %lu\n",
132 padd
->frame_info
.error
, padd
->consumed_total
,
133 padd
->consumed
, padd
->frame_info
.bytesconsumed
);
134 PARA_ERROR_LOG("%s\n", NeAACDecGetErrorMessage(
135 padd
->frame_info
.error
));
136 padd
->consumed
++; /* catch 21 */
139 padd
->consumed
+= padd
->frame_info
.bytesconsumed
;
140 ret
= padd
->consumed
;
141 if (!padd
->frame_info
.samples
)
143 for (i
= 0; i
< padd
->frame_info
.samples
; i
++) {
144 short *s
= (short *)outbuffer
;
145 fn
->buf
[fn
->loaded
++] = s
[i
] & 0xff;
146 fn
->buf
[fn
->loaded
++] = (s
[i
] >> 8) & 0xff;
149 ret
= padd
->consumed
;
152 padd
->consumed_total
+= ret
;
156 static void mp4dec_open(struct filter_node
*fn
)
158 fn
->private_data
= para_calloc(sizeof(struct private_mp4dec_data
));
159 struct private_mp4dec_data
*padd
= fn
->private_data
;
161 fn
->bufsize
= AAC_OUTBUF_SIZE
;
162 fn
->buf
= para_calloc(fn
->bufsize
);
163 padd
->decoder
= aac_open();
166 static void mp4dec_close(struct filter_node
*fn
)
168 struct private_mp4dec_data
*padd
= fn
->private_data
;
170 NeAACDecClose(padd
->decoder
);
174 fn
->private_data
= NULL
;
178 * the init function of the mp3dec filter
182 void aacdec_init(struct filter
*f
)
184 f
->open
= mp4dec_open
;
186 f
->close
= mp4dec_close
;