]> git.sesse.net Git - ffmpeg/blob - libavcodec/zmbv.c
Merge commit '594d4d5df3c70404168701dd5c90b7e6e5587793'
[ffmpeg] / libavcodec / zmbv.c
1 /*
2  * Zip Motion Blocks Video (ZMBV) decoder
3  * Copyright (c) 2006 Konstantin Shishkov
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg 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.
11  *
12  * FFmpeg 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.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * Zip Motion Blocks Video decoder
25  */
26
27 #include <stdio.h>
28 #include <stdlib.h>
29
30 #include "libavutil/common.h"
31 #include "libavutil/intreadwrite.h"
32 #include "avcodec.h"
33 #include "internal.h"
34
35 #include <zlib.h>
36
37 #define ZMBV_KEYFRAME 1
38 #define ZMBV_DELTAPAL 2
39
40 enum ZmbvFormat {
41     ZMBV_FMT_NONE  = 0,
42     ZMBV_FMT_1BPP  = 1,
43     ZMBV_FMT_2BPP  = 2,
44     ZMBV_FMT_4BPP  = 3,
45     ZMBV_FMT_8BPP  = 4,
46     ZMBV_FMT_15BPP = 5,
47     ZMBV_FMT_16BPP = 6,
48     ZMBV_FMT_24BPP = 7,
49     ZMBV_FMT_32BPP = 8
50 };
51
52 /*
53  * Decoder context
54  */
55 typedef struct ZmbvContext {
56     AVCodecContext *avctx;
57     AVFrame pic;
58
59     int bpp;
60     unsigned int decomp_size;
61     uint8_t* decomp_buf;
62     uint8_t pal[768];
63     uint8_t *prev, *cur;
64     int width, height;
65     int fmt;
66     int comp;
67     int flags;
68     int bw, bh, bx, by;
69     int decomp_len;
70     z_stream zstream;
71     int (*decode_intra)(struct ZmbvContext *c);
72     int (*decode_xor)(struct ZmbvContext *c);
73 } ZmbvContext;
74
75 /**
76  * Decode XOR'ed frame - 8bpp version
77  */
78
79 static int zmbv_decode_xor_8(ZmbvContext *c)
80 {
81     uint8_t *src = c->decomp_buf;
82     uint8_t *output, *prev;
83     int8_t *mvec;
84     int x, y;
85     int d, dx, dy, bw2, bh2;
86     int block;
87     int i, j;
88     int mx, my;
89
90     output = c->cur;
91     prev = c->prev;
92
93     if (c->flags & ZMBV_DELTAPAL) {
94         for (i = 0; i < 768; i++)
95             c->pal[i] ^= *src++;
96     }
97
98     mvec = (int8_t*)src;
99     src += ((c->bx * c->by * 2 + 3) & ~3);
100
101     block = 0;
102     for (y = 0; y < c->height; y += c->bh) {
103         bh2 = ((c->height - y) > c->bh) ? c->bh : (c->height - y);
104         for (x = 0; x < c->width; x += c->bw) {
105             uint8_t *out, *tprev;
106
107             d = mvec[block] & 1;
108             dx = mvec[block] >> 1;
109             dy = mvec[block + 1] >> 1;
110             block += 2;
111
112             bw2 = ((c->width - x) > c->bw) ? c->bw : (c->width - x);
113
114             /* copy block - motion vectors out of bounds are used to zero blocks */
115             out = output + x;
116             tprev = prev + x + dx + dy * c->width;
117             mx = x + dx;
118             my = y + dy;
119             for (j = 0; j < bh2; j++) {
120                 if (my + j < 0 || my + j >= c->height) {
121                     memset(out, 0, bw2);
122                 } else {
123                     for (i = 0; i < bw2; i++) {
124                         if (mx + i < 0 || mx + i >= c->width)
125                             out[i] = 0;
126                         else
127                             out[i] = tprev[i];
128                     }
129                 }
130                 out += c->width;
131                 tprev += c->width;
132             }
133
134             if (d) { /* apply XOR'ed difference */
135                 out = output + x;
136                 for (j = 0; j < bh2; j++) {
137                     for (i = 0; i < bw2; i++)
138                         out[i] ^= *src++;
139                     out += c->width;
140                 }
141             }
142         }
143         output += c->width * c->bh;
144         prev += c->width * c->bh;
145     }
146     if (src - c->decomp_buf != c->decomp_len)
147         av_log(c->avctx, AV_LOG_ERROR, "Used %ti of %i bytes\n",
148                src-c->decomp_buf, c->decomp_len);
149     return 0;
150 }
151
152 /**
153  * Decode XOR'ed frame - 15bpp and 16bpp version
154  */
155
156 static int zmbv_decode_xor_16(ZmbvContext *c)
157 {
158     uint8_t *src = c->decomp_buf;
159     uint16_t *output, *prev;
160     int8_t *mvec;
161     int x, y;
162     int d, dx, dy, bw2, bh2;
163     int block;
164     int i, j;
165     int mx, my;
166
167     output = (uint16_t*)c->cur;
168     prev = (uint16_t*)c->prev;
169
170     mvec = (int8_t*)src;
171     src += ((c->bx * c->by * 2 + 3) & ~3);
172
173     block = 0;
174     for (y = 0; y < c->height; y += c->bh) {
175         bh2 = ((c->height - y) > c->bh) ? c->bh : (c->height - y);
176         for (x = 0; x < c->width; x += c->bw) {
177             uint16_t *out, *tprev;
178
179             d = mvec[block] & 1;
180             dx = mvec[block] >> 1;
181             dy = mvec[block + 1] >> 1;
182             block += 2;
183
184             bw2 = ((c->width - x) > c->bw) ? c->bw : (c->width - x);
185
186             /* copy block - motion vectors out of bounds are used to zero blocks */
187             out = output + x;
188             tprev = prev + x + dx + dy * c->width;
189             mx = x + dx;
190             my = y + dy;
191             for (j = 0; j < bh2; j++) {
192                 if (my + j < 0 || my + j >= c->height) {
193                     memset(out, 0, bw2 * 2);
194                 } else {
195                     for (i = 0; i < bw2; i++) {
196                         if (mx + i < 0 || mx + i >= c->width)
197                             out[i] = 0;
198                         else
199                             out[i] = tprev[i];
200                     }
201                 }
202                 out += c->width;
203                 tprev += c->width;
204             }
205
206             if (d) { /* apply XOR'ed difference */
207                 out = output + x;
208                 for (j = 0; j < bh2; j++){
209                     for (i = 0; i < bw2; i++) {
210                         out[i] ^= *((uint16_t*)src);
211                         src += 2;
212                     }
213                     out += c->width;
214                 }
215             }
216         }
217         output += c->width * c->bh;
218         prev += c->width * c->bh;
219     }
220     if (src - c->decomp_buf != c->decomp_len)
221         av_log(c->avctx, AV_LOG_ERROR, "Used %ti of %i bytes\n",
222                src-c->decomp_buf, c->decomp_len);
223     return 0;
224 }
225
226 #ifdef ZMBV_ENABLE_24BPP
227 /**
228  * Decode XOR'ed frame - 24bpp version
229  */
230
231 static int zmbv_decode_xor_24(ZmbvContext *c)
232 {
233     uint8_t *src = c->decomp_buf;
234     uint8_t *output, *prev;
235     int8_t *mvec;
236     int x, y;
237     int d, dx, dy, bw2, bh2;
238     int block;
239     int i, j;
240     int mx, my;
241     int stride;
242
243     output = c->cur;
244     prev = c->prev;
245
246     stride = c->width * 3;
247     mvec = (int8_t*)src;
248     src += ((c->bx * c->by * 2 + 3) & ~3);
249
250     block = 0;
251     for (y = 0; y < c->height; y += c->bh) {
252         bh2 = ((c->height - y) > c->bh) ? c->bh : (c->height - y);
253         for (x = 0; x < c->width; x += c->bw) {
254             uint8_t *out, *tprev;
255
256             d = mvec[block] & 1;
257             dx = mvec[block] >> 1;
258             dy = mvec[block + 1] >> 1;
259             block += 2;
260
261             bw2 = ((c->width - x) > c->bw) ? c->bw : (c->width - x);
262
263             /* copy block - motion vectors out of bounds are used to zero blocks */
264             out = output + x * 3;
265             tprev = prev + (x + dx) * 3 + dy * stride;
266             mx = x + dx;
267             my = y + dy;
268             for (j = 0; j < bh2; j++) {
269                 if (my + j < 0 || my + j >= c->height) {
270                     memset(out, 0, bw2 * 3);
271                 } else {
272                     for (i = 0; i < bw2; i++){
273                         if (mx + i < 0 || mx + i >= c->width) {
274                             out[i * 3 + 0] = 0;
275                             out[i * 3 + 1] = 0;
276                             out[i * 3 + 2] = 0;
277                         } else {
278                             out[i * 3 + 0] = tprev[i * 3 + 0];
279                             out[i * 3 + 1] = tprev[i * 3 + 1];
280                             out[i * 3 + 2] = tprev[i * 3 + 2];
281                         }
282                     }
283                 }
284                 out += stride;
285                 tprev += stride;
286             }
287
288             if (d) { /* apply XOR'ed difference */
289                 out = output + x * 3;
290                 for (j = 0; j < bh2; j++) {
291                     for (i = 0; i < bw2; i++) {
292                         out[i * 3 + 0] ^= *src++;
293                         out[i * 3 + 1] ^= *src++;
294                         out[i * 3 + 2] ^= *src++;
295                     }
296                     out += stride;
297                 }
298             }
299         }
300         output += stride * c->bh;
301         prev += stride * c->bh;
302     }
303     if (src - c->decomp_buf != c->decomp_len)
304         av_log(c->avctx, AV_LOG_ERROR, "Used %i of %i bytes\n",
305                src-c->decomp_buf, c->decomp_len);
306     return 0;
307 }
308 #endif //ZMBV_ENABLE_24BPP
309
310 /**
311  * Decode XOR'ed frame - 32bpp version
312  */
313
314 static int zmbv_decode_xor_32(ZmbvContext *c)
315 {
316     uint8_t *src = c->decomp_buf;
317     uint32_t *output, *prev;
318     int8_t *mvec;
319     int x, y;
320     int d, dx, dy, bw2, bh2;
321     int block;
322     int i, j;
323     int mx, my;
324
325     output = (uint32_t*)c->cur;
326     prev = (uint32_t*)c->prev;
327
328     mvec = (int8_t*)src;
329     src += ((c->bx * c->by * 2 + 3) & ~3);
330
331     block = 0;
332     for (y = 0; y < c->height; y += c->bh) {
333         bh2 = ((c->height - y) > c->bh) ? c->bh : (c->height - y);
334         for (x = 0; x < c->width; x += c->bw) {
335             uint32_t *out, *tprev;
336
337             d = mvec[block] & 1;
338             dx = mvec[block] >> 1;
339             dy = mvec[block + 1] >> 1;
340             block += 2;
341
342             bw2 = ((c->width - x) > c->bw) ? c->bw : (c->width - x);
343
344             /* copy block - motion vectors out of bounds are used to zero blocks */
345             out = output + x;
346             tprev = prev + x + dx + dy * c->width;
347             mx = x + dx;
348             my = y + dy;
349             for (j = 0; j < bh2; j++) {
350                 if (my + j < 0 || my + j >= c->height) {
351                     memset(out, 0, bw2 * 4);
352                 } else {
353                     for (i = 0; i < bw2; i++){
354                         if (mx + i < 0 || mx + i >= c->width)
355                             out[i] = 0;
356                         else
357                             out[i] = tprev[i];
358                     }
359                 }
360                 out += c->width;
361                 tprev += c->width;
362             }
363
364             if (d) { /* apply XOR'ed difference */
365                 out = output + x;
366                 for (j = 0; j < bh2; j++){
367                     for (i = 0; i < bw2; i++) {
368                         out[i] ^= *((uint32_t *) src);
369                         src += 4;
370                     }
371                     out += c->width;
372                 }
373             }
374         }
375         output += c->width * c->bh;
376         prev   += c->width * c->bh;
377     }
378     if (src - c->decomp_buf != c->decomp_len)
379         av_log(c->avctx, AV_LOG_ERROR, "Used %ti of %i bytes\n",
380                src-c->decomp_buf, c->decomp_len);
381     return 0;
382 }
383
384 /**
385  * Decode intraframe
386  */
387 static int zmbv_decode_intra(ZmbvContext *c)
388 {
389     uint8_t *src = c->decomp_buf;
390
391     /* make the palette available on the way out */
392     if (c->fmt == ZMBV_FMT_8BPP) {
393         memcpy(c->pal, src, 768);
394         src += 768;
395     }
396
397     memcpy(c->cur, src, c->width * c->height * (c->bpp / 8));
398     return 0;
399 }
400
401 static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt)
402 {
403     const uint8_t *buf = avpkt->data;
404     int buf_size = avpkt->size;
405     ZmbvContext * const c = avctx->priv_data;
406     int zret = Z_OK; // Zlib return code
407     int len = buf_size;
408     int hi_ver, lo_ver, ret;
409
410     if (c->pic.data[0])
411             avctx->release_buffer(avctx, &c->pic);
412
413     c->pic.reference = 3;
414     c->pic.buffer_hints = FF_BUFFER_HINTS_VALID;
415     if ((ret = ff_get_buffer(avctx, &c->pic)) < 0) {
416         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
417         return ret;
418     }
419
420     /* parse header */
421     c->flags = buf[0];
422     buf++; len--;
423     if (c->flags & ZMBV_KEYFRAME) {
424         void *decode_intra = NULL;
425         c->decode_intra= NULL;
426         hi_ver = buf[0];
427         lo_ver = buf[1];
428         c->comp = buf[2];
429         c->fmt = buf[3];
430         c->bw = buf[4];
431         c->bh = buf[5];
432
433         buf += 6;
434         len -= 6;
435         av_log(avctx, AV_LOG_DEBUG,
436                "Flags=%X ver=%i.%i comp=%i fmt=%i blk=%ix%i\n",
437                c->flags,hi_ver,lo_ver,c->comp,c->fmt,c->bw,c->bh);
438         if (hi_ver != 0 || lo_ver != 1) {
439             av_log_ask_for_sample(avctx, "Unsupported version %i.%i\n",
440                                   hi_ver, lo_ver);
441             return AVERROR_PATCHWELCOME;
442         }
443         if (c->bw == 0 || c->bh == 0) {
444             av_log_ask_for_sample(avctx, "Unsupported block size %ix%i\n",
445                                   c->bw, c->bh);
446             return AVERROR_PATCHWELCOME;
447         }
448         if (c->comp != 0 && c->comp != 1) {
449             av_log_ask_for_sample(avctx, "Unsupported compression type %i\n",
450                                   c->comp);
451             return AVERROR_PATCHWELCOME;
452         }
453
454         switch (c->fmt) {
455         case ZMBV_FMT_8BPP:
456             c->bpp = 8;
457             decode_intra = zmbv_decode_intra;
458             c->decode_xor = zmbv_decode_xor_8;
459             break;
460         case ZMBV_FMT_15BPP:
461         case ZMBV_FMT_16BPP:
462             c->bpp = 16;
463             decode_intra = zmbv_decode_intra;
464             c->decode_xor = zmbv_decode_xor_16;
465             break;
466 #ifdef ZMBV_ENABLE_24BPP
467         case ZMBV_FMT_24BPP:
468             c->bpp = 24;
469             decode_intra = zmbv_decode_intra;
470             c->decode_xor = zmbv_decode_xor_24;
471             break;
472 #endif //ZMBV_ENABLE_24BPP
473         case ZMBV_FMT_32BPP:
474             c->bpp = 32;
475             decode_intra = zmbv_decode_intra;
476             c->decode_xor = zmbv_decode_xor_32;
477             break;
478         default:
479             c->decode_xor = NULL;
480             av_log_ask_for_sample(avctx, "Unsupported (for now) format %i\n",
481                                   c->fmt);
482             return AVERROR_PATCHWELCOME;
483         }
484
485         zret = inflateReset(&c->zstream);
486         if (zret != Z_OK) {
487             av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret);
488             return -1;
489         }
490
491         c->cur  = av_realloc_f(c->cur, avctx->width * avctx->height,  (c->bpp / 8));
492         c->prev = av_realloc_f(c->prev, avctx->width * avctx->height,  (c->bpp / 8));
493         c->bx = (c->width + c->bw - 1) / c->bw;
494         c->by = (c->height+ c->bh - 1) / c->bh;
495         if (!c->cur || !c->prev)
496             return -1;
497         memset(c->cur, 0, avctx->width * avctx->height * (c->bpp / 8));
498         memset(c->prev, 0, avctx->width * avctx->height * (c->bpp / 8));
499         c->decode_intra= decode_intra;
500     }
501
502     if (c->decode_intra == NULL) {
503         av_log(avctx, AV_LOG_ERROR, "Error! Got no format or no keyframe!\n");
504         return AVERROR_INVALIDDATA;
505     }
506
507     if (c->comp == 0) { //Uncompressed data
508         if (c->decomp_size < len) {
509             av_log(avctx, AV_LOG_ERROR, "decomp buffer too small\n");
510             return AVERROR_INVALIDDATA;
511         }
512         memcpy(c->decomp_buf, buf, len);
513     } else { // ZLIB-compressed data
514         c->zstream.total_in = c->zstream.total_out = 0;
515         c->zstream.next_in = (uint8_t*)buf;
516         c->zstream.avail_in = len;
517         c->zstream.next_out = c->decomp_buf;
518         c->zstream.avail_out = c->decomp_size;
519         zret = inflate(&c->zstream, Z_SYNC_FLUSH);
520         if (zret != Z_OK && zret != Z_STREAM_END) {
521             av_log(avctx, AV_LOG_ERROR, "inflate error %d\n", zret);
522             return AVERROR_INVALIDDATA;
523         }
524         c->decomp_len = c->zstream.total_out;
525     }
526     if (c->flags & ZMBV_KEYFRAME) {
527         c->pic.key_frame = 1;
528         c->pic.pict_type = AV_PICTURE_TYPE_I;
529         c->decode_intra(c);
530     } else {
531         c->pic.key_frame = 0;
532         c->pic.pict_type = AV_PICTURE_TYPE_P;
533         if (c->decomp_len)
534             c->decode_xor(c);
535     }
536
537     /* update frames */
538     {
539         uint8_t *out, *src;
540         int i, j;
541
542         out = c->pic.data[0];
543         src = c->cur;
544         switch (c->fmt) {
545         case ZMBV_FMT_8BPP:
546             for (j = 0; j < c->height; j++) {
547                 for (i = 0; i < c->width; i++) {
548                     out[i * 3 + 0] = c->pal[(*src) * 3 + 0];
549                     out[i * 3 + 1] = c->pal[(*src) * 3 + 1];
550                     out[i * 3 + 2] = c->pal[(*src) * 3 + 2];
551                     src++;
552                 }
553                 out += c->pic.linesize[0];
554             }
555             break;
556         case ZMBV_FMT_15BPP:
557             for (j = 0; j < c->height; j++) {
558                 for (i = 0; i < c->width; i++) {
559                     uint16_t tmp = AV_RL16(src);
560                     src += 2;
561                     out[i * 3 + 0] = (tmp & 0x7C00) >> 7;
562                     out[i * 3 + 1] = (tmp & 0x03E0) >> 2;
563                     out[i * 3 + 2] = (tmp & 0x001F) << 3;
564                 }
565                 out += c->pic.linesize[0];
566             }
567             break;
568         case ZMBV_FMT_16BPP:
569             for (j = 0; j < c->height; j++) {
570                 for (i = 0; i < c->width; i++) {
571                     uint16_t tmp = AV_RL16(src);
572                     src += 2;
573                     out[i * 3 + 0] = (tmp & 0xF800) >> 8;
574                     out[i * 3 + 1] = (tmp & 0x07E0) >> 3;
575                     out[i * 3 + 2] = (tmp & 0x001F) << 3;
576                 }
577                 out += c->pic.linesize[0];
578             }
579             break;
580 #ifdef ZMBV_ENABLE_24BPP
581         case ZMBV_FMT_24BPP:
582             for (j = 0; j < c->height; j++) {
583                 memcpy(out, src, c->width * 3);
584                 src += c->width * 3;
585                 out += c->pic.linesize[0];
586             }
587             break;
588 #endif //ZMBV_ENABLE_24BPP
589         case ZMBV_FMT_32BPP:
590             for (j = 0; j < c->height; j++) {
591                 for (i = 0; i < c->width; i++) {
592                     uint32_t tmp = AV_RL32(src);
593                     src += 4;
594                     AV_WB24(out+(i*3), tmp);
595                 }
596                 out += c->pic.linesize[0];
597             }
598             break;
599         default:
600             av_log(avctx, AV_LOG_ERROR, "Cannot handle format %i\n", c->fmt);
601         }
602         FFSWAP(uint8_t *, c->cur, c->prev);
603     }
604     *data_size = sizeof(AVFrame);
605     *(AVFrame*)data = c->pic;
606
607     /* always report that the buffer was completely consumed */
608     return buf_size;
609 }
610
611
612
613 /*
614  *
615  * Init zmbv decoder
616  *
617  */
618 static av_cold int decode_init(AVCodecContext *avctx)
619 {
620     ZmbvContext * const c = avctx->priv_data;
621     int zret; // Zlib return code
622
623     c->avctx = avctx;
624
625     c->width = avctx->width;
626     c->height = avctx->height;
627     avcodec_get_frame_defaults(&c->pic);
628
629     c->bpp = avctx->bits_per_coded_sample;
630
631     // Needed if zlib unused or init aborted before inflateInit
632     memset(&c->zstream, 0, sizeof(z_stream));
633
634     avctx->pix_fmt = AV_PIX_FMT_RGB24;
635     c->decomp_size = (avctx->width + 255) * 4 * (avctx->height + 64);
636
637     /* Allocate decompression buffer */
638     if (c->decomp_size) {
639         if ((c->decomp_buf = av_mallocz(c->decomp_size)) == NULL) {
640             av_log(avctx, AV_LOG_ERROR,
641                    "Can't allocate decompression buffer.\n");
642             return AVERROR(ENOMEM);
643         }
644     }
645
646     c->zstream.zalloc = Z_NULL;
647     c->zstream.zfree = Z_NULL;
648     c->zstream.opaque = Z_NULL;
649     zret = inflateInit(&c->zstream);
650     if (zret != Z_OK) {
651         av_log(avctx, AV_LOG_ERROR, "Inflate init error: %d\n", zret);
652         return -1;
653     }
654
655     return 0;
656 }
657
658
659
660 /*
661  *
662  * Uninit zmbv decoder
663  *
664  */
665 static av_cold int decode_end(AVCodecContext *avctx)
666 {
667     ZmbvContext * const c = avctx->priv_data;
668
669     av_freep(&c->decomp_buf);
670
671     if (c->pic.data[0])
672         avctx->release_buffer(avctx, &c->pic);
673     inflateEnd(&c->zstream);
674     av_freep(&c->cur);
675     av_freep(&c->prev);
676
677     return 0;
678 }
679
680 AVCodec ff_zmbv_decoder = {
681     .name           = "zmbv",
682     .type           = AVMEDIA_TYPE_VIDEO,
683     .id             = AV_CODEC_ID_ZMBV,
684     .priv_data_size = sizeof(ZmbvContext),
685     .init           = decode_init,
686     .close          = decode_end,
687     .decode         = decode_frame,
688     .capabilities   = CODEC_CAP_DR1,
689     .long_name      = NULL_IF_CONFIG_SMALL("Zip Motion Blocks Video"),
690 };