libspeexdec.c 6.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * Copyright (C) 2008 David Conrad
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg 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.1 of the License, or (at your option) any later version.
 *
 * FFmpeg is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#include <speex/speex.h>
#include <speex/speex_header.h>
#include <speex/speex_stereo.h>
#include <speex/speex_callbacks.h>
25

26
#include "libavutil/channel_layout.h"
27
#include "libavutil/common.h"
28
#include "avcodec.h"
29
#include "internal.h"
30

31
typedef struct LibSpeexContext {
32 33 34
    SpeexBits bits;
    SpeexStereoState stereo;
    void *dec_state;
35
    int frame_size;
36
    int pktsize;
37 38 39 40 41 42 43
} LibSpeexContext;


static av_cold int libspeex_decode_init(AVCodecContext *avctx)
{
    LibSpeexContext *s = avctx->priv_data;
    const SpeexMode *mode;
44
    SpeexHeader *header = NULL;
45
    int spx_mode;
46

47
    if (avctx->extradata && avctx->extradata_size >= 80) {
48 49 50 51 52
        header = speex_packet_to_header(avctx->extradata,
                                        avctx->extradata_size);
        if (!header)
            av_log(avctx, AV_LOG_WARNING, "Invalid Speex header\n");
    }
53
    if (avctx->codec_tag == MKTAG('S', 'P', 'X', 'N')) {
54
        int quality;
55 56 57 58
        if (!avctx->extradata || avctx->extradata && avctx->extradata_size < 47) {
            av_log(avctx, AV_LOG_ERROR, "Missing or invalid extradata.\n");
            return AVERROR_INVALIDDATA;
        }
59 60 61

        quality = avctx->extradata[37];
        if (quality > 10) {
62
            av_log(avctx, AV_LOG_ERROR, "Unsupported quality mode %d.\n", quality);
63 64
            return AVERROR_PATCHWELCOME;
        }
65

66
        s->pktsize = ((const int[]){5,10,15,20,20,28,28,38,38,46,62})[quality];
67

68 69
        spx_mode           = 0;
    } else if (header) {
70
        avctx->sample_rate = header->rate;
71 72 73
        avctx->channels    = header->nb_channels;
        spx_mode           = header->mode;
        speex_header_free(header);
74 75 76 77 78 79 80 81 82 83 84
    } else {
        switch (avctx->sample_rate) {
        case 8000:  spx_mode = 0; break;
        case 16000: spx_mode = 1; break;
        case 32000: spx_mode = 2; break;
        default:
            /* libspeex can handle any mode if initialized as ultra-wideband */
            av_log(avctx, AV_LOG_WARNING, "Invalid sample rate: %d\n"
                                          "Decoding as 32kHz ultra-wideband\n",
                                          avctx->sample_rate);
            spx_mode = 2;
85
        }
86 87 88 89 90 91 92
    }

    mode = speex_lib_get_mode(spx_mode);
    if (!mode) {
        av_log(avctx, AV_LOG_ERROR, "Unknown Speex mode %d", spx_mode);
        return AVERROR_INVALIDDATA;
    }
93
    s->frame_size      =  160 << spx_mode;
94 95
    if (!avctx->sample_rate)
        avctx->sample_rate = 8000 << spx_mode;
96

97 98 99 100 101
    if (avctx->channels < 1 || avctx->channels > 2) {
        /* libspeex can handle mono or stereo if initialized as stereo */
        av_log(avctx, AV_LOG_ERROR, "Invalid channel count: %d.\n"
                                    "Decoding as stereo.\n", avctx->channels);
        avctx->channels = 2;
102
    }
103 104
    avctx->channel_layout = avctx->channels == 2 ? AV_CH_LAYOUT_STEREO :
                                                   AV_CH_LAYOUT_MONO;
105 106 107 108

    speex_bits_init(&s->bits);
    s->dec_state = speex_decoder_init(mode);
    if (!s->dec_state) {
109
        av_log(avctx, AV_LOG_ERROR, "Error initializing libspeex decoder.\n");
110 111 112 113 114 115 116 117 118 119 120
        return -1;
    }

    if (avctx->channels == 2) {
        SpeexCallback callback;
        callback.callback_id = SPEEX_INBAND_STEREO;
        callback.func = speex_std_stereo_request_handler;
        callback.data = &s->stereo;
        s->stereo = (SpeexStereoState)SPEEX_STEREO_STATE_INIT;
        speex_decoder_ctl(s->dec_state, SPEEX_SET_HANDLER, &callback);
    }
121

122 123 124
    return 0;
}

125 126
static int libspeex_decode_frame(AVCodecContext *avctx, void *data,
                                 int *got_frame_ptr, AVPacket *avpkt)
127
{
128
    uint8_t *buf = avpkt->data;
129
    int buf_size = avpkt->size;
130
    LibSpeexContext *s = avctx->priv_data;
131
    AVFrame *frame     = data;
132 133
    int16_t *output;
    int ret, consumed = 0;
134
    avctx->sample_fmt = AV_SAMPLE_FMT_S16;
135 136

    /* get output buffer */
137
    frame->nb_samples = s->frame_size;
138
    if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
139
        return ret;
140
    output = (int16_t *)frame->data[0];
141

142 143 144 145 146
    /* if there is not enough data left for the smallest possible frame or the
       next 5 bits are a terminator code, reset the libspeex buffer using the
       current packet, otherwise ignore the current packet and keep decoding
       frames from the libspeex buffer. */
    if (speex_bits_remaining(&s->bits) < 5 ||
147
        speex_bits_peek_unsigned(&s->bits, 5) == 0xF) {
148 149
        /* check for flush packet */
        if (!buf || !buf_size) {
150
            *got_frame_ptr = 0;
151 152
            return buf_size;
        }
153 154
        if (s->pktsize && buf_size == 62)
            buf_size = s->pktsize;
155 156
        /* set new buffer */
        speex_bits_read_from(&s->bits, buf, buf_size);
157
        consumed = avpkt->size;
158
    }
159

160
    /* decode a single frame */
161 162 163
    ret = speex_decode_int(s->dec_state, &s->bits, output);
    if (ret <= -2) {
        av_log(avctx, AV_LOG_ERROR, "Error decoding Speex frame.\n");
164
        return AVERROR_INVALIDDATA;
165
    }
166 167
    if (avctx->channels == 2)
        speex_decode_stereo_int(output, s->frame_size, &s->stereo);
168

169
    *got_frame_ptr = 1;
170

171 172
    if (!avctx->bit_rate)
        speex_decoder_ctl(s->dec_state, SPEEX_GET_BITRATE, &avctx->bit_rate);
173
    return consumed;
174 175 176 177 178 179 180 181 182 183 184 185
}

static av_cold int libspeex_decode_close(AVCodecContext *avctx)
{
    LibSpeexContext *s = avctx->priv_data;

    speex_bits_destroy(&s->bits);
    speex_decoder_destroy(s->dec_state);

    return 0;
}

186 187 188 189 190 191
static av_cold void libspeex_decode_flush(AVCodecContext *avctx)
{
    LibSpeexContext *s = avctx->priv_data;
    speex_bits_reset(&s->bits);
}

192
AVCodec ff_libspeex_decoder = {
193
    .name           = "libspeex",
194
    .long_name      = NULL_IF_CONFIG_SMALL("libspeex Speex"),
195
    .type           = AVMEDIA_TYPE_AUDIO,
196
    .id             = AV_CODEC_ID_SPEEX,
197 198 199 200
    .priv_data_size = sizeof(LibSpeexContext),
    .init           = libspeex_decode_init,
    .close          = libspeex_decode_close,
    .decode         = libspeex_decode_frame,
201
    .flush          = libspeex_decode_flush,
202
    .capabilities   = AV_CODEC_CAP_SUBFRAMES | AV_CODEC_CAP_DELAY | AV_CODEC_CAP_DR1,
203
    .wrapper_name   = "libspeex",
204
};