FFmpeg
Data Structures | Macros | Enumerations | Functions | Variables
zmbvenc.c File Reference
#include <stdio.h>
#include <stdlib.h>
#include "libavutil/common.h"
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "codec_internal.h"
#include "encode.h"
#include "zlib_wrapper.h"
#include <zlib.h>

Go to the source code of this file.

Data Structures

struct  ZmbvEncContext
 Encoder context. More...
 

Macros

#define ZMBV_KEYFRAME   1
 
#define ZMBV_DELTAPAL   2
 
#define ZMBV_BLOCK   16
 

Enumerations

enum  ZmbvFormat {
  ZMBV_FMT_NONE = 0, ZMBV_FMT_1BPP = 1, ZMBV_FMT_2BPP = 2, ZMBV_FMT_4BPP = 3,
  ZMBV_FMT_8BPP = 4, ZMBV_FMT_15BPP = 5, ZMBV_FMT_16BPP = 6, ZMBV_FMT_24BPP = 7,
  ZMBV_FMT_32BPP = 8, ZMBV_FMT_NONE = 0, ZMBV_FMT_1BPP = 1, ZMBV_FMT_2BPP = 2,
  ZMBV_FMT_4BPP = 3, ZMBV_FMT_8BPP = 4, ZMBV_FMT_15BPP = 5, ZMBV_FMT_16BPP = 6,
  ZMBV_FMT_24BPP = 7, ZMBV_FMT_32BPP = 8
}
 

Functions

static int block_cmp (ZmbvEncContext *c, const uint8_t *src, int stride, const uint8_t *src2, int stride2, int bw, int bh, int *xored)
 Block comparing function XXX should be optimized and moved to DSPContext. More...
 
static int zmbv_me (ZmbvEncContext *c, const uint8_t *src, int sstride, const uint8_t *prev, int pstride, int x, int y, int *mx, int *my, int *xored)
 Motion estimation function TODO make better ME decisions. More...
 
static int encode_frame (AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pict, int *got_packet)
 
static av_cold int encode_end (AVCodecContext *avctx)
 
static av_cold int encode_init (AVCodecContext *avctx)
 Init zmbv encoder. More...
 

Variables

const FFCodec ff_zmbv_encoder
 

Detailed Description

Zip Motion Blocks Video encoder

Definition in file zmbvenc.c.

Macro Definition Documentation

◆ ZMBV_KEYFRAME

#define ZMBV_KEYFRAME   1

Definition at line 40 of file zmbvenc.c.

◆ ZMBV_DELTAPAL

#define ZMBV_DELTAPAL   2

Definition at line 41 of file zmbvenc.c.

◆ ZMBV_BLOCK

#define ZMBV_BLOCK   16

Definition at line 47 of file zmbvenc.c.

Enumeration Type Documentation

◆ ZmbvFormat

enum ZmbvFormat
Enumerator
ZMBV_FMT_NONE 
ZMBV_FMT_1BPP 
ZMBV_FMT_2BPP 
ZMBV_FMT_4BPP 
ZMBV_FMT_8BPP 
ZMBV_FMT_15BPP 
ZMBV_FMT_16BPP 
ZMBV_FMT_24BPP 
ZMBV_FMT_32BPP 
ZMBV_FMT_NONE 
ZMBV_FMT_1BPP 
ZMBV_FMT_2BPP 
ZMBV_FMT_4BPP 
ZMBV_FMT_8BPP 
ZMBV_FMT_15BPP 
ZMBV_FMT_16BPP 
ZMBV_FMT_24BPP 
ZMBV_FMT_32BPP 

Definition at line 50 of file zmbvenc.c.

Function Documentation

◆ block_cmp()

static int block_cmp ( ZmbvEncContext c,
const uint8_t *  src,
int  stride,
const uint8_t *  src2,
int  stride2,
int  bw,
int  bh,
int xored 
)
inlinestatic

Block comparing function XXX should be optimized and moved to DSPContext.

Definition at line 87 of file zmbvenc.c.

Referenced by zmbv_me().

◆ zmbv_me()

static int zmbv_me ( ZmbvEncContext c,
const uint8_t *  src,
int  sstride,
const uint8_t *  prev,
int  pstride,
int  x,
int  y,
int mx,
int my,
int xored 
)
static

Motion estimation function TODO make better ME decisions.

Definition at line 122 of file zmbvenc.c.

Referenced by encode_frame().

◆ encode_frame()

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

Definition at line 168 of file zmbvenc.c.

◆ encode_end()

static av_cold int encode_end ( AVCodecContext avctx)
static

Definition at line 304 of file zmbvenc.c.

◆ encode_init()

static av_cold int encode_init ( AVCodecContext avctx)
static

Init zmbv encoder.

Definition at line 320 of file zmbvenc.c.

Variable Documentation

◆ ff_zmbv_encoder

const FFCodec ff_zmbv_encoder
Initial value:
= {
.p.name = "zmbv",
CODEC_LONG_NAME("Zip Motion Blocks Video"),
.p.type = AVMEDIA_TYPE_VIDEO,
.priv_data_size = sizeof(ZmbvEncContext),
.close = encode_end,
.p.pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_PAL8,
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
}

Definition at line 414 of file zmbvenc.c.

AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:71
FF_CODEC_CAP_INIT_CLEANUP
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Definition: codec_internal.h:42
AV_CODEC_ID_ZMBV
@ AV_CODEC_ID_ZMBV
Definition: codec_id.h:133
encode_end
static av_cold int encode_end(AVCodecContext *avctx)
Definition: zmbvenc.c:304
FF_CODEC_ENCODE_CB
#define FF_CODEC_ENCODE_CB(func)
Definition: codec_internal.h:296
encode_init
static av_cold int encode_init(AVCodecContext *avctx)
Init zmbv encoder.
Definition: zmbvenc.c:320
AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE
#define AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE
This encoder can reorder user opaque values from input AVFrames and return them with corresponding ou...
Definition: codec.h:159
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:272
AV_PIX_FMT_RGB565LE
@ AV_PIX_FMT_RGB565LE
packed RGB 5:6:5, 16bpp, (msb) 5R 6G 5B(lsb), little-endian
Definition: pixfmt.h:113
ZmbvEncContext
Encoder context.
Definition: zmbvenc.c:65
AV_PIX_FMT_BGR0
@ AV_PIX_FMT_BGR0
packed BGR 8:8:8, 32bpp, BGRXBGRX... X=unused/undefined
Definition: pixfmt.h:265
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:365
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
AV_PIX_FMT_RGB555LE
@ AV_PIX_FMT_RGB555LE
packed RGB 5:5:5, 16bpp, (msb)1X 5R 5G 5B(lsb), little-endian, X=unused/undefined
Definition: pixfmt.h:115
encode_frame
static int encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pict, int *got_packet)
Definition: zmbvenc.c:168
AV_PIX_FMT_PAL8
@ AV_PIX_FMT_PAL8
8 bits with AV_PIX_FMT_RGB32 palette
Definition: pixfmt.h:84
AV_PIX_FMT_NONE
@ AV_PIX_FMT_NONE
Definition: pixfmt.h:72
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201