#include "avcodec.h"
#include "get_bits.h"
#include "msgsmdec.h"
#include "gsmdec_template.c"
Go to the source code of this file.
Functions | |
| static av_cold int | gsm_init (AVCodecContext *avctx) |
| static int | gsm_decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) |
Variables | |
| AVCodec | ff_gsm_decoder |
| AVCodec | ff_gsm_ms_decoder |
Definition in file gsmdec.c.
| static int gsm_decode_frame | ( | AVCodecContext * | avctx, | |
| void * | data, | |||
| int * | data_size, | |||
| AVPacket * | avpkt | |||
| ) | [static] |
| static av_cold int gsm_init | ( | AVCodecContext * | avctx | ) | [static] |
Initial value:
{
"gsm",
AVMEDIA_TYPE_AUDIO,
CODEC_ID_GSM,
sizeof(GSMContext),
gsm_init,
NULL,
NULL,
gsm_decode_frame,
.long_name = NULL_IF_CONFIG_SMALL("GSM"),
}
Initial value:
{
"gsm_ms",
AVMEDIA_TYPE_AUDIO,
CODEC_ID_GSM_MS,
sizeof(GSMContext),
gsm_init,
NULL,
NULL,
gsm_decode_frame,
.long_name = NULL_IF_CONFIG_SMALL("GSM Microsoft variant"),
}
1.5.8