#include "parser.h"
#include "gsm.h"
Go to the source code of this file.
Data Structures | |
| struct | GSMParseContext |
Functions | |
| static int | gsm_parse (AVCodecParserContext *s1, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size) |
Variables | |
| AVCodecParser | ff_gsm_parser |
Splits packets into individual blocks.
Definition in file gsm_parser.c.
| static int gsm_parse | ( | AVCodecParserContext * | s1, | |
| AVCodecContext * | avctx, | |||
| const uint8_t ** | poutbuf, | |||
| int * | poutbuf_size, | |||
| const uint8_t * | buf, | |||
| int | buf_size | |||
| ) | [static] |
Definition at line 38 of file gsm_parser.c.
Initial value:
{
.codec_ids = { AV_CODEC_ID_GSM, AV_CODEC_ID_GSM_MS },
.priv_data_size = sizeof(GSMParseContext),
.parser_parse = gsm_parse,
.parser_close = ff_parse_close,
}
Definition at line 84 of file gsm_parser.c.
1.5.8