3 * Copyright (c) 2001 Fabrice Bellard.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 #include "libac3/ac3.h"
30 /* currently, I use libac3 which is Copyright (C) Aaron Holtzman and
31 released under the GPL license. I may reimplement it someday... */
32 typedef struct AC3DecodeState
{
33 uint8_t inbuf
[4096]; /* input buffer */
41 static int ac3_decode_init(AVCodecContext
*avctx
)
43 AC3DecodeState
*s
= avctx
->priv_data
;
46 s
->inbuf_ptr
= s
->inbuf
;
51 stream_samples_t samples
;
53 /**** the following two functions comes from ac3dec */
54 static inline int blah (int32_t i
)
58 else if (i
< 0x43bf8000)
61 return i
- 0x43c00000;
64 static inline void float_to_int (float * _f
, int16_t * s16
, int nchannels
)
67 int32_t * f
= (int32_t *) _f
; // XXX assumes IEEE float format
71 for (i
= 0; i
< 256; i
++) {
72 for (c
= 0; c
< nchannels
; c
+= 256)
73 s16
[j
++] = blah (f
[i
+ c
]);
81 static int ac3_decode_frame(AVCodecContext
*avctx
,
82 void *data
, int *data_size
,
83 uint8_t *buf
, int buf_size
)
85 AC3DecodeState
*s
= avctx
->priv_data
;
88 int sample_rate
, bit_rate
;
89 short *out_samples
= data
;
91 static const int ac3_channels
[8] = {
92 2, 1, 2, 3, 3, 4, 4, 5
96 while (buf_size
> 0) {
97 len
= s
->inbuf_ptr
- s
->inbuf
;
98 if (s
->frame_size
== 0) {
99 /* no header seen : find one. We need at least 7 bytes to parse it */
100 len
= HEADER_SIZE
- len
;
103 memcpy(s
->inbuf_ptr
, buf_ptr
, len
);
107 if ((s
->inbuf_ptr
- s
->inbuf
) == HEADER_SIZE
) {
108 len
= ac3_syncinfo (s
->inbuf
, &s
->flags
, &sample_rate
, &bit_rate
);
110 /* no sync found : move by one byte (inefficient, but simple!) */
111 memcpy(s
->inbuf
, s
->inbuf
+ 1, HEADER_SIZE
- 1);
115 /* update codec info */
116 avctx
->sample_rate
= sample_rate
;
117 s
->channels
= ac3_channels
[s
->flags
& 7];
118 if (s
->flags
& AC3_LFE
)
120 if (avctx
->channels
== 0)
121 /* No specific number of channel requested */
122 avctx
->channels
= s
->channels
;
123 else if (s
->channels
< avctx
->channels
) {
124 fprintf(stderr
, "ac3dec: AC3 Source channels are less than specified: output to %d channels.. (frmsize: %d)\n", s
->channels
, len
);
125 avctx
->channels
= s
->channels
;
127 avctx
->bit_rate
= bit_rate
;
130 } else if (len
< s
->frame_size
) {
131 len
= s
->frame_size
- len
;
135 memcpy(s
->inbuf_ptr
, buf_ptr
, len
);
141 if (avctx
->channels
== 1)
143 else if (avctx
->channels
== 2)
146 flags
|= AC3_ADJUST_LEVEL
;
148 if (ac3_frame (&s
->state
, s
->inbuf
, &flags
, &level
, 384)) {
150 s
->inbuf_ptr
= s
->inbuf
;
154 for (i
= 0; i
< 6; i
++) {
155 if (ac3_block (&s
->state
))
157 float_to_int (*samples
, out_samples
+ i
* 256 * avctx
->channels
, avctx
->channels
);
159 s
->inbuf_ptr
= s
->inbuf
;
161 *data_size
= 6 * avctx
->channels
* 256 * sizeof(int16_t);
165 return buf_ptr
- buf
;
168 static int ac3_decode_end(AVCodecContext
*s
)
173 AVCodec ac3_decoder
= {
177 sizeof(AC3DecodeState
),