Go to the documentation of this file.
40 #define ZMBV_KEYFRAME 1
41 #define ZMBV_DELTAPAL 2
88 const uint8_t *
src2,
int stride2,
int bw,
int bh,
93 uint16_t histogram[256] = {0};
94 int bw_bytes = bw *
c->bypp;
97 for(j = 0; j < bh; j++){
98 for(
i = 0;
i < bw_bytes;
i++){
107 *xored = (histogram[0] < bw_bytes * bh);
110 if (!*xored)
return 0;
113 for(
i = 0;
i < 256;
i++)
114 sum +=
c->score_tab[histogram[
i]];
123 int pstride,
int x,
int y,
int *mx,
int *my,
int *xored)
125 int dx, dy, txored, tv, bv, bw, bh;
134 bv =
block_cmp(
c,
src, sstride, prev, pstride, bw, bh, xored);
140 tv =
block_cmp(
c,
src, sstride, prev + mx0 *
c->bypp + my0 * pstride, pstride, bw, bh, &txored);
151 for(dy = -
c->lrange; dy <= c->urange; dy++){
152 for(dx = -
c->lrange; dx <= c->urange; dx++){
153 if(!dx && !dy)
continue;
154 if(dx == mx0 && dy == my0)
continue;
155 tv =
block_cmp(
c,
src, sstride, prev + dx *
c->bypp + dy * pstride, pstride, bw, bh, &txored);
169 const AVFrame *pict,
int *got_packet)
172 z_stream *
const zstream = &
c->zstream.zstream;
173 const AVFrame *
const p = pict;
179 int work_size = 0, pkt_size;
183 keyframe = !
c->curfrm;
185 if(
c->curfrm ==
c->keyint)
189 chpal = !keyframe && palptr && memcmp(palptr,
c->pal2, 1024);
195 for(
i = 0;
i < 256;
i++){
197 c->work_buf[work_size++] = tpal[0] ^
c->pal[
i * 3 + 0];
198 c->work_buf[work_size++] = tpal[1] ^
c->pal[
i * 3 + 1];
199 c->work_buf[work_size++] = tpal[2] ^
c->pal[
i * 3 + 2];
200 c->pal[
i * 3 + 0] = tpal[0];
201 c->pal[
i * 3 + 1] = tpal[1];
202 c->pal[
i * 3 + 2] = tpal[2];
204 memcpy(
c->pal2, palptr, 1024);
208 for(
i = 0;
i < 256;
i++){
211 memcpy(
c->work_buf,
c->pal, 768);
212 memcpy(
c->pal2, palptr, 1024);
216 memcpy(
c->work_buf + work_size,
src, avctx->
width *
c->bypp);
218 work_size += avctx->
width *
c->bypp;
221 int x, y, bh2, bw2, xored;
222 const uint8_t *tsrc, *tprev;
228 mv =
c->work_buf + work_size;
229 memset(
c->work_buf + work_size, 0, (bw * bh * 2 + 3) & ~3);
230 work_size += (bw * bh * 2 + 3) & ~3;
237 tsrc =
src + x *
c->bypp;
238 tprev = prev + x *
c->bypp;
241 mv[0] = (mx * 2) | !!xored;
243 tprev += mx *
c->bypp + my *
c->pstride;
245 for(j = 0; j < bh2; j++){
246 for(
i = 0;
i < bw2 *
c->bypp;
i++)
247 c->work_buf[work_size++] = tsrc[
i] ^ tprev[
i];
261 memcpy(prev,
src, avctx->
width *
c->bypp);
267 deflateReset(zstream);
269 zstream->next_in =
c->work_buf;
270 zstream->avail_in = work_size;
271 zstream->total_in = 0;
273 zstream->next_out =
c->comp_buf;
274 zstream->avail_out =
c->comp_size;
275 zstream->total_out = 0;
276 if (
deflate(zstream, Z_SYNC_FLUSH) != Z_OK) {
281 pkt_size = zstream->total_out + 1 + 6 * keyframe;
297 memcpy(buf,
c->comp_buf, zstream->total_out);
325 int prev_size, prev_offset;
340 #ifdef ZMBV_ENABLE_24BPP
345 #endif //ZMBV_ENABLE_24BPP
365 c->lrange =
c->urange = 8;
373 if(lvl < 0 || lvl > 9){
378 c->comp_size = avctx->
width *
c->bypp * avctx->
height + 1024 +
385 c->comp_size =
c->comp_size + ((
c->comp_size + 7) >> 3) +
386 ((
c->comp_size + 63) >> 6) + 11;
403 prev_size =
FFALIGN(
c->lrange *
c->bypp, 16) +
c->pstride * (
c->lrange + avctx->
height +
c->urange);
404 prev_offset =
FFALIGN(
c->lrange *
c->bypp, 16) +
c->pstride *
c->lrange;
409 c->prev =
c->prev_buf + prev_offset;
427 #ifdef ZMBV_ENABLE_24BPP
429 #endif //ZMBV_ENABLE_24BPP
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.
AVPixelFormat
Pixel format.
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
int keyint_min
minimum GOP size
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
static const int8_t mv[256][2]
This structure describes decoded (raw) audio or video data.
@ AV_PIX_FMT_BGR24
packed RGB 8:8:8, 24bpp, BGRBGR...
void ff_deflate_end(FFZStream *zstream)
Wrapper around deflateEnd().
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
static av_cold int encode_end(AVCodecContext *avctx)
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
AVCodec p
The public AVCodec.
#define FF_CODEC_ENCODE_CB(func)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
static av_cold int encode_init(AVCodecContext *avctx)
Init zmbv encoder.
int(* init)(AVBSFContext *ctx)
#define AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE
This encoder can reorder user opaque values from input AVFrames and return them with corresponding ou...
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.
#define CODEC_LONG_NAME(str)
@ AV_PIX_FMT_RGB565LE
packed RGB 5:6:5, 16bpp, (msb) 5R 6G 5B(lsb), little-endian
const FFCodec ff_zmbv_encoder
static void deflate(uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc)
@ AV_PIX_FMT_BGR0
packed BGR 8:8:8, 32bpp, BGRXBGRX... X=unused/undefined
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
int me_range
maximum motion estimation search range in subpel units If 0 then no limit.
int flags
A combination of AV_PKT_FLAG values.
@ AV_PIX_FMT_RGB555LE
packed RGB 5:5:5, 16bpp, (msb)1X 5R 5G 5B(lsb), little-endian, X=unused/undefined
#define i(width, name, range_min, range_max)
static int encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pict, int *got_packet)
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
const char * name
Name of the codec implementation.
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
@ AV_PIX_FMT_PAL8
8 bits with AV_PIX_FMT_RGB32 palette
main external API structure.
int ff_get_encode_buffer(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int flags)
Get a buffer for a packet.
This structure stores compressed data.
int width
picture width / height.
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
int score_tab[ZMBV_BLOCK *ZMBV_BLOCK *4+1]
int ff_deflate_init(FFZStream *zstream, int level, void *logctx)
Wrapper around deflateInit().