FFmpeg
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Functions | Variables
pcxenc.c File Reference

PCX image encoder. More...

#include "avcodec.h"
#include "bytestream.h"
#include "libavutil/imgutils.h"
#include "internal.h"

Go to the source code of this file.

Data Structures

struct  PCXContext
 

Functions

static av_cold int pcx_encode_init (AVCodecContext *avctx)
 
static int pcx_rle_encode (uint8_t *dst, int dst_size, const uint8_t *src, int src_plane_size, int nplanes)
 PCX run-length encoder.
 
static int pcx_encode_frame (AVCodecContext *avctx, AVPacket *pkt, const AVFrame *frame, int *got_packet)
 

Variables

static const uint32_t monoblack_pal [16] = { 0x000000, 0xFFFFFF }
 
AVCodec ff_pcx_encoder
 

Detailed Description

PCX image encoder.

Author
Daniel Verkamp
See Also
http://www.qzx.com/pc-gpe/pcx.txt

Definition in file pcxenc.c.

Function Documentation

static av_cold int pcx_encode_init ( AVCodecContext avctx)
static

Definition at line 40 of file pcxenc.c.

static int pcx_rle_encode ( uint8_t dst,
int  dst_size,
const uint8_t src,
int  src_plane_size,
int  nplanes 
)
static

PCX run-length encoder.

Parameters
dstoutput buffer
dst_sizesize of output buffer
srcinput buffer
src_plane_sizesize of one plane of input buffer in bytes
nplanesnumber of planes in input buffer
Returns
number of bytes written to dst or -1 on error
Bug:
will not work for nplanes != 1 && bpp != 8

Definition at line 60 of file pcxenc.c.

Referenced by pcx_encode_frame().

static int pcx_encode_frame ( AVCodecContext avctx,
AVPacket pkt,
const AVFrame frame,
int *  got_packet 
)
static

Definition at line 100 of file pcxenc.c.

Variable Documentation

const uint32_t monoblack_pal[16] = { 0x000000, 0xFFFFFF }
static

Definition at line 38 of file pcxenc.c.

Referenced by pcx_encode_frame().

AVCodec ff_pcx_encoder
Initial value:
= {
.name = "pcx",
.priv_data_size = sizeof(PCXContext),
.encode2 = pcx_encode_frame,
.pix_fmts = (const enum AVPixelFormat[]){
},
.long_name = NULL_IF_CONFIG_SMALL("PC Paintbrush PCX image"),
}

Definition at line 215 of file pcxenc.c.