ac3dec.c 5.23 KB
Newer Older
Fabrice Bellard's avatar
Fabrice Bellard committed
1 2
/*
 * AC3 decoder
3
 * Copyright (c) 2001 Fabrice Bellard.
Fabrice Bellard's avatar
Fabrice Bellard committed
4
 *
5 6 7 8
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
Fabrice Bellard's avatar
Fabrice Bellard committed
9
 *
10
 * This library is distributed in the hope that it will be useful,
Fabrice Bellard's avatar
Fabrice Bellard committed
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
Fabrice Bellard's avatar
Fabrice Bellard committed
14
 *
15 16 17
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
Fabrice Bellard's avatar
Fabrice Bellard committed
18
 */
Michael Niedermayer's avatar
Michael Niedermayer committed
19 20 21 22 23 24 25 26

/**
 * @file ac3dec.c
 * AC3 decoder.
 */

//#define DEBUG

Fabrice Bellard's avatar
Fabrice Bellard committed
27 28 29 30 31 32
#include "avcodec.h"
#include "libac3/ac3.h"

/* currently, I use libac3 which is Copyright (C) Aaron Holtzman and
   released under the GPL license. I may reimplement it someday... */
typedef struct AC3DecodeState {
33 34
    uint8_t inbuf[4096]; /* input buffer */
    uint8_t *inbuf_ptr;
Fabrice Bellard's avatar
Fabrice Bellard committed
35 36
    int frame_size;
    int flags;
37
    int channels;
Fabrice Bellard's avatar
Fabrice Bellard committed
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
    ac3_state_t state;
} AC3DecodeState;

static int ac3_decode_init(AVCodecContext *avctx)
{
    AC3DecodeState *s = avctx->priv_data;

    ac3_init ();
    s->inbuf_ptr = s->inbuf;
    s->frame_size = 0;
    return 0;
}

stream_samples_t samples;

/**** the following two functions comes from ac3dec */
static inline int blah (int32_t i)
{
    if (i > 0x43c07fff)
	return 32767;
    else if (i < 0x43bf8000)
	return -32768;
    else
	return i - 0x43c00000;
}

64
static inline void float_to_int (float * _f, int16_t * s16, int nchannels)
Fabrice Bellard's avatar
Fabrice Bellard committed
65
{
66
    int i, j, c;
Fabrice Bellard's avatar
Fabrice Bellard committed
67 68
    int32_t * f = (int32_t *) _f;	// XXX assumes IEEE float format

69 70
    j = 0;
    nchannels *= 256;
Fabrice Bellard's avatar
Fabrice Bellard committed
71
    for (i = 0; i < 256; i++) {
72 73
	for (c = 0; c < nchannels; c += 256)
	    s16[j++] = blah (f[i + c]);
Fabrice Bellard's avatar
Fabrice Bellard committed
74 75 76 77 78 79 80 81 82
    }
}

/**** end */

#define HEADER_SIZE 7

static int ac3_decode_frame(AVCodecContext *avctx, 
                            void *data, int *data_size,
83
                            uint8_t *buf, int buf_size)
Fabrice Bellard's avatar
Fabrice Bellard committed
84 85
{
    AC3DecodeState *s = avctx->priv_data;
86
    uint8_t *buf_ptr;
Fabrice Bellard's avatar
Fabrice Bellard committed
87 88 89 90
    int flags, i, len;
    int sample_rate, bit_rate;
    short *out_samples = data;
    float level;
91
    static const int ac3_channels[8] = {
92 93
	2, 1, 2, 3, 3, 4, 4, 5
    };
Fabrice Bellard's avatar
Fabrice Bellard committed
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114

    *data_size = 0;
    buf_ptr = buf;
    while (buf_size > 0) {
        len = s->inbuf_ptr - s->inbuf;
        if (s->frame_size == 0) {
            /* no header seen : find one. We need at least 7 bytes to parse it */
            len = HEADER_SIZE - len;
            if (len > buf_size)
                len = buf_size;
            memcpy(s->inbuf_ptr, buf_ptr, len);
            buf_ptr += len;
            s->inbuf_ptr += len;
            buf_size -= len;
            if ((s->inbuf_ptr - s->inbuf) == HEADER_SIZE) {
                len = ac3_syncinfo (s->inbuf, &s->flags, &sample_rate, &bit_rate);
                if (len == 0) {
                    /* no sync found : move by one byte (inefficient, but simple!) */
                    memcpy(s->inbuf, s->inbuf + 1, HEADER_SIZE - 1);
                    s->inbuf_ptr--;
                } else {
115
		    s->frame_size = len;
Fabrice Bellard's avatar
Fabrice Bellard committed
116 117
                    /* update codec info */
                    avctx->sample_rate = sample_rate;
118
                    s->channels = ac3_channels[s->flags & 7];
119
                    if (s->flags & AC3_LFE)
120 121 122 123 124 125 126 127 128
			s->channels++;
		    if (avctx->channels == 0)
			/* No specific number of channel requested */
			avctx->channels = s->channels;
		    else if (s->channels < avctx->channels) {
			fprintf(stderr, "ac3dec: AC3 Source channels are less than specified: output to %d channels.. (frmsize: %d)\n", s->channels, len);
			avctx->channels = s->channels;
		    }
		    avctx->bit_rate = bit_rate;
Fabrice Bellard's avatar
Fabrice Bellard committed
129 130 131 132 133 134
                }
            }
        } else if (len < s->frame_size) {
            len = s->frame_size - len;
            if (len > buf_size)
                len = buf_size;
135

Fabrice Bellard's avatar
Fabrice Bellard committed
136 137 138 139 140
            memcpy(s->inbuf_ptr, buf_ptr, len);
            buf_ptr += len;
            s->inbuf_ptr += len;
            buf_size -= len;
        } else {
141
            flags = s->flags;
Fabrice Bellard's avatar
Fabrice Bellard committed
142 143
            if (avctx->channels == 1)
                flags = AC3_MONO;
144
            else if (avctx->channels == 2)
Fabrice Bellard's avatar
Fabrice Bellard committed
145
                flags = AC3_STEREO;
146 147
            else
                flags |= AC3_ADJUST_LEVEL;
Fabrice Bellard's avatar
Fabrice Bellard committed
148 149 150 151 152 153 154 155 156 157
            level = 1;
            if (ac3_frame (&s->state, s->inbuf, &flags, &level, 384)) {
            fail:
                s->inbuf_ptr = s->inbuf;
                s->frame_size = 0;
                continue;
            }
            for (i = 0; i < 6; i++) {
                if (ac3_block (&s->state))
                    goto fail;
158
                float_to_int (*samples, out_samples + i * 256 * avctx->channels, avctx->channels);
Fabrice Bellard's avatar
Fabrice Bellard committed
159 160 161
            }
            s->inbuf_ptr = s->inbuf;
            s->frame_size = 0;
162
            *data_size = 6 * avctx->channels * 256 * sizeof(int16_t);
Fabrice Bellard's avatar
Fabrice Bellard committed
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
            break;
        }
    }
    return buf_ptr - buf;
}

static int ac3_decode_end(AVCodecContext *s)
{
    return 0;
}

AVCodec ac3_decoder = {
    "ac3",
    CODEC_TYPE_AUDIO,
    CODEC_ID_AC3,
    sizeof(AC3DecodeState),
    ac3_decode_init,
    NULL,
    ac3_decode_end,
    ac3_decode_frame,
};