lclenc.c File Reference

LCL (LossLess Codec Library) Video Codec Decoder for MSZH and ZLIB codecs Experimental encoder for ZLIB RGB24. More...

#include <stdio.h>
#include <stdlib.h>
#include "libavutil/avassert.h"
#include "avcodec.h"
#include "internal.h"
#include "lcl.h"
#include "libavutil/internal.h"
#include "libavutil/mem.h"
#include <zlib.h>
Include dependency graph for lclenc.c:

Go to the source code of this file.

Data Structures

struct  LclEncContext
 

Typedefs

typedef struct LclEncContext LclEncContext
 

Functions

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

Variables

AVCodec ff_zlib_encoder
 

Detailed Description

LCL (LossLess Codec Library) Video Codec Decoder for MSZH and ZLIB codecs Experimental encoder for ZLIB RGB24.

Fourcc: MSZH, ZLIB

Original Win32 dll: Ver2.23 By Kenji Oshima 2000.09.20 avimszh.dll, avizlib.dll

A description of the decoding algorithm can be found here: http://www.pcisys.net/~melanson/codecs

Supports: BGR24 (RGB 24bpp)

Definition in file lclenc.c.

Typedef Documentation

typedef struct LclEncContext LclEncContext

Function Documentation

static av_cold int encode_end ( AVCodecContext avctx)
static

Definition at line 177 of file lclenc.c.

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

Definition at line 75 of file lclenc.c.

static av_cold int encode_init ( AVCodecContext avctx)
static

Definition at line 131 of file lclenc.c.

Variable Documentation

AVCodec ff_zlib_encoder
Initial value:
= {
.name = "zlib",
.priv_data_size = sizeof(LclEncContext),
.encode2 = encode_frame,
.pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_BGR24, AV_PIX_FMT_NONE },
.long_name = NULL_IF_CONFIG_SMALL("LCL (LossLess Codec Library) ZLIB"),
}
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static av_cold int encode_end(AVCodecContext *avctx)
Definition: lclenc.c:177
static av_cold int encode_init(AVCodecContext *avctx)
Definition: lclenc.c:131
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition: pixfmt.h:71
static void close(AVCodecParserContext *s)
Definition: h264_parser.c:375
struct LclEncContext LclEncContext
static int encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pict, int *got_packet)
Definition: lclenc.c:75
AVPixelFormat
Pixel format.
Definition: pixfmt.h:66

Definition at line 187 of file lclenc.c.