libspeexdec.c 4.55 KB
Newer Older
1 2 3
/*
 * Copyright (C) 2008 David Conrad
 *
4
 * This file is part of Libav.
5
 *
6
 * Libav is free software; you can redistribute it and/or
7 8 9 10
 * 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.
 *
11
 * Libav is distributed in the hope that it will be useful,
12 13 14 15 16
 * 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
17
 * License along with Libav; if not, write to the Free Software
18 19 20 21 22 23 24 25 26 27 28 29 30 31
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#include "avcodec.h"
#include <speex/speex.h>
#include <speex/speex_header.h>
#include <speex/speex_stereo.h>
#include <speex/speex_callbacks.h>

typedef struct {
    SpeexBits bits;
    SpeexStereoState stereo;
    void *dec_state;
    SpeexHeader *header;
32
    int frame_size;
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
} LibSpeexContext;


static av_cold int libspeex_decode_init(AVCodecContext *avctx)
{
    LibSpeexContext *s = avctx->priv_data;
    const SpeexMode *mode;

    // defaults in the case of a missing header
    if (avctx->sample_rate <= 8000)
        mode = &speex_nb_mode;
    else if (avctx->sample_rate <= 16000)
        mode = &speex_wb_mode;
    else
        mode = &speex_uwb_mode;

    if (avctx->extradata_size >= 80)
        s->header = speex_packet_to_header(avctx->extradata, avctx->extradata_size);

52
    avctx->sample_fmt = AV_SAMPLE_FMT_S16;
53 54 55
    if (s->header) {
        avctx->sample_rate = s->header->rate;
        avctx->channels    = s->header->nb_channels;
56
        avctx->frame_size  = s->frame_size = s->header->frame_size;
57 58
        if (s->header->frames_per_packet)
            avctx->frame_size *= s->header->frames_per_packet;
59 60 61 62 63 64 65

        mode = speex_lib_get_mode(s->header->mode);
        if (!mode) {
            av_log(avctx, AV_LOG_ERROR, "Unknown Speex mode %d", s->header->mode);
            return -1;
        }
    } else
66
        av_log(avctx, AV_LOG_INFO, "Missing Speex header, assuming defaults.\n");
67 68

    if (avctx->channels > 2) {
69
        av_log(avctx, AV_LOG_ERROR, "Only stereo and mono are supported.\n");
70 71 72 73 74 75
        return -1;
    }

    speex_bits_init(&s->bits);
    s->dec_state = speex_decoder_init(mode);
    if (!s->dec_state) {
76
        av_log(avctx, AV_LOG_ERROR, "Error initializing libspeex decoder.\n");
77 78 79
        return -1;
    }

80
    if (!s->header) {
81
        speex_decoder_ctl(s->dec_state, SPEEX_GET_FRAME_SIZE, &s->frame_size);
82
    }
83 84 85 86 87 88 89 90 91 92 93 94 95 96

    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);
    }
    return 0;
}

static int libspeex_decode_frame(AVCodecContext *avctx,
                                 void *data, int *data_size,
97
                                 AVPacket *avpkt)
98
{
99 100
    const uint8_t *buf = avpkt->data;
    int buf_size = avpkt->size;
101 102 103 104
    LibSpeexContext *s = avctx->priv_data;
    int16_t *output = data, *end;
    int i, num_samples;

105
    num_samples = s->frame_size * avctx->channels;
106
    end = output + *data_size / sizeof(*output);
107 108 109 110 111 112

    speex_bits_read_from(&s->bits, buf, buf_size);

    for (i = 0; speex_bits_remaining(&s->bits) && output + num_samples < end; i++) {
        int ret = speex_decode_int(s->dec_state, &s->bits, output);
        if (ret <= -2) {
113
            av_log(avctx, AV_LOG_ERROR, "Error decoding Speex frame.\n");
114 115 116 117 118 119
            return -1;
        } else if (ret == -1)
            // end of stream
            break;

        if (avctx->channels == 2)
120
            speex_decode_stereo_int(output, s->frame_size, &s->stereo);
121 122 123 124

        output += num_samples;
    }

125
    avctx->frame_size = s->frame_size * i;
126
    *data_size = avctx->channels * avctx->frame_size * sizeof(*output);
127 128 129 130 131 132 133 134 135 136 137 138 139 140
    return buf_size;
}

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

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

    return 0;
}

141
AVCodec ff_libspeex_decoder = {
142
    "libspeex",
143
    AVMEDIA_TYPE_AUDIO,
144 145 146 147 148 149
    CODEC_ID_SPEEX,
    sizeof(LibSpeexContext),
    libspeex_decode_init,
    NULL,
    libspeex_decode_close,
    libspeex_decode_frame,
150
    .long_name = NULL_IF_CONFIG_SMALL("libspeex Speex"),
151
};