#include "parser.h"
#include "png.h"
Go to the source code of this file.
Data Structures | |
struct | PNGParseContext |
Functions | |
static int | png_parse (AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size) |
Variables | |
AVCodecParser | ff_png_parser |
Definition in file png_parser.c.
static int png_parse | ( | AVCodecParserContext * | s, | |
AVCodecContext * | avctx, | |||
const uint8_t ** | poutbuf, | |||
int * | poutbuf_size, | |||
const uint8_t * | buf, | |||
int | buf_size | |||
) | [static] |
Definition at line 38 of file png_parser.c.
Initial value:
{ .codec_ids = { AV_CODEC_ID_PNG }, .priv_data_size = sizeof(PNGParseContext), .parser_parse = png_parse, .parser_close = ff_parse_close, }
Definition at line 115 of file png_parser.c.