avprobe: also output dar/par if only defined in stream
[FFMpeg-mirror/mplayer-patches.git] / libavcodec / zmbvenc.c
blob9ac7d6d4713e55feeeccb4498c33650b70781c9f
1 /*
2 * Zip Motion Blocks Video (ZMBV) encoder
3 * Copyright (c) 2006 Konstantin Shishkov
5 * This file is part of Libav.
7 * Libav is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * Libav is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with Libav; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 /**
23 * @file
24 * Zip Motion Blocks Video encoder
27 #include <stdio.h>
28 #include <stdlib.h>
30 #include "libavutil/common.h"
31 #include "libavutil/intreadwrite.h"
32 #include "avcodec.h"
33 #include "internal.h"
35 #include <zlib.h>
37 #define ZMBV_KEYFRAME 1
38 #define ZMBV_DELTAPAL 2
40 #define ZMBV_BLOCK 16
42 /**
43 * Encoder context
45 typedef struct ZmbvEncContext {
46 AVCodecContext *avctx;
47 AVFrame pic;
49 int range;
50 uint8_t *comp_buf, *work_buf;
51 uint8_t pal[768];
52 uint32_t pal2[256]; //for quick comparisons
53 uint8_t *prev;
54 int pstride;
55 int comp_size;
56 int keyint, curfrm;
57 z_stream zstream;
58 } ZmbvEncContext;
60 static int score_tab[256];
62 /** Block comparing function
63 * XXX should be optimized and moved to DSPContext
64 * TODO handle out of edge ME
66 static inline int block_cmp(uint8_t *src, int stride, uint8_t *src2, int stride2,
67 int bw, int bh, int *xored)
69 int sum = 0;
70 int i, j;
71 uint8_t histogram[256] = {0};
73 *xored = 0;
74 for(j = 0; j < bh; j++){
75 for(i = 0; i < bw; i++){
76 int t = src[i] ^ src2[i];
77 histogram[t]++;
78 *xored |= t;
80 src += stride;
81 src2 += stride2;
84 for(i = 1; i < 256; i++)
85 sum += score_tab[histogram[i]];
87 return sum;
90 /** Motion estimation function
91 * TODO make better ME decisions
93 static int zmbv_me(ZmbvEncContext *c, uint8_t *src, int sstride, uint8_t *prev,
94 int pstride, int x, int y, int *mx, int *my, int *xored)
96 int dx, dy, tx, ty, tv, bv, bw, bh;
98 *mx = *my = 0;
99 bw = FFMIN(ZMBV_BLOCK, c->avctx->width - x);
100 bh = FFMIN(ZMBV_BLOCK, c->avctx->height - y);
101 bv = block_cmp(src, sstride, prev, pstride, bw, bh, xored);
102 if(!bv) return 0;
103 for(ty = FFMAX(y - c->range, 0); ty < FFMIN(y + c->range, c->avctx->height - bh); ty++){
104 for(tx = FFMAX(x - c->range, 0); tx < FFMIN(x + c->range, c->avctx->width - bw); tx++){
105 if(tx == x && ty == y) continue; // we already tested this block
106 dx = tx - x;
107 dy = ty - y;
108 tv = block_cmp(src, sstride, prev + dx + dy*pstride, pstride, bw, bh, xored);
109 if(tv < bv){
110 bv = tv;
111 *mx = dx;
112 *my = dy;
113 if(!bv) return 0;
117 return bv;
120 static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
121 const AVFrame *pict, int *got_packet)
123 ZmbvEncContext * const c = avctx->priv_data;
124 AVFrame * const p = &c->pic;
125 uint8_t *src, *prev, *buf;
126 uint32_t *palptr;
127 int keyframe, chpal;
128 int fl;
129 int work_size = 0, pkt_size;
130 int bw, bh;
131 int i, j, ret;
133 keyframe = !c->curfrm;
134 c->curfrm++;
135 if(c->curfrm == c->keyint)
136 c->curfrm = 0;
137 *p = *pict;
138 p->pict_type= keyframe ? AV_PICTURE_TYPE_I : AV_PICTURE_TYPE_P;
139 p->key_frame= keyframe;
140 chpal = !keyframe && memcmp(p->data[1], c->pal2, 1024);
142 palptr = (uint32_t*)p->data[1];
143 src = p->data[0];
144 prev = c->prev;
145 if(chpal){
146 uint8_t tpal[3];
147 for(i = 0; i < 256; i++){
148 AV_WB24(tpal, palptr[i]);
149 c->work_buf[work_size++] = tpal[0] ^ c->pal[i * 3 + 0];
150 c->work_buf[work_size++] = tpal[1] ^ c->pal[i * 3 + 1];
151 c->work_buf[work_size++] = tpal[2] ^ c->pal[i * 3 + 2];
152 c->pal[i * 3 + 0] = tpal[0];
153 c->pal[i * 3 + 1] = tpal[1];
154 c->pal[i * 3 + 2] = tpal[2];
156 memcpy(c->pal2, p->data[1], 1024);
158 if(keyframe){
159 for(i = 0; i < 256; i++){
160 AV_WB24(c->pal+(i*3), palptr[i]);
162 memcpy(c->work_buf, c->pal, 768);
163 memcpy(c->pal2, p->data[1], 1024);
164 work_size = 768;
165 for(i = 0; i < avctx->height; i++){
166 memcpy(c->work_buf + work_size, src, avctx->width);
167 src += p->linesize[0];
168 work_size += avctx->width;
170 }else{
171 int x, y, bh2, bw2, xored;
172 uint8_t *tsrc, *tprev;
173 uint8_t *mv;
174 int mx, my;
176 bw = (avctx->width + ZMBV_BLOCK - 1) / ZMBV_BLOCK;
177 bh = (avctx->height + ZMBV_BLOCK - 1) / ZMBV_BLOCK;
178 mv = c->work_buf + work_size;
179 memset(c->work_buf + work_size, 0, (bw * bh * 2 + 3) & ~3);
180 work_size += (bw * bh * 2 + 3) & ~3;
181 /* for now just XOR'ing */
182 for(y = 0; y < avctx->height; y += ZMBV_BLOCK) {
183 bh2 = FFMIN(avctx->height - y, ZMBV_BLOCK);
184 for(x = 0; x < avctx->width; x += ZMBV_BLOCK, mv += 2) {
185 bw2 = FFMIN(avctx->width - x, ZMBV_BLOCK);
187 tsrc = src + x;
188 tprev = prev + x;
190 zmbv_me(c, tsrc, p->linesize[0], tprev, c->pstride, x, y, &mx, &my, &xored);
191 mv[0] = (mx << 1) | !!xored;
192 mv[1] = my << 1;
193 tprev += mx + my * c->pstride;
194 if(xored){
195 for(j = 0; j < bh2; j++){
196 for(i = 0; i < bw2; i++)
197 c->work_buf[work_size++] = tsrc[i] ^ tprev[i];
198 tsrc += p->linesize[0];
199 tprev += c->pstride;
203 src += p->linesize[0] * ZMBV_BLOCK;
204 prev += c->pstride * ZMBV_BLOCK;
207 /* save the previous frame */
208 src = p->data[0];
209 prev = c->prev;
210 for(i = 0; i < avctx->height; i++){
211 memcpy(prev, src, avctx->width);
212 prev += c->pstride;
213 src += p->linesize[0];
216 if (keyframe)
217 deflateReset(&c->zstream);
219 c->zstream.next_in = c->work_buf;
220 c->zstream.avail_in = work_size;
221 c->zstream.total_in = 0;
223 c->zstream.next_out = c->comp_buf;
224 c->zstream.avail_out = c->comp_size;
225 c->zstream.total_out = 0;
226 if(deflate(&c->zstream, Z_SYNC_FLUSH) != Z_OK){
227 av_log(avctx, AV_LOG_ERROR, "Error compressing data\n");
228 return -1;
231 pkt_size = c->zstream.total_out + 1 + 6*keyframe;
232 if ((ret = ff_alloc_packet(pkt, pkt_size)) < 0) {
233 av_log(avctx, AV_LOG_ERROR, "Error getting packet of size %d.\n", pkt_size);
234 return ret;
236 buf = pkt->data;
238 fl = (keyframe ? ZMBV_KEYFRAME : 0) | (chpal ? ZMBV_DELTAPAL : 0);
239 *buf++ = fl;
240 if (keyframe) {
241 *buf++ = 0; // hi ver
242 *buf++ = 1; // lo ver
243 *buf++ = 1; // comp
244 *buf++ = 4; // format - 8bpp
245 *buf++ = ZMBV_BLOCK; // block width
246 *buf++ = ZMBV_BLOCK; // block height
248 memcpy(buf, c->comp_buf, c->zstream.total_out);
250 pkt->flags |= AV_PKT_FLAG_KEY*keyframe;
251 *got_packet = 1;
253 return 0;
258 * Init zmbv encoder
260 static av_cold int encode_init(AVCodecContext *avctx)
262 ZmbvEncContext * const c = avctx->priv_data;
263 int zret; // Zlib return code
264 int i;
265 int lvl = 9;
267 for(i=1; i<256; i++)
268 score_tab[i]= -i * log(i/(double)(ZMBV_BLOCK*ZMBV_BLOCK)) * (256/M_LN2);
270 c->avctx = avctx;
272 c->curfrm = 0;
273 c->keyint = avctx->keyint_min;
274 c->range = 8;
275 if(avctx->me_range > 0)
276 c->range = FFMIN(avctx->me_range, 127);
278 if(avctx->compression_level >= 0)
279 lvl = avctx->compression_level;
280 if(lvl < 0 || lvl > 9){
281 av_log(avctx, AV_LOG_ERROR, "Compression level should be 0-9, not %i\n", lvl);
282 return AVERROR(EINVAL);
285 // Needed if zlib unused or init aborted before deflateInit
286 memset(&c->zstream, 0, sizeof(z_stream));
287 c->comp_size = avctx->width * avctx->height + 1024 +
288 ((avctx->width + ZMBV_BLOCK - 1) / ZMBV_BLOCK) * ((avctx->height + ZMBV_BLOCK - 1) / ZMBV_BLOCK) * 2 + 4;
289 if ((c->work_buf = av_malloc(c->comp_size)) == NULL) {
290 av_log(avctx, AV_LOG_ERROR, "Can't allocate work buffer.\n");
291 return AVERROR(ENOMEM);
293 /* Conservative upper bound taken from zlib v1.2.1 source via lcl.c */
294 c->comp_size = c->comp_size + ((c->comp_size + 7) >> 3) +
295 ((c->comp_size + 63) >> 6) + 11;
297 /* Allocate compression buffer */
298 if ((c->comp_buf = av_malloc(c->comp_size)) == NULL) {
299 av_log(avctx, AV_LOG_ERROR, "Can't allocate compression buffer.\n");
300 return AVERROR(ENOMEM);
302 c->pstride = FFALIGN(avctx->width, 16);
303 if ((c->prev = av_malloc(c->pstride * avctx->height)) == NULL) {
304 av_log(avctx, AV_LOG_ERROR, "Can't allocate picture.\n");
305 return AVERROR(ENOMEM);
308 c->zstream.zalloc = Z_NULL;
309 c->zstream.zfree = Z_NULL;
310 c->zstream.opaque = Z_NULL;
311 zret = deflateInit(&c->zstream, lvl);
312 if (zret != Z_OK) {
313 av_log(avctx, AV_LOG_ERROR, "Inflate init error: %d\n", zret);
314 return -1;
317 avctx->coded_frame = &c->pic;
319 return 0;
325 * Uninit zmbv encoder
327 static av_cold int encode_end(AVCodecContext *avctx)
329 ZmbvEncContext * const c = avctx->priv_data;
331 av_freep(&c->comp_buf);
332 av_freep(&c->work_buf);
334 deflateEnd(&c->zstream);
335 av_freep(&c->prev);
337 return 0;
340 AVCodec ff_zmbv_encoder = {
341 .name = "zmbv",
342 .type = AVMEDIA_TYPE_VIDEO,
343 .id = AV_CODEC_ID_ZMBV,
344 .priv_data_size = sizeof(ZmbvEncContext),
345 .init = encode_init,
346 .encode2 = encode_frame,
347 .close = encode_end,
348 .pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_PAL8, AV_PIX_FMT_NONE },
349 .long_name = NULL_IF_CONFIG_SMALL("Zip Motion Blocks Video"),