#include <stdint.h>
#include "libavutil/intreadwrite.h"
#include "parser.h"
Go to the source code of this file.
Data Structures | |
struct | CookParseContext |
Functions | |
static int | cook_parse (AVCodecParserContext *s1, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size) |
Variables | |
AVCodecParser | ff_cook_parser |
Determines subpacket duration from extradata.
Definition in file cook_parser.c.
static int cook_parse | ( | AVCodecParserContext * | s1, | |
AVCodecContext * | avctx, | |||
const uint8_t ** | poutbuf, | |||
int * | poutbuf_size, | |||
const uint8_t * | buf, | |||
int | buf_size | |||
) | [static] |
Definition at line 37 of file cook_parser.c.
Initial value:
{ .codec_ids = { AV_CODEC_ID_COOK }, .priv_data_size = sizeof(CookParseContext), .parser_parse = cook_parse, }
Definition at line 55 of file cook_parser.c.