3
* Copyright (c) 2001 Fabrice Bellard.
5
* This file is part of FFmpeg.
7
* FFmpeg is free software; you can redistribute it and/or
8
* modify it under the terms of the GNU Lesser General Public
9
* License as published by the Free Software Foundation; either
10
* version 2.1 of the License, or (at your option) any later version.
12
* FFmpeg is distributed in the hope that it will be useful,
13
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
* Lesser General Public License for more details.
17
* You should have received a copy of the GNU Lesser General Public
18
* License along with FFmpeg; if not, write to the Free Software
19
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
28
#include <a52dec/a52.h>
30
#ifdef CONFIG_LIBA52BIN
32
static const char* liba52name = "liba52.so.0";
36
* liba52 - Copyright (C) Aaron Holtzman
37
* released under the GPL license.
39
typedef struct AC3DecodeState {
40
uint8_t inbuf[4096]; /* input buffer */
49
* virtual method table
51
* using this function table so the liba52 doesn't
52
* have to be really linked together with ffmpeg
53
* and might be linked in runtime - this allows binary
54
* distribution of ffmpeg library which doens't depend
55
* on liba52 library - but if user has it installed
56
* it will be used - user might install such library
60
a52_state_t* (*a52_init)(uint32_t mm_accel);
61
sample_t* (*a52_samples)(a52_state_t * state);
62
int (*a52_syncinfo)(uint8_t * buf, int * flags,
63
int * sample_rate, int * bit_rate);
64
int (*a52_frame)(a52_state_t * state, uint8_t * buf, int * flags,
65
sample_t * level, sample_t bias);
66
void (*a52_dynrng)(a52_state_t * state,
67
sample_t (* call) (sample_t, void *), void * data);
68
int (*a52_block)(a52_state_t * state);
69
void (*a52_free)(a52_state_t * state);
73
static void* dlsymm(void* handle, const char* symbol)
75
void* f = dlsym(handle, symbol);
77
av_log( NULL, AV_LOG_ERROR, "A52 Decoder - function '%s' can't be resolved\n", symbol);
81
static int a52_decode_init(AVCodecContext *avctx)
83
AC3DecodeState *s = avctx->priv_data;
85
#ifdef CONFIG_LIBA52BIN
86
s->handle = dlopen(liba52name, RTLD_LAZY);
89
av_log( avctx, AV_LOG_ERROR, "A52 library %s could not be opened! \n%s\n", liba52name, dlerror());
92
s->a52_init = (a52_state_t* (*)(uint32_t)) dlsymm(s->handle, "a52_init");
93
s->a52_samples = (sample_t* (*)(a52_state_t*)) dlsymm(s->handle, "a52_samples");
94
s->a52_syncinfo = (int (*)(uint8_t*, int*, int*, int*)) dlsymm(s->handle, "a52_syncinfo");
95
s->a52_frame = (int (*)(a52_state_t*, uint8_t*, int*, sample_t*, sample_t)) dlsymm(s->handle, "a52_frame");
96
s->a52_block = (int (*)(a52_state_t*)) dlsymm(s->handle, "a52_block");
97
s->a52_free = (void (*)(a52_state_t*)) dlsymm(s->handle, "a52_free");
98
if (!s->a52_init || !s->a52_samples || !s->a52_syncinfo
99
|| !s->a52_frame || !s->a52_block || !s->a52_free)
106
s->a52_init = a52_init;
107
s->a52_samples = a52_samples;
108
s->a52_syncinfo = a52_syncinfo;
109
s->a52_frame = a52_frame;
110
s->a52_block = a52_block;
111
s->a52_free = a52_free;
113
s->state = s->a52_init(0); /* later use CPU flags */
114
s->samples = s->a52_samples(s->state);
115
s->inbuf_ptr = s->inbuf;
121
/**** the following two functions comes from a52dec */
122
static inline int blah (int32_t i)
126
else if (i < 0x43bf8000)
128
return i - 0x43c00000;
131
static inline void float_to_int (float * _f, int16_t * s16, int nchannels)
134
int32_t * f = (int32_t *) _f; // XXX assumes IEEE float format
138
for (i = 0; i < 256; i++) {
139
for (c = 0; c < nchannels; c += 256)
140
s16[j++] = blah (f[i + c]);
146
#define HEADER_SIZE 7
148
static int a52_decode_frame(AVCodecContext *avctx,
149
void *data, int *data_size,
150
uint8_t *buf, int buf_size)
152
AC3DecodeState *s = avctx->priv_data;
155
int sample_rate, bit_rate;
156
short *out_samples = data;
158
static const int ac3_channels[8] = {
159
2, 1, 2, 3, 3, 4, 4, 5
165
while (buf_size > 0) {
166
len = s->inbuf_ptr - s->inbuf;
167
if (s->frame_size == 0) {
168
/* no header seen : find one. We need at least 7 bytes to parse it */
169
len = HEADER_SIZE - len;
172
memcpy(s->inbuf_ptr, buf_ptr, len);
176
if ((s->inbuf_ptr - s->inbuf) == HEADER_SIZE) {
177
len = s->a52_syncinfo(s->inbuf, &s->flags, &sample_rate, &bit_rate);
179
/* no sync found : move by one byte (inefficient, but simple!) */
180
memcpy(s->inbuf, s->inbuf + 1, HEADER_SIZE - 1);
184
/* update codec info */
185
avctx->sample_rate = sample_rate;
186
s->channels = ac3_channels[s->flags & 7];
187
if (s->flags & A52_LFE)
189
if (avctx->channels == 0)
190
/* No specific number of channel requested */
191
avctx->channels = s->channels;
192
else if (s->channels < avctx->channels) {
193
av_log(avctx, AV_LOG_ERROR, "ac3dec: AC3 Source channels are less than specified: output to %d channels.. (frmsize: %d)\n", s->channels, len);
194
avctx->channels = s->channels;
196
avctx->bit_rate = bit_rate;
199
} else if (len < s->frame_size) {
200
len = s->frame_size - len;
204
memcpy(s->inbuf_ptr, buf_ptr, len);
210
if (avctx->channels == 1)
212
else if (avctx->channels == 2)
215
flags |= A52_ADJUST_LEVEL;
217
if (s->a52_frame(s->state, s->inbuf, &flags, &level, 384)) {
219
av_log(avctx, AV_LOG_ERROR, "Error decoding frame\n");
220
s->inbuf_ptr = s->inbuf;
224
for (i = 0; i < 6; i++) {
225
if (s->a52_block(s->state))
227
float_to_int(s->samples, out_samples + i * 256 * avctx->channels, avctx->channels);
229
s->inbuf_ptr = s->inbuf;
231
*data_size = 6 * avctx->channels * 256 * sizeof(int16_t);
235
return buf_ptr - buf;
238
static int a52_decode_end(AVCodecContext *avctx)
240
AC3DecodeState *s = avctx->priv_data;
241
s->a52_free(s->state);
242
#ifdef CONFIG_LIBA52BIN
248
AVCodec liba52_decoder = {
252
sizeof(AC3DecodeState),