| 
									
										
										
										
											2005-05-22 23:39:11 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Interface to libgsm for gsm encoding/decoding | 
					
						
							|  |  |  |  * Copyright (c) 2005 Alban Bedel <albeu@free.fr> | 
					
						
							| 
									
										
										
										
											2007-02-20 11:09:47 +00:00
										 |  |  |  * Copyright (c) 2006, 2007 Michel Bardiaux <mbardiaux@mediaxim.be> | 
					
						
							| 
									
										
										
										
											2005-05-22 23:39:11 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * This file is part of FFmpeg. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * FFmpeg is free software; you can redistribute it and/or | 
					
						
							| 
									
										
										
										
											2005-05-22 23:39:11 +00:00
										 |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2005-05-22 23:39:11 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * FFmpeg is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2005-05-22 23:39:11 +00:00
										 |  |  |  * 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 | 
					
						
							| 
									
										
										
										
											2006-10-07 15:30:46 +00:00
										 |  |  |  * License along with FFmpeg; if not, write to the Free Software | 
					
						
							| 
									
										
										
										
											2006-01-12 22:43:26 +00:00
										 |  |  |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | 
					
						
							| 
									
										
										
										
											2005-05-22 23:39:11 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-05-22 23:39:11 +00:00
										 |  |  | /**
 | 
					
						
							| 
									
										
										
										
											2010-04-20 14:45:34 +00:00
										 |  |  |  * @file | 
					
						
							| 
									
										
										
										
											2005-05-22 23:39:11 +00:00
										 |  |  |  * Interface to libgsm for gsm encoding/decoding | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-20 11:09:47 +00:00
										 |  |  | // The idiosyncrasies of GSM-in-WAV are explained at http://kbs.cs.tu-berlin.de/~jutta/toast.html
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-05-22 23:39:11 +00:00
										 |  |  | #include "avcodec.h"
 | 
					
						
							| 
									
										
										
										
											2010-02-13 03:43:10 +00:00
										 |  |  | #include <gsm/gsm.h>
 | 
					
						
							| 
									
										
										
										
											2005-05-22 23:39:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-28 12:46:26 +00:00
										 |  |  | // gsm.h misses some essential constants
 | 
					
						
							| 
									
										
										
										
											2005-05-22 23:39:11 +00:00
										 |  |  | #define GSM_BLOCK_SIZE 33
 | 
					
						
							| 
									
										
										
										
											2007-02-20 11:09:47 +00:00
										 |  |  | #define GSM_MS_BLOCK_SIZE 65
 | 
					
						
							| 
									
										
										
										
											2005-05-22 23:39:11 +00:00
										 |  |  | #define GSM_FRAME_SIZE 160
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-12 12:13:05 -04:00
										 |  |  | static av_cold int libgsm_encode_init(AVCodecContext *avctx) { | 
					
						
							| 
									
										
										
										
											2008-04-25 13:05:15 +00:00
										 |  |  |     if (avctx->channels > 1) { | 
					
						
							|  |  |  |         av_log(avctx, AV_LOG_ERROR, "Mono required for GSM, got %d channels\n", | 
					
						
							|  |  |  |                avctx->channels); | 
					
						
							| 
									
										
										
										
											2005-05-22 23:39:11 +00:00
										 |  |  |         return -1; | 
					
						
							| 
									
										
										
										
											2008-04-25 13:05:15 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-04-29 18:31:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-12 12:18:00 -04:00
										 |  |  |     if (avctx->sample_rate != 8000) { | 
					
						
							|  |  |  |         av_log(avctx, AV_LOG_ERROR, "Sample rate 8000Hz required for GSM, got %dHz\n", | 
					
						
							|  |  |  |                avctx->sample_rate); | 
					
						
							|  |  |  |         if (avctx->strict_std_compliance > FF_COMPLIANCE_UNOFFICIAL) | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (avctx->bit_rate != 13000 /* Official */ && | 
					
						
							|  |  |  |         avctx->bit_rate != 13200 /* Very common */ && | 
					
						
							|  |  |  |         avctx->bit_rate != 0 /* Unknown; a.o. mov does not set bitrate when decoding */ ) { | 
					
						
							|  |  |  |         av_log(avctx, AV_LOG_ERROR, "Bitrate 13000bps required for GSM, got %dbps\n", | 
					
						
							|  |  |  |                avctx->bit_rate); | 
					
						
							|  |  |  |         if (avctx->strict_std_compliance > FF_COMPLIANCE_UNOFFICIAL) | 
					
						
							|  |  |  |             return -1; | 
					
						
							| 
									
										
										
										
											2008-04-29 18:31:29 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2005-05-22 23:39:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     avctx->priv_data = gsm_create(); | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-20 11:09:47 +00:00
										 |  |  |     switch(avctx->codec_id) { | 
					
						
							|  |  |  |     case CODEC_ID_GSM: | 
					
						
							|  |  |  |         avctx->frame_size = GSM_FRAME_SIZE; | 
					
						
							|  |  |  |         avctx->block_align = GSM_BLOCK_SIZE; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case CODEC_ID_GSM_MS: { | 
					
						
							|  |  |  |         int one = 1; | 
					
						
							|  |  |  |         gsm_option(avctx->priv_data, GSM_OPT_WAV49, &one); | 
					
						
							|  |  |  |         avctx->frame_size = 2*GSM_FRAME_SIZE; | 
					
						
							|  |  |  |         avctx->block_align = GSM_MS_BLOCK_SIZE; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-05-22 23:39:11 +00:00
										 |  |  |     avctx->coded_frame= avcodec_alloc_frame(); | 
					
						
							|  |  |  |     avctx->coded_frame->key_frame= 1; | 
					
						
							| 
									
										
										
										
											2005-12-17 18:14:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-05-22 23:39:11 +00:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-12 12:13:05 -04:00
										 |  |  | static av_cold int libgsm_encode_close(AVCodecContext *avctx) { | 
					
						
							| 
									
										
										
										
											2008-11-10 20:02:00 +00:00
										 |  |  |     av_freep(&avctx->coded_frame); | 
					
						
							| 
									
										
										
										
											2005-05-22 23:39:11 +00:00
										 |  |  |     gsm_destroy(avctx->priv_data); | 
					
						
							|  |  |  |     avctx->priv_data = NULL; | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int libgsm_encode_frame(AVCodecContext *avctx, | 
					
						
							|  |  |  |                                unsigned char *frame, int buf_size, void *data) { | 
					
						
							|  |  |  |     // we need a full block
 | 
					
						
							| 
									
										
										
										
											2007-02-20 11:09:47 +00:00
										 |  |  |     if(buf_size < avctx->block_align) return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch(avctx->codec_id) { | 
					
						
							|  |  |  |     case CODEC_ID_GSM: | 
					
						
							|  |  |  |         gsm_encode(avctx->priv_data,data,frame); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case CODEC_ID_GSM_MS: | 
					
						
							|  |  |  |         gsm_encode(avctx->priv_data,data,frame); | 
					
						
							|  |  |  |         gsm_encode(avctx->priv_data,((short*)data)+GSM_FRAME_SIZE,frame+32); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return avctx->block_align; | 
					
						
							| 
									
										
										
										
											2005-05-22 23:39:11 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-25 21:40:11 +00:00
										 |  |  | AVCodec ff_libgsm_encoder = { | 
					
						
							| 
									
										
										
										
											2011-07-17 12:54:31 +02:00
										 |  |  |     .name           = "libgsm", | 
					
						
							|  |  |  |     .type           = AVMEDIA_TYPE_AUDIO, | 
					
						
							|  |  |  |     .id             = CODEC_ID_GSM, | 
					
						
							| 
									
										
										
										
											2011-09-12 12:13:05 -04:00
										 |  |  |     .init           = libgsm_encode_init, | 
					
						
							| 
									
										
										
										
											2011-07-17 12:54:31 +02:00
										 |  |  |     .encode         = libgsm_encode_frame, | 
					
						
							| 
									
										
										
										
											2011-09-12 12:13:05 -04:00
										 |  |  |     .close          = libgsm_encode_close, | 
					
						
							| 
									
										
										
										
											2010-11-12 11:04:40 +00:00
										 |  |  |     .sample_fmts = (const enum AVSampleFormat[]){AV_SAMPLE_FMT_S16,AV_SAMPLE_FMT_NONE}, | 
					
						
							| 
									
										
										
										
											2008-06-12 21:50:13 +00:00
										 |  |  |     .long_name = NULL_IF_CONFIG_SMALL("libgsm GSM"), | 
					
						
							| 
									
										
										
										
											2005-05-22 23:39:11 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-25 21:40:11 +00:00
										 |  |  | AVCodec ff_libgsm_ms_encoder = { | 
					
						
							| 
									
										
										
										
											2011-07-17 12:54:31 +02:00
										 |  |  |     .name           = "libgsm_ms", | 
					
						
							|  |  |  |     .type           = AVMEDIA_TYPE_AUDIO, | 
					
						
							|  |  |  |     .id             = CODEC_ID_GSM_MS, | 
					
						
							| 
									
										
										
										
											2011-09-12 12:13:05 -04:00
										 |  |  |     .init           = libgsm_encode_init, | 
					
						
							| 
									
										
										
										
											2011-07-17 12:54:31 +02:00
										 |  |  |     .encode         = libgsm_encode_frame, | 
					
						
							| 
									
										
										
										
											2011-09-12 12:13:05 -04:00
										 |  |  |     .close          = libgsm_encode_close, | 
					
						
							| 
									
										
										
										
											2010-11-12 11:04:40 +00:00
										 |  |  |     .sample_fmts = (const enum AVSampleFormat[]){AV_SAMPLE_FMT_S16,AV_SAMPLE_FMT_NONE}, | 
					
						
							| 
									
										
										
										
											2008-06-12 21:50:13 +00:00
										 |  |  |     .long_name = NULL_IF_CONFIG_SMALL("libgsm GSM Microsoft variant"), | 
					
						
							| 
									
										
										
										
											2007-02-20 11:09:47 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-06 12:17:45 -04:00
										 |  |  | typedef struct LibGSMDecodeContext { | 
					
						
							|  |  |  |     AVFrame frame; | 
					
						
							|  |  |  |     struct gsm_state *state; | 
					
						
							|  |  |  | } LibGSMDecodeContext; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-12 12:13:05 -04:00
										 |  |  | static av_cold int libgsm_decode_init(AVCodecContext *avctx) { | 
					
						
							| 
									
										
										
										
											2011-09-06 12:17:45 -04:00
										 |  |  |     LibGSMDecodeContext *s = avctx->priv_data; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-12 12:13:05 -04:00
										 |  |  |     if (avctx->channels > 1) { | 
					
						
							|  |  |  |         av_log(avctx, AV_LOG_ERROR, "Mono required for GSM, got %d channels\n", | 
					
						
							|  |  |  |                avctx->channels); | 
					
						
							|  |  |  |         return -1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!avctx->channels) | 
					
						
							|  |  |  |         avctx->channels = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!avctx->sample_rate) | 
					
						
							|  |  |  |         avctx->sample_rate = 8000; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     avctx->sample_fmt = AV_SAMPLE_FMT_S16; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-06 12:17:45 -04:00
										 |  |  |     s->state = gsm_create(); | 
					
						
							| 
									
										
										
										
											2011-09-12 12:13:05 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     switch(avctx->codec_id) { | 
					
						
							|  |  |  |     case CODEC_ID_GSM: | 
					
						
							|  |  |  |         avctx->frame_size  = GSM_FRAME_SIZE; | 
					
						
							|  |  |  |         avctx->block_align = GSM_BLOCK_SIZE; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case CODEC_ID_GSM_MS: { | 
					
						
							|  |  |  |         int one = 1; | 
					
						
							| 
									
										
										
										
											2011-12-14 22:14:28 +02:00
										 |  |  |         gsm_option(s->state, GSM_OPT_WAV49, &one); | 
					
						
							| 
									
										
										
										
											2011-09-12 12:13:05 -04:00
										 |  |  |         avctx->frame_size  = 2 * GSM_FRAME_SIZE; | 
					
						
							|  |  |  |         avctx->block_align = GSM_MS_BLOCK_SIZE; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-06 12:17:45 -04:00
										 |  |  |     avcodec_get_frame_defaults(&s->frame); | 
					
						
							|  |  |  |     avctx->coded_frame = &s->frame; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-12 12:13:05 -04:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static av_cold int libgsm_decode_close(AVCodecContext *avctx) { | 
					
						
							| 
									
										
										
										
											2011-09-06 12:17:45 -04:00
										 |  |  |     LibGSMDecodeContext *s = avctx->priv_data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     gsm_destroy(s->state); | 
					
						
							|  |  |  |     s->state = NULL; | 
					
						
							| 
									
										
										
										
											2011-09-12 12:13:05 -04:00
										 |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-06 12:17:45 -04:00
										 |  |  | static int libgsm_decode_frame(AVCodecContext *avctx, void *data, | 
					
						
							|  |  |  |                                int *got_frame_ptr, AVPacket *avpkt) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-10-28 10:28:41 -04:00
										 |  |  |     int i, ret; | 
					
						
							| 
									
										
										
										
											2011-09-06 12:17:45 -04:00
										 |  |  |     LibGSMDecodeContext *s = avctx->priv_data; | 
					
						
							| 
									
										
										
										
											2011-07-07 01:31:01 +02:00
										 |  |  |     uint8_t *buf = avpkt->data; | 
					
						
							| 
									
										
										
										
											2009-04-07 15:59:50 +00:00
										 |  |  |     int buf_size = avpkt->size; | 
					
						
							| 
									
										
										
										
											2011-09-06 12:17:45 -04:00
										 |  |  |     int16_t *samples; | 
					
						
							| 
									
										
										
										
											2011-10-28 00:52:36 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-28 10:18:07 -04:00
										 |  |  |     if (buf_size < avctx->block_align) { | 
					
						
							|  |  |  |         av_log(avctx, AV_LOG_ERROR, "Packet is too small\n"); | 
					
						
							|  |  |  |         return AVERROR_INVALIDDATA; | 
					
						
							| 
									
										
										
										
											2007-02-20 11:09:47 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-10-28 10:18:07 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-06 12:17:45 -04:00
										 |  |  |     /* get output buffer */ | 
					
						
							|  |  |  |     s->frame.nb_samples = avctx->frame_size; | 
					
						
							|  |  |  |     if ((ret = avctx->get_buffer(avctx, &s->frame)) < 0) { | 
					
						
							|  |  |  |         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); | 
					
						
							|  |  |  |         return ret; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     samples = (int16_t *)s->frame.data[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-28 10:28:41 -04:00
										 |  |  |     for (i = 0; i < avctx->frame_size / GSM_FRAME_SIZE; i++) { | 
					
						
							| 
									
										
										
										
											2011-09-06 12:17:45 -04:00
										 |  |  |         if ((ret = gsm_decode(s->state, buf, samples)) < 0) | 
					
						
							| 
									
										
										
										
											2011-10-28 10:28:41 -04:00
										 |  |  |             return -1; | 
					
						
							|  |  |  |         buf     += GSM_BLOCK_SIZE; | 
					
						
							|  |  |  |         samples += GSM_FRAME_SIZE; | 
					
						
							| 
									
										
										
										
											2007-02-20 11:09:47 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-10-28 00:52:36 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-06 12:17:45 -04:00
										 |  |  |     *got_frame_ptr   = 1; | 
					
						
							|  |  |  |     *(AVFrame *)data = s->frame; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-20 11:09:47 +00:00
										 |  |  |     return avctx->block_align; | 
					
						
							| 
									
										
										
										
											2005-05-22 23:39:11 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-28 10:35:15 -04:00
										 |  |  | static void libgsm_flush(AVCodecContext *avctx) { | 
					
						
							| 
									
										
										
										
											2011-09-06 12:17:45 -04:00
										 |  |  |     LibGSMDecodeContext *s = avctx->priv_data; | 
					
						
							| 
									
										
										
										
											2011-12-14 22:32:29 +02:00
										 |  |  |     int one = 1; | 
					
						
							| 
									
										
										
										
											2011-09-06 12:17:45 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     gsm_destroy(s->state); | 
					
						
							|  |  |  |     s->state = gsm_create(); | 
					
						
							| 
									
										
										
										
											2011-12-14 22:32:29 +02:00
										 |  |  |     if (avctx->codec_id == CODEC_ID_GSM_MS) | 
					
						
							|  |  |  |         gsm_option(s->state, GSM_OPT_WAV49, &one); | 
					
						
							| 
									
										
										
										
											2011-10-28 10:35:15 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-25 21:40:11 +00:00
										 |  |  | AVCodec ff_libgsm_decoder = { | 
					
						
							| 
									
										
										
										
											2011-07-17 12:54:31 +02:00
										 |  |  |     .name           = "libgsm", | 
					
						
							|  |  |  |     .type           = AVMEDIA_TYPE_AUDIO, | 
					
						
							|  |  |  |     .id             = CODEC_ID_GSM, | 
					
						
							| 
									
										
										
										
											2011-09-06 12:17:45 -04:00
										 |  |  |     .priv_data_size = sizeof(LibGSMDecodeContext), | 
					
						
							| 
									
										
										
										
											2011-09-12 12:13:05 -04:00
										 |  |  |     .init           = libgsm_decode_init, | 
					
						
							|  |  |  |     .close          = libgsm_decode_close, | 
					
						
							| 
									
										
										
										
											2011-07-17 12:54:31 +02:00
										 |  |  |     .decode         = libgsm_decode_frame, | 
					
						
							| 
									
										
										
										
											2011-10-28 10:35:15 -04:00
										 |  |  |     .flush          = libgsm_flush, | 
					
						
							| 
									
										
										
										
											2011-09-06 12:17:45 -04:00
										 |  |  |     .capabilities   = CODEC_CAP_DR1, | 
					
						
							| 
									
										
										
										
											2008-06-12 21:50:13 +00:00
										 |  |  |     .long_name = NULL_IF_CONFIG_SMALL("libgsm GSM"), | 
					
						
							| 
									
										
										
										
											2005-05-22 23:39:11 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2007-02-20 11:09:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-25 21:40:11 +00:00
										 |  |  | AVCodec ff_libgsm_ms_decoder = { | 
					
						
							| 
									
										
										
										
											2011-07-17 12:54:31 +02:00
										 |  |  |     .name           = "libgsm_ms", | 
					
						
							|  |  |  |     .type           = AVMEDIA_TYPE_AUDIO, | 
					
						
							|  |  |  |     .id             = CODEC_ID_GSM_MS, | 
					
						
							| 
									
										
										
										
											2011-09-06 12:17:45 -04:00
										 |  |  |     .priv_data_size = sizeof(LibGSMDecodeContext), | 
					
						
							| 
									
										
										
										
											2011-09-12 12:13:05 -04:00
										 |  |  |     .init           = libgsm_decode_init, | 
					
						
							|  |  |  |     .close          = libgsm_decode_close, | 
					
						
							| 
									
										
										
										
											2011-07-17 12:54:31 +02:00
										 |  |  |     .decode         = libgsm_decode_frame, | 
					
						
							| 
									
										
										
										
											2011-10-28 10:35:15 -04:00
										 |  |  |     .flush          = libgsm_flush, | 
					
						
							| 
									
										
										
										
											2011-09-06 12:17:45 -04:00
										 |  |  |     .capabilities   = CODEC_CAP_DR1, | 
					
						
							| 
									
										
										
										
											2008-06-12 21:50:13 +00:00
										 |  |  |     .long_name = NULL_IF_CONFIG_SMALL("libgsm GSM Microsoft variant"), | 
					
						
							| 
									
										
										
										
											2007-02-20 11:09:47 +00:00
										 |  |  | }; |