libavcodec/gsmdec.c
b576934d
 /*
  * 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
  */
 
a903f8f0
 #include "libavutil/channel_layout.h"
b576934d
 #include "avcodec.h"
 #include "get_bits.h"
594d4d5d
 #include "internal.h"
645e7599
 #include "msgsmdec.h"
b576934d
 
645e7599
 #include "gsmdec_template.c"
b576934d
 
 static av_cold int gsm_init(AVCodecContext *avctx)
 {
32c7769e
     avctx->channels       = 1;
     avctx->channel_layout = AV_CH_LAYOUT_MONO;
6e6033b7
     if (!avctx->sample_rate)
         avctx->sample_rate = 8000;
32c7769e
     avctx->sample_fmt     = AV_SAMPLE_FMT_S16;
b576934d
 
     switch (avctx->codec_id) {
36ef5369
     case AV_CODEC_ID_GSM:
b576934d
         avctx->frame_size  = GSM_FRAME_SIZE;
         avctx->block_align = GSM_BLOCK_SIZE;
         break;
36ef5369
     case AV_CODEC_ID_GSM_MS:
b576934d
         avctx->frame_size  = 2 * GSM_FRAME_SIZE;
a16577d9
         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;
             }
b576934d
     }
 
     return 0;
 }
 
 static int gsm_decode_frame(AVCodecContext *avctx, void *data,
0eea2129
                             int *got_frame_ptr, AVPacket *avpkt)
b576934d
 {
6fdfdb23
     AVFrame *frame = data;
b576934d
     int res;
     GetBitContext gb;
     const uint8_t *buf = avpkt->data;
     int buf_size = avpkt->size;
0eea2129
     int16_t *samples;
a2e25578
 
9d52f0a7
     if (buf_size < avctx->block_align) {
         av_log(avctx, AV_LOG_ERROR, "Packet is too small\n");
b576934d
         return AVERROR_INVALIDDATA;
9d52f0a7
     }
b576934d
 
0eea2129
     /* get output buffer */
6fdfdb23
     frame->nb_samples = avctx->frame_size;
1ec94b0f
     if ((res = ff_get_buffer(avctx, frame, 0)) < 0)
0eea2129
         return res;
6fdfdb23
     samples = (int16_t *)frame->data[0];
0eea2129
 
b576934d
     switch (avctx->codec_id) {
36ef5369
     case AV_CODEC_ID_GSM:
645e7599
         init_get_bits(&gb, buf, buf_size * 8);
b576934d
         if (get_bits(&gb, 4) != 0xd)
             av_log(avctx, AV_LOG_WARNING, "Missing GSM magic!\n");
a16577d9
         res = gsm_decode_block(avctx, samples, &gb, GSM_13000);
b576934d
         if (res < 0)
             return res;
         break;
36ef5369
     case AV_CODEC_ID_GSM_MS:
a16577d9
         res = ff_msgsm_decode_block(avctx, samples, buf,
                                     (GSM_MS_BLOCK_SIZE - avctx->block_align) / 3);
b576934d
         if (res < 0)
             return res;
     }
0eea2129
 
6fdfdb23
     *got_frame_ptr = 1;
0eea2129
 
b576934d
     return avctx->block_align;
 }
 
fc43fc9f
 static void gsm_flush(AVCodecContext *avctx)
 {
     GSMContext *s = avctx->priv_data;
     memset(s, 0, sizeof(*s));
 }
 
137e8081
 #if CONFIG_GSM_DECODER
e7e2df27
 AVCodec ff_gsm_decoder = {
ec6402b7
     .name           = "gsm",
b2bed932
     .long_name      = NULL_IF_CONFIG_SMALL("GSM"),
ec6402b7
     .type           = AVMEDIA_TYPE_AUDIO,
36ef5369
     .id             = AV_CODEC_ID_GSM,
ec6402b7
     .priv_data_size = sizeof(GSMContext),
     .init           = gsm_init,
     .decode         = gsm_decode_frame,
fc43fc9f
     .flush          = gsm_flush,
def97856
     .capabilities   = AV_CODEC_CAP_DR1,
b576934d
 };
137e8081
 #endif
 #if CONFIG_GSM_MS_DECODER
e7e2df27
 AVCodec ff_gsm_ms_decoder = {
ec6402b7
     .name           = "gsm_ms",
b2bed932
     .long_name      = NULL_IF_CONFIG_SMALL("GSM Microsoft variant"),
ec6402b7
     .type           = AVMEDIA_TYPE_AUDIO,
36ef5369
     .id             = AV_CODEC_ID_GSM_MS,
ec6402b7
     .priv_data_size = sizeof(GSMContext),
     .init           = gsm_init,
     .decode         = gsm_decode_frame,
fc43fc9f
     .flush          = gsm_flush,
def97856
     .capabilities   = AV_CODEC_CAP_DR1,
b576934d
 };
137e8081
 #endif