pngenc.c File Reference
#include "avcodec.h"
#include "internal.h"
#include "bytestream.h"
#include "dsputil.h"
#include "png.h"
#include "libavutil/avassert.h"
#include <zlib.h>
Include dependency graph for pngenc.c:

Go to the source code of this file.

Data Structures

struct  PNGEncContext
 

Macros

#define IOBUF_SIZE   4096
 

Typedefs

typedef struct PNGEncContext PNGEncContext
 

Functions

static void png_get_interlaced_row (uint8_t *dst, int row_size, int bits_per_pixel, int pass, const uint8_t *src, int width)
 
static void sub_png_paeth_prediction (uint8_t *dst, uint8_t *src, uint8_t *top, int w, int bpp)
 
static void png_filter_row (DSPContext *dsp, uint8_t *dst, int filter_type, uint8_t *src, uint8_t *top, int size, int bpp)
 
static uint8_tpng_choose_filter (PNGEncContext *s, uint8_t *dst, uint8_t *src, uint8_t *top, int size, int bpp)
 
static void png_write_chunk (uint8_t **f, uint32_t tag, const uint8_t *buf, int length)
 
static int png_write_row (PNGEncContext *s, const uint8_t *data, int size)
 
static int encode_frame (AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pict, int *got_packet)
 
static av_cold int png_enc_init (AVCodecContext *avctx)
 

Variables

AVCodec ff_png_encoder
 

Macro Definition Documentation

#define IOBUF_SIZE   4096

Definition at line 37 of file pngenc.c.

Referenced by encode_frame(), and png_write_row().

Typedef Documentation

typedef struct PNGEncContext PNGEncContext

Function Documentation

static int encode_frame ( AVCodecContext avctx,
AVPacket pkt,
const AVFrame pict,
int *  got_packet 
)
static

Definition at line 219 of file pngenc.c.

static uint8_t* png_choose_filter ( PNGEncContext s,
uint8_t dst,
uint8_t src,
uint8_t top,
int  size,
int  bpp 
)
static

Definition at line 149 of file pngenc.c.

Referenced by encode_frame().

static av_cold int png_enc_init ( AVCodecContext avctx)
static

Definition at line 433 of file pngenc.c.

static void png_filter_row ( DSPContext dsp,
uint8_t dst,
int  filter_type,
uint8_t src,
uint8_t top,
int  size,
int  bpp 
)
static

Definition at line 119 of file pngenc.c.

Referenced by png_choose_filter().

static void png_get_interlaced_row ( uint8_t dst,
int  row_size,
int  bits_per_pixel,
int  pass,
const uint8_t src,
int  width 
)
static

Definition at line 53 of file pngenc.c.

Referenced by encode_frame().

static void png_write_chunk ( uint8_t **  f,
uint32_t  tag,
const uint8_t buf,
int  length 
)
static

Definition at line 179 of file pngenc.c.

Referenced by encode_frame(), and png_write_row().

static int png_write_row ( PNGEncContext s,
const uint8_t data,
int  size 
)
static

Definition at line 199 of file pngenc.c.

Referenced by encode_frame().

static void sub_png_paeth_prediction ( uint8_t dst,
uint8_t src,
uint8_t top,
int  w,
int  bpp 
)
static

Definition at line 92 of file pngenc.c.

Referenced by png_filter_row().

Variable Documentation

AVCodec ff_png_encoder
Initial value:
= {
.name = "png",
.priv_data_size = sizeof(PNGEncContext),
.encode2 = encode_frame,
.pix_fmts = (const enum AVPixelFormat[]){
},
.long_name = NULL_IF_CONFIG_SMALL("PNG (Portable Network Graphics) image"),
}
struct PNGEncContext PNGEncContext
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition: pixfmt.h:70
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static int encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pict, int *got_packet)
Definition: pngenc.c:219
8 bit with PIX_FMT_RGB32 palette
Definition: pixfmt.h:79
#define CODEC_CAP_INTRA_ONLY
Codec is intra only.
packed RGBA 16:16:16:16, 64bpp, 16R, 16G, 16B, 16A, the 2-byte value for each R/G/B/A component is st...
Definition: pixfmt.h:209
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
packed RGBA 8:8:8:8, 32bpp, RGBARGBA...
Definition: pixfmt.h:97
8bit gray, 8bit alpha
Definition: pixfmt.h:141
Y , 16bpp, big-endian.
Definition: pixfmt.h:101
static av_cold int png_enc_init(AVCodecContext *avctx)
Definition: pngenc.c:433
Y , 1bpp, 0 is black, 1 is white, in each byte pixels are ordered from the msb to the lsb...
Definition: pixfmt.h:78
Y , 8bpp.
Definition: pixfmt.h:76
#define CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
packed RGB 16:16:16, 48bpp, 16R, 16G, 16B, the 2-byte value for each R/G/B component is stored as big...
Definition: pixfmt.h:111
AVPixelFormat
Pixel format.
Definition: pixfmt.h:66

Definition at line 464 of file pngenc.c.