Store the frame size in the LibSpeexContext in case the header does not exist.
[ffmpeg-lucabe.git] / libavcodec / libspeexdec.c
blob88bf85f209892a7b4116db8d0963ff14a951b331
1 /*
2 * Copyright (C) 2008 David Conrad
4 * This file is part of FFmpeg.
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 #include "avcodec.h"
22 #include <speex/speex.h>
23 #include <speex/speex_header.h>
24 #include <speex/speex_stereo.h>
25 #include <speex/speex_callbacks.h>
27 typedef struct {
28 SpeexBits bits;
29 SpeexStereoState stereo;
30 void *dec_state;
31 SpeexHeader *header;
32 int frame_size;
33 } LibSpeexContext;
36 static av_cold int libspeex_decode_init(AVCodecContext *avctx)
38 LibSpeexContext *s = avctx->priv_data;
39 const SpeexMode *mode;
41 // defaults in the case of a missing header
42 if (avctx->sample_rate <= 8000)
43 mode = &speex_nb_mode;
44 else if (avctx->sample_rate <= 16000)
45 mode = &speex_wb_mode;
46 else
47 mode = &speex_uwb_mode;
49 if (avctx->extradata_size >= 80)
50 s->header = speex_packet_to_header(avctx->extradata, avctx->extradata_size);
52 avctx->sample_fmt = SAMPLE_FMT_S16;
53 if (s->header) {
54 avctx->sample_rate = s->header->rate;
55 avctx->channels = s->header->nb_channels;
56 avctx->frame_size = s->frame_size = s->header->frame_size;
57 if (s->header->frames_per_packet)
58 avctx->frame_size *= s->header->frames_per_packet;
60 mode = speex_lib_get_mode(s->header->mode);
61 if (!mode) {
62 av_log(avctx, AV_LOG_ERROR, "Unknown Speex mode %d", s->header->mode);
63 return -1;
65 } else
66 av_log(avctx, AV_LOG_INFO, "Missing Speex header, assuming defaults.\n");
68 if (avctx->channels > 2) {
69 av_log(avctx, AV_LOG_ERROR, "Only stereo and mono are supported.\n");
70 return -1;
73 speex_bits_init(&s->bits);
74 s->dec_state = speex_decoder_init(mode);
75 if (!s->dec_state) {
76 av_log(avctx, AV_LOG_ERROR, "Error initializing libspeex decoder.\n");
77 return -1;
80 if (!s->header) {
81 speex_decoder_ctl(s->dec_state, SPEEX_GET_FRAME_SIZE, &avctx->frame_size);
82 s->frame_size = avctx->frame_size;
85 if (avctx->channels == 2) {
86 SpeexCallback callback;
87 callback.callback_id = SPEEX_INBAND_STEREO;
88 callback.func = speex_std_stereo_request_handler;
89 callback.data = &s->stereo;
90 s->stereo = (SpeexStereoState)SPEEX_STEREO_STATE_INIT;
91 speex_decoder_ctl(s->dec_state, SPEEX_SET_HANDLER, &callback);
93 return 0;
96 static int libspeex_decode_frame(AVCodecContext *avctx,
97 void *data, int *data_size,
98 AVPacket *avpkt)
100 const uint8_t *buf = avpkt->data;
101 int buf_size = avpkt->size;
102 LibSpeexContext *s = avctx->priv_data;
103 int16_t *output = data, *end;
104 int i, num_samples;
106 num_samples = s->frame_size * avctx->channels;
107 end = output + *data_size / sizeof(*output);
109 speex_bits_read_from(&s->bits, buf, buf_size);
111 for (i = 0; speex_bits_remaining(&s->bits) && output + num_samples < end; i++) {
112 int ret = speex_decode_int(s->dec_state, &s->bits, output);
113 if (ret <= -2) {
114 av_log(avctx, AV_LOG_ERROR, "Error decoding Speex frame.\n");
115 return -1;
116 } else if (ret == -1)
117 // end of stream
118 break;
120 if (avctx->channels == 2)
121 speex_decode_stereo_int(output, s->frame_size, &s->stereo);
123 output += num_samples;
126 avctx->frame_size = s->frame_size * i;
127 *data_size = avctx->channels * avctx->frame_size * sizeof(*output);
128 return buf_size;
131 static av_cold int libspeex_decode_close(AVCodecContext *avctx)
133 LibSpeexContext *s = avctx->priv_data;
135 speex_header_free(s->header);
136 speex_bits_destroy(&s->bits);
137 speex_decoder_destroy(s->dec_state);
139 return 0;
142 AVCodec libspeex_decoder = {
143 "libspeex",
144 CODEC_TYPE_AUDIO,
145 CODEC_ID_SPEEX,
146 sizeof(LibSpeexContext),
147 libspeex_decode_init,
148 NULL,
149 libspeex_decode_close,
150 libspeex_decode_frame,
151 .long_name = NULL_IF_CONFIG_SMALL("libspeex Speex"),