FFmpeg
Data Structures | Functions | Variables
png_parser.c File Reference
#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

const AVCodecParser ff_png_parser
 

Detailed Description

PNG parser

Definition in file png_parser.c.

Function Documentation

◆ png_parse()

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 37 of file png_parser.c.

Variable Documentation

◆ ff_png_parser

const AVCodecParser ff_png_parser
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 113 of file png_parser.c.

ff_parse_close
void ff_parse_close(AVCodecParserContext *s)
Definition: parser.c:289
AV_CODEC_ID_PNG
@ AV_CODEC_ID_PNG
Definition: codec_id.h:113
png_parse
static int png_parse(AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)
Definition: png_parser.c:37
PNGParseContext
Definition: png_parser.c:30