2010-07-10 07:55:06 +00:00
|
|
|
/*
|
|
|
|
* gsm 06.10 decoder
|
|
|
|
* Copyright (c) 2010 Reimar Döffinger <Reimar.Doeffinger@gmx.de>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* GSM decoder
|
|
|
|
*/
|
|
|
|
|
2012-11-10 15:00:00 +00:00
|
|
|
#include "libavutil/channel_layout.h"
|
2010-07-10 07:55:06 +00:00
|
|
|
#include "avcodec.h"
|
|
|
|
#include "get_bits.h"
|
2012-11-10 12:22:56 +00:00
|
|
|
#include "internal.h"
|
2010-10-02 09:51:26 +00:00
|
|
|
#include "msgsmdec.h"
|
2010-07-10 07:55:06 +00:00
|
|
|
|
2010-10-02 09:51:26 +00:00
|
|
|
#include "gsmdec_template.c"
|
2010-07-10 07:55:06 +00:00
|
|
|
|
|
|
|
static av_cold int gsm_init(AVCodecContext *avctx)
|
|
|
|
{
|
2012-10-22 19:45:38 +00:00
|
|
|
avctx->channels = 1;
|
|
|
|
avctx->channel_layout = AV_CH_LAYOUT_MONO;
|
2012-11-02 23:39:46 +00:00
|
|
|
if (!avctx->sample_rate)
|
|
|
|
avctx->sample_rate = 8000;
|
2012-10-22 19:45:38 +00:00
|
|
|
avctx->sample_fmt = AV_SAMPLE_FMT_S16;
|
2010-07-10 07:55:06 +00:00
|
|
|
|
|
|
|
switch (avctx->codec_id) {
|
2012-08-05 09:11:04 +00:00
|
|
|
case AV_CODEC_ID_GSM:
|
2010-07-10 07:55:06 +00:00
|
|
|
avctx->frame_size = GSM_FRAME_SIZE;
|
|
|
|
avctx->block_align = GSM_BLOCK_SIZE;
|
|
|
|
break;
|
2012-08-05 09:11:04 +00:00
|
|
|
case AV_CODEC_ID_GSM_MS:
|
2010-07-10 07:55:06 +00:00
|
|
|
avctx->frame_size = 2 * GSM_FRAME_SIZE;
|
2013-09-07 19:06:22 +00:00
|
|
|
if (!avctx->block_align)
|
|
|
|
avctx->block_align = GSM_MS_BLOCK_SIZE;
|
|
|
|
else
|
|
|
|
if (avctx->block_align < MSN_MIN_BLOCK_SIZE ||
|
|
|
|
avctx->block_align > GSM_MS_BLOCK_SIZE ||
|
|
|
|
(avctx->block_align - MSN_MIN_BLOCK_SIZE) % 3) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "Invalid block alignment %d\n",
|
|
|
|
avctx->block_align);
|
|
|
|
return AVERROR_INVALIDDATA;
|
|
|
|
}
|
2010-07-10 07:55:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int gsm_decode_frame(AVCodecContext *avctx, void *data,
|
2011-09-06 16:17:45 +00:00
|
|
|
int *got_frame_ptr, AVPacket *avpkt)
|
2010-07-10 07:55:06 +00:00
|
|
|
{
|
2012-12-23 23:00:01 +00:00
|
|
|
AVFrame *frame = data;
|
2010-07-10 07:55:06 +00:00
|
|
|
int res;
|
|
|
|
GetBitContext gb;
|
|
|
|
const uint8_t *buf = avpkt->data;
|
|
|
|
int buf_size = avpkt->size;
|
2011-09-06 16:17:45 +00:00
|
|
|
int16_t *samples;
|
2011-10-28 14:09:45 +00:00
|
|
|
|
2011-10-28 14:18:07 +00:00
|
|
|
if (buf_size < avctx->block_align) {
|
|
|
|
av_log(avctx, AV_LOG_ERROR, "Packet is too small\n");
|
2010-07-10 07:55:06 +00:00
|
|
|
return AVERROR_INVALIDDATA;
|
2011-10-28 14:18:07 +00:00
|
|
|
}
|
2010-07-10 07:55:06 +00:00
|
|
|
|
2011-09-06 16:17:45 +00:00
|
|
|
/* get output buffer */
|
2012-12-23 23:00:01 +00:00
|
|
|
frame->nb_samples = avctx->frame_size;
|
lavc: factorize ff_{thread_,re,}get_buffer error messages.
Coccinelle profile used:
@@
expression r, ctx, f, loglevel, str, flags;
@@
-if ((r = ff_get_buffer(ctx, f, flags)) < 0) {
- av_log(ctx, loglevel, str);
- return r;
-}
+if ((r = ff_get_buffer(ctx, f, flags)) < 0)
+ return r;
@@
expression r, ctx, f, loglevel, str;
@@
-if ((r = ff_reget_buffer(ctx, f)) < 0) {
- av_log(ctx, loglevel, str);
- return r;
-}
+if ((r = ff_reget_buffer(ctx, f)) < 0)
+ return r;
@@
expression r, ctx, f, loglevel, str, flags;
@@
-if ((r = ff_thread_get_buffer(ctx, f, flags)) < 0) {
- av_log(ctx, loglevel, str);
- return r;
-}
+if ((r = ff_thread_get_buffer(ctx, f, flags)) < 0)
+ return r;
...along with some manual patches for the remaining ones.
2013-03-12 07:41:53 +00:00
|
|
|
if ((res = ff_get_buffer(avctx, frame, 0)) < 0)
|
2011-09-06 16:17:45 +00:00
|
|
|
return res;
|
2012-12-23 23:00:01 +00:00
|
|
|
samples = (int16_t *)frame->data[0];
|
2011-09-06 16:17:45 +00:00
|
|
|
|
2010-07-10 07:55:06 +00:00
|
|
|
switch (avctx->codec_id) {
|
2012-08-05 09:11:04 +00:00
|
|
|
case AV_CODEC_ID_GSM:
|
2010-10-02 09:51:26 +00:00
|
|
|
init_get_bits(&gb, buf, buf_size * 8);
|
2010-07-10 07:55:06 +00:00
|
|
|
if (get_bits(&gb, 4) != 0xd)
|
|
|
|
av_log(avctx, AV_LOG_WARNING, "Missing GSM magic!\n");
|
2013-09-07 19:06:22 +00:00
|
|
|
res = gsm_decode_block(avctx, samples, &gb, GSM_13000);
|
2010-07-10 07:55:06 +00:00
|
|
|
if (res < 0)
|
|
|
|
return res;
|
|
|
|
break;
|
2012-08-05 09:11:04 +00:00
|
|
|
case AV_CODEC_ID_GSM_MS:
|
2013-09-07 19:06:22 +00:00
|
|
|
res = ff_msgsm_decode_block(avctx, samples, buf,
|
|
|
|
(GSM_MS_BLOCK_SIZE - avctx->block_align) / 3);
|
2010-07-10 07:55:06 +00:00
|
|
|
if (res < 0)
|
|
|
|
return res;
|
|
|
|
}
|
2011-09-06 16:17:45 +00:00
|
|
|
|
2012-12-23 23:00:01 +00:00
|
|
|
*got_frame_ptr = 1;
|
2011-09-06 16:17:45 +00:00
|
|
|
|
2010-07-10 07:55:06 +00:00
|
|
|
return avctx->block_align;
|
|
|
|
}
|
|
|
|
|
2011-10-28 14:07:41 +00:00
|
|
|
static void gsm_flush(AVCodecContext *avctx)
|
|
|
|
{
|
|
|
|
GSMContext *s = avctx->priv_data;
|
|
|
|
memset(s, 0, sizeof(*s));
|
|
|
|
}
|
|
|
|
|
2012-06-11 12:40:28 +00:00
|
|
|
#if CONFIG_GSM_DECODER
|
2024-02-05 11:18:57 +00:00
|
|
|
AVCodec ff_gsm_decoder = {
|
2011-07-17 10:54:31 +00:00
|
|
|
.name = "gsm",
|
2013-10-03 20:57:53 +00:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("GSM"),
|
2011-07-17 10:54:31 +00:00
|
|
|
.type = AVMEDIA_TYPE_AUDIO,
|
2012-08-05 09:11:04 +00:00
|
|
|
.id = AV_CODEC_ID_GSM,
|
2011-07-17 10:54:31 +00:00
|
|
|
.priv_data_size = sizeof(GSMContext),
|
|
|
|
.init = gsm_init,
|
|
|
|
.decode = gsm_decode_frame,
|
2011-10-28 14:07:41 +00:00
|
|
|
.flush = gsm_flush,
|
2022-05-23 03:23:35 +00:00
|
|
|
.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_CHANNEL_CONF,
|
2010-07-10 07:55:06 +00:00
|
|
|
};
|
2012-06-11 12:40:28 +00:00
|
|
|
#endif
|
|
|
|
#if CONFIG_GSM_MS_DECODER
|
2024-02-05 11:18:57 +00:00
|
|
|
AVCodec ff_gsm_ms_decoder = {
|
2011-07-17 10:54:31 +00:00
|
|
|
.name = "gsm_ms",
|
2013-10-03 20:57:53 +00:00
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("GSM Microsoft variant"),
|
2011-07-17 10:54:31 +00:00
|
|
|
.type = AVMEDIA_TYPE_AUDIO,
|
2012-08-05 09:11:04 +00:00
|
|
|
.id = AV_CODEC_ID_GSM_MS,
|
2011-07-17 10:54:31 +00:00
|
|
|
.priv_data_size = sizeof(GSMContext),
|
|
|
|
.init = gsm_init,
|
|
|
|
.decode = gsm_decode_frame,
|
2011-10-28 14:07:41 +00:00
|
|
|
.flush = gsm_flush,
|
2022-05-23 03:23:35 +00:00
|
|
|
.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_CHANNEL_CONF,
|
2010-07-10 07:55:06 +00:00
|
|
|
};
|
2012-06-11 12:40:28 +00:00
|
|
|
#endif
|