annotate zmbv.c @ 6517:48759bfbd073 libavcodec

Apply 'cold' attribute to init/uninit functions in libavcodec
author zuxy
date Fri, 21 Mar 2008 03:11:20 +0000
parents 863a6c0ff6ad
children f282270c589f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
1 /*
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
2 * Zip Motion Blocks Video (ZMBV) decoder
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
3 * Copyright (c) 2006 Konstantin Shishkov
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
4 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3800
diff changeset
5 * This file is part of FFmpeg.
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3800
diff changeset
6 *
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3800
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3800
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
11 *
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3800
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
15 * Lesser General Public License for more details.
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
16 *
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
3947
c8c591fe26f8 Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents: 3800
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
20 */
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
21
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
22 /**
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
23 * @file zmbv.c
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
24 * Zip Motion Blocks Video decoder
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
25 */
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
26
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
27 #include <stdio.h>
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
28 #include <stdlib.h>
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
29
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
30 #include "avcodec.h"
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
31
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
32 #include <zlib.h>
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
33
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
34 #define ZMBV_KEYFRAME 1
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
35 #define ZMBV_DELTAPAL 2
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
36
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
37 enum ZmbvFormat {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
38 ZMBV_FMT_NONE = 0,
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
39 ZMBV_FMT_1BPP = 1,
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
40 ZMBV_FMT_2BPP = 2,
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
41 ZMBV_FMT_4BPP = 3,
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
42 ZMBV_FMT_8BPP = 4,
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
43 ZMBV_FMT_15BPP = 5,
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
44 ZMBV_FMT_16BPP = 6,
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
45 ZMBV_FMT_24BPP = 7,
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
46 ZMBV_FMT_32BPP = 8
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
47 };
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
48
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
49 /*
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
50 * Decoder context
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
51 */
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
52 typedef struct ZmbvContext {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
53 AVCodecContext *avctx;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
54 AVFrame pic;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
55
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
56 int bpp;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
57 unsigned int decomp_size;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
58 uint8_t* decomp_buf;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
59 uint8_t pal[768];
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
60 uint8_t *prev, *cur;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
61 int width, height;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
62 int fmt;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
63 int comp;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
64 int flags;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
65 int bw, bh, bx, by;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
66 int decomp_len;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
67 z_stream zstream;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
68 int (*decode_intra)(struct ZmbvContext *c);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
69 int (*decode_xor)(struct ZmbvContext *c);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
70 } ZmbvContext;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
71
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
72 /**
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
73 * Decode XOR'ed frame - 8bpp version
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
74 */
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
75
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
76 static int zmbv_decode_xor_8(ZmbvContext *c)
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
77 {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
78 uint8_t *src = c->decomp_buf;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
79 uint8_t *output, *prev;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
80 int8_t *mvec;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
81 int x, y;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
82 int d, dx, dy, bw2, bh2;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
83 int block;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
84 int i, j;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
85 int mx, my;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
86
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
87 output = c->cur;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
88 prev = c->prev;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
89
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
90 if(c->flags & ZMBV_DELTAPAL){
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
91 for(i = 0; i < 768; i++)
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
92 c->pal[i] ^= *src++;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
93 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
94
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
95 mvec = (int8_t*)src;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
96 src += ((c->bx * c->by * 2 + 3) & ~3);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
97
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
98 block = 0;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
99 for(y = 0; y < c->height; y += c->bh) {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
100 bh2 = ((c->height - y) > c->bh) ? c->bh : (c->height - y);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
101 for(x = 0; x < c->width; x += c->bw) {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
102 uint8_t *out, *tprev;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
103
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
104 d = mvec[block] & 1;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
105 dx = mvec[block] >> 1;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
106 dy = mvec[block + 1] >> 1;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
107 block += 2;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
108
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
109 bw2 = ((c->width - x) > c->bw) ? c->bw : (c->width - x);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
110
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
111 /* copy block - motion vectors out of bounds are used to zero blocks */
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
112 out = output + x;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
113 tprev = prev + x + dx + dy * c->width;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
114 mx = x + dx;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
115 my = y + dy;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
116 for(j = 0; j < bh2; j++){
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
117 if((my + j < 0) || (my + j >= c->height)) {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
118 memset(out, 0, bw2);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
119 } else {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
120 for(i = 0; i < bw2; i++){
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
121 if((mx + i < 0) || (mx + i >= c->width))
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
122 out[i] = 0;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
123 else
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
124 out[i] = tprev[i];
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
125 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
126 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
127 out += c->width;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
128 tprev += c->width;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
129 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
130
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
131 if(d) { /* apply XOR'ed difference */
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
132 out = output + x;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
133 for(j = 0; j < bh2; j++){
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
134 for(i = 0; i < bw2; i++)
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
135 out[i] ^= *src++;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
136 out += c->width;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
137 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
138 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
139 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
140 output += c->width * c->bh;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
141 prev += c->width * c->bh;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
142 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
143 if(src - c->decomp_buf != c->decomp_len)
5153
b985439e3e15 fix some printf format specifiers
mru
parents: 5089
diff changeset
144 av_log(c->avctx, AV_LOG_ERROR, "Used %ti of %i bytes\n", src-c->decomp_buf, c->decomp_len);
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
145 return 0;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
146 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
147
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
148 /**
3134
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
149 * Decode XOR'ed frame - 15bpp and 16bpp version
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
150 */
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
151
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
152 static int zmbv_decode_xor_16(ZmbvContext *c)
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
153 {
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
154 uint8_t *src = c->decomp_buf;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
155 uint16_t *output, *prev;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
156 int8_t *mvec;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
157 int x, y;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
158 int d, dx, dy, bw2, bh2;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
159 int block;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
160 int i, j;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
161 int mx, my;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
162
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
163 output = (uint16_t*)c->cur;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
164 prev = (uint16_t*)c->prev;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
165
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
166 mvec = (int8_t*)src;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
167 src += ((c->bx * c->by * 2 + 3) & ~3);
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
168
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
169 block = 0;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
170 for(y = 0; y < c->height; y += c->bh) {
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
171 bh2 = ((c->height - y) > c->bh) ? c->bh : (c->height - y);
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
172 for(x = 0; x < c->width; x += c->bw) {
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
173 uint16_t *out, *tprev;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
174
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
175 d = mvec[block] & 1;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
176 dx = mvec[block] >> 1;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
177 dy = mvec[block + 1] >> 1;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
178 block += 2;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
179
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
180 bw2 = ((c->width - x) > c->bw) ? c->bw : (c->width - x);
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
181
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
182 /* copy block - motion vectors out of bounds are used to zero blocks */
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
183 out = output + x;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
184 tprev = prev + x + dx + dy * c->width;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
185 mx = x + dx;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
186 my = y + dy;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
187 for(j = 0; j < bh2; j++){
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
188 if((my + j < 0) || (my + j >= c->height)) {
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
189 memset(out, 0, bw2 * 2);
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
190 } else {
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
191 for(i = 0; i < bw2; i++){
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
192 if((mx + i < 0) || (mx + i >= c->width))
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
193 out[i] = 0;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
194 else
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
195 out[i] = tprev[i];
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
196 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
197 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
198 out += c->width;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
199 tprev += c->width;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
200 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
201
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
202 if(d) { /* apply XOR'ed difference */
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
203 out = output + x;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
204 for(j = 0; j < bh2; j++){
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
205 for(i = 0; i < bw2; i++) {
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
206 out[i] ^= *((uint16_t*)src);
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
207 src += 2;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
208 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
209 out += c->width;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
210 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
211 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
212 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
213 output += c->width * c->bh;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
214 prev += c->width * c->bh;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
215 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
216 if(src - c->decomp_buf != c->decomp_len)
5153
b985439e3e15 fix some printf format specifiers
mru
parents: 5089
diff changeset
217 av_log(c->avctx, AV_LOG_ERROR, "Used %ti of %i bytes\n", src-c->decomp_buf, c->decomp_len);
3134
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
218 return 0;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
219 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
220
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
221 #ifdef ZMBV_ENABLE_24BPP
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
222 /**
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
223 * Decode XOR'ed frame - 24bpp version
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
224 */
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
225
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
226 static int zmbv_decode_xor_24(ZmbvContext *c)
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
227 {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
228 uint8_t *src = c->decomp_buf;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
229 uint8_t *output, *prev;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
230 int8_t *mvec;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
231 int x, y;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
232 int d, dx, dy, bw2, bh2;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
233 int block;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
234 int i, j;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
235 int mx, my;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
236 int stride;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
237
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
238 output = c->cur;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
239 prev = c->prev;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
240
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
241 stride = c->width * 3;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
242 mvec = (int8_t*)src;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
243 src += ((c->bx * c->by * 2 + 3) & ~3);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
244
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
245 block = 0;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
246 for(y = 0; y < c->height; y += c->bh) {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
247 bh2 = ((c->height - y) > c->bh) ? c->bh : (c->height - y);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
248 for(x = 0; x < c->width; x += c->bw) {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
249 uint8_t *out, *tprev;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
250
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
251 d = mvec[block] & 1;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
252 dx = mvec[block] >> 1;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
253 dy = mvec[block + 1] >> 1;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
254 block += 2;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
255
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
256 bw2 = ((c->width - x) > c->bw) ? c->bw : (c->width - x);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
257
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
258 /* copy block - motion vectors out of bounds are used to zero blocks */
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
259 out = output + x * 3;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
260 tprev = prev + (x + dx) * 3 + dy * stride;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
261 mx = x + dx;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
262 my = y + dy;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
263 for(j = 0; j < bh2; j++){
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
264 if((my + j < 0) || (my + j >= c->height)) {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
265 memset(out, 0, bw2 * 3);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
266 } else {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
267 for(i = 0; i < bw2; i++){
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
268 if((mx + i < 0) || (mx + i >= c->width)) {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
269 out[i * 3 + 0] = 0;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
270 out[i * 3 + 1] = 0;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
271 out[i * 3 + 2] = 0;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
272 } else {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
273 out[i * 3 + 0] = tprev[i * 3 + 0];
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
274 out[i * 3 + 1] = tprev[i * 3 + 1];
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
275 out[i * 3 + 2] = tprev[i * 3 + 2];
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
276 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
277 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
278 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
279 out += stride;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
280 tprev += stride;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
281 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
282
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
283 if(d) { /* apply XOR'ed difference */
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
284 out = output + x * 3;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
285 for(j = 0; j < bh2; j++){
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
286 for(i = 0; i < bw2; i++) {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
287 out[i * 3 + 0] ^= *src++;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
288 out[i * 3 + 1] ^= *src++;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
289 out[i * 3 + 2] ^= *src++;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
290 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
291 out += stride;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
292 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
293 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
294 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
295 output += stride * c->bh;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
296 prev += stride * c->bh;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
297 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
298 if(src - c->decomp_buf != c->decomp_len)
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
299 av_log(c->avctx, AV_LOG_ERROR, "Used %i of %i bytes\n", src-c->decomp_buf, c->decomp_len);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
300 return 0;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
301 }
3134
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
302 #endif //ZMBV_ENABLE_24BPP
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
303
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
304 /**
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
305 * Decode XOR'ed frame - 32bpp version
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
306 */
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
307
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
308 static int zmbv_decode_xor_32(ZmbvContext *c)
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
309 {
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
310 uint8_t *src = c->decomp_buf;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
311 uint32_t *output, *prev;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
312 int8_t *mvec;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
313 int x, y;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
314 int d, dx, dy, bw2, bh2;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
315 int block;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
316 int i, j;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
317 int mx, my;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
318
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
319 output = (uint32_t*)c->cur;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
320 prev = (uint32_t*)c->prev;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
321
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
322 mvec = (int8_t*)src;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
323 src += ((c->bx * c->by * 2 + 3) & ~3);
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
324
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
325 block = 0;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
326 for(y = 0; y < c->height; y += c->bh) {
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
327 bh2 = ((c->height - y) > c->bh) ? c->bh : (c->height - y);
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
328 for(x = 0; x < c->width; x += c->bw) {
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
329 uint32_t *out, *tprev;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
330
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
331 d = mvec[block] & 1;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
332 dx = mvec[block] >> 1;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
333 dy = mvec[block + 1] >> 1;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
334 block += 2;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
335
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
336 bw2 = ((c->width - x) > c->bw) ? c->bw : (c->width - x);
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
337
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
338 /* copy block - motion vectors out of bounds are used to zero blocks */
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
339 out = output + x;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
340 tprev = prev + x + dx + dy * c->width;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
341 mx = x + dx;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
342 my = y + dy;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
343 for(j = 0; j < bh2; j++){
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
344 if((my + j < 0) || (my + j >= c->height)) {
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
345 memset(out, 0, bw2 * 4);
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
346 } else {
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
347 for(i = 0; i < bw2; i++){
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
348 if((mx + i < 0) || (mx + i >= c->width))
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
349 out[i] = 0;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
350 else
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
351 out[i] = tprev[i];
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
352 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
353 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
354 out += c->width;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
355 tprev += c->width;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
356 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
357
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
358 if(d) { /* apply XOR'ed difference */
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
359 out = output + x;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
360 for(j = 0; j < bh2; j++){
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
361 for(i = 0; i < bw2; i++) {
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
362 out[i] ^= *((uint32_t*)src);
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
363 src += 4;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
364 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
365 out += c->width;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
366 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
367 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
368 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
369 output += c->width * c->bh;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
370 prev += c->width * c->bh;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
371 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
372 if(src - c->decomp_buf != c->decomp_len)
5153
b985439e3e15 fix some printf format specifiers
mru
parents: 5089
diff changeset
373 av_log(c->avctx, AV_LOG_ERROR, "Used %ti of %i bytes\n", src-c->decomp_buf, c->decomp_len);
3134
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
374 return 0;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
375 }
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
376
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
377 /**
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
378 * Decode intraframe
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
379 */
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
380 static int zmbv_decode_intra(ZmbvContext *c)
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
381 {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
382 uint8_t *src = c->decomp_buf;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
383
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
384 /* make the palette available on the way out */
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
385 if (c->fmt == ZMBV_FMT_8BPP) {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
386 memcpy(c->pal, src, 768);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
387 src += 768;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
388 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
389
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
390 memcpy(c->cur, src, c->width * c->height * (c->bpp / 8));
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
391 return 0;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
392 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
393
6301
michael
parents: 5349
diff changeset
394 static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, const uint8_t *buf, int buf_size)
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
395 {
4827
b3ee9a1526b0 Get rid of unnecessary pointer casts.
diego
parents: 4740
diff changeset
396 ZmbvContext * const c = avctx->priv_data;
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
397 uint8_t *outptr;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
398 int zret = Z_OK; // Zlib return code
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
399 int len = buf_size;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
400 int hi_ver, lo_ver;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
401
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
402 if(c->pic.data[0])
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
403 avctx->release_buffer(avctx, &c->pic);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
404
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
405 c->pic.reference = 1;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
406 c->pic.buffer_hints = FF_BUFFER_HINTS_VALID;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
407 if(avctx->get_buffer(avctx, &c->pic) < 0){
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
408 av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
409 return -1;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
410 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
411
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
412 outptr = c->pic.data[0]; // Output image pointer
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
413
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
414 /* parse header */
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
415 c->flags = buf[0];
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
416 buf++; len--;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
417 if(c->flags & ZMBV_KEYFRAME) {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
418 hi_ver = buf[0];
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
419 lo_ver = buf[1];
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
420 c->comp = buf[2];
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
421 c->fmt = buf[3];
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
422 c->bw = buf[4];
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
423 c->bh = buf[5];
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
424
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
425 buf += 6;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
426 len -= 6;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
427 av_log(avctx, AV_LOG_DEBUG, "Flags=%X ver=%i.%i comp=%i fmt=%i blk=%ix%i\n",c->flags,hi_ver,lo_ver,c->comp,c->fmt,c->bw,c->bh);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
428 if(hi_ver != 0 || lo_ver != 1) {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
429 av_log(avctx, AV_LOG_ERROR, "Unsupported version %i.%i\n", hi_ver, lo_ver);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
430 return -1;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
431 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
432 if(c->bw == 0 || c->bh == 0) {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
433 av_log(avctx, AV_LOG_ERROR, "Unsupported block size %ix%i\n", c->bw, c->bh);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
434 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
435 if(c->comp != 0 && c->comp != 1) {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
436 av_log(avctx, AV_LOG_ERROR, "Unsupported compression type %i\n", c->comp);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
437 return -1;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
438 }
3134
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
439
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
440 switch(c->fmt) {
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
441 case ZMBV_FMT_8BPP:
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
442 c->bpp = 8;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
443 c->decode_intra = zmbv_decode_intra;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
444 c->decode_xor = zmbv_decode_xor_8;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
445 break;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
446 case ZMBV_FMT_15BPP:
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
447 case ZMBV_FMT_16BPP:
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
448 c->bpp = 16;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
449 c->decode_intra = zmbv_decode_intra;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
450 c->decode_xor = zmbv_decode_xor_16;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
451 break;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
452 #ifdef ZMBV_ENABLE_24BPP
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
453 case ZMBV_FMT_24BPP:
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
454 c->bpp = 24;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
455 c->decode_intra = zmbv_decode_intra;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
456 c->decode_xor = zmbv_decode_xor_24;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
457 break;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
458 #endif //ZMBV_ENABLE_24BPP
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
459 case ZMBV_FMT_32BPP:
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
460 c->bpp = 32;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
461 c->decode_intra = zmbv_decode_intra;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
462 c->decode_xor = zmbv_decode_xor_32;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
463 break;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
464 default:
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
465 c->decode_intra = NULL;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
466 c->decode_xor = NULL;
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
467 av_log(avctx, AV_LOG_ERROR, "Unsupported (for now) format %i\n", c->fmt);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
468 return -1;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
469 }
5349
6a4286208743 remove useless #ifdef CONFIG_ZLIB from zmbv decoder
mru
parents: 5258
diff changeset
470
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
471 zret = inflateReset(&c->zstream);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
472 if (zret != Z_OK) {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
473 av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
474 return -1;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
475 }
5349
6a4286208743 remove useless #ifdef CONFIG_ZLIB from zmbv decoder
mru
parents: 5258
diff changeset
476
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
477 c->cur = av_realloc(c->cur, avctx->width * avctx->height * (c->bpp / 8));
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
478 c->prev = av_realloc(c->prev, avctx->width * avctx->height * (c->bpp / 8));
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
479 c->bx = (c->width + c->bw - 1) / c->bw;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
480 c->by = (c->height+ c->bh - 1) / c->bh;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
481 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
482
3134
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
483 if(c->decode_intra == NULL) {
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
484 av_log(avctx, AV_LOG_ERROR, "Error! Got no format or no keyframe!\n");
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
485 return -1;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
486 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
487
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
488 if(c->comp == 0) { //Uncompressed data
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
489 memcpy(c->decomp_buf, buf, len);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
490 c->decomp_size = 1;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
491 } else { // ZLIB-compressed data
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
492 c->zstream.total_in = c->zstream.total_out = 0;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
493 c->zstream.next_in = buf;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
494 c->zstream.avail_in = len;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
495 c->zstream.next_out = c->decomp_buf;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
496 c->zstream.avail_out = c->decomp_size;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
497 inflate(&c->zstream, Z_FINISH);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
498 c->decomp_len = c->zstream.total_out;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
499 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
500 if(c->flags & ZMBV_KEYFRAME) {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
501 c->pic.key_frame = 1;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
502 c->pic.pict_type = FF_I_TYPE;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
503 c->decode_intra(c);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
504 } else {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
505 c->pic.key_frame = 0;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
506 c->pic.pict_type = FF_P_TYPE;
6478
9818b6840614 Correctly handle empty frames
kostya
parents: 6301
diff changeset
507 if(c->decomp_len)
6479
863a6c0ff6ad indentation
kostya
parents: 6478
diff changeset
508 c->decode_xor(c);
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
509 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
510
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
511 /* update frames */
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
512 {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
513 uint8_t *out, *src;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
514 int i, j;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
515
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
516 out = c->pic.data[0];
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
517 src = c->cur;
3134
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
518 switch(c->fmt) {
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
519 case ZMBV_FMT_8BPP:
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
520 for(j = 0; j < c->height; j++) {
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
521 for(i = 0; i < c->width; i++) {
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
522 out[i * 3 + 0] = c->pal[(*src) * 3 + 0];
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
523 out[i * 3 + 1] = c->pal[(*src) * 3 + 1];
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
524 out[i * 3 + 2] = c->pal[(*src) * 3 + 2];
5258
4372aeade5dc trivial warning fixes
mru
parents: 5215
diff changeset
525 src++;
3134
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
526 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
527 out += c->pic.linesize[0];
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
528 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
529 break;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
530 case ZMBV_FMT_15BPP:
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
531 for(j = 0; j < c->height; j++) {
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
532 for(i = 0; i < c->width; i++) {
4364
05e932ddaaa9 rename BE/LE_8/16/32 to AV_RL/B_8/16/32
alex
parents: 3947
diff changeset
533 uint16_t tmp = AV_RL16(src);
3134
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
534 src += 2;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
535 out[i * 3 + 0] = (tmp & 0x7C00) >> 7;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
536 out[i * 3 + 1] = (tmp & 0x03E0) >> 2;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
537 out[i * 3 + 2] = (tmp & 0x001F) << 3;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
538 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
539 out += c->pic.linesize[0];
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
540 }
3134
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
541 break;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
542 case ZMBV_FMT_16BPP:
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
543 for(j = 0; j < c->height; j++) {
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
544 for(i = 0; i < c->width; i++) {
4364
05e932ddaaa9 rename BE/LE_8/16/32 to AV_RL/B_8/16/32
alex
parents: 3947
diff changeset
545 uint16_t tmp = AV_RL16(src);
3134
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
546 src += 2;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
547 out[i * 3 + 0] = (tmp & 0xF800) >> 8;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
548 out[i * 3 + 1] = (tmp & 0x07E0) >> 3;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
549 out[i * 3 + 2] = (tmp & 0x001F) << 3;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
550 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
551 out += c->pic.linesize[0];
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
552 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
553 break;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
554 #ifdef ZMBV_ENABLE_24BPP
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
555 case ZMBV_FMT_24BPP:
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
556 for(j = 0; j < c->height; j++) {
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
557 memcpy(out, src, c->width * 3);
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
558 src += c->width * 3;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
559 out += c->pic.linesize[0];
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
560 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
561 break;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
562 #endif //ZMBV_ENABLE_24BPP
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
563 case ZMBV_FMT_32BPP:
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
564 for(j = 0; j < c->height; j++) {
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
565 for(i = 0; i < c->width; i++) {
4364
05e932ddaaa9 rename BE/LE_8/16/32 to AV_RL/B_8/16/32
alex
parents: 3947
diff changeset
566 uint32_t tmp = AV_RL32(src);
3134
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
567 src += 4;
5089
bff60ecc02f9 Use AV_xx throughout libavcodec
ramiro
parents: 4962
diff changeset
568 AV_WB24(out+(i*3), tmp);
3134
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
569 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
570 out += c->pic.linesize[0];
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
571 }
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
572 break;
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
573 default:
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
574 av_log(avctx, AV_LOG_ERROR, "Cannot handle format %i\n", c->fmt);
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
575 }
3134
03af25454cc3 ZMBV 15-/16-/32-bit decoding. 24-bit mode is disabled because it's not
diego
parents: 3122
diff changeset
576 memcpy(c->prev, c->cur, c->width * c->height * (c->bpp / 8));
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
577 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
578 *data_size = sizeof(AVFrame);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
579 *(AVFrame*)data = c->pic;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
580
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
581 /* always report that the buffer was completely consumed */
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
582 return buf_size;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
583 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
584
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
585
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
586
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
587 /*
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
588 *
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
589 * Init zmbv decoder
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
590 *
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
591 */
6517
48759bfbd073 Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents: 6479
diff changeset
592 static av_cold int decode_init(AVCodecContext *avctx)
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
593 {
4827
b3ee9a1526b0 Get rid of unnecessary pointer casts.
diego
parents: 4740
diff changeset
594 ZmbvContext * const c = avctx->priv_data;
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
595 int zret; // Zlib return code
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
596
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
597 c->avctx = avctx;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
598
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
599 c->pic.data[0] = NULL;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
600 c->width = avctx->width;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
601 c->height = avctx->height;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
602
3800
9b75ab171fa9 1l: correct argument order in avcodec_check_dimensions
kostya
parents: 3694
diff changeset
603 if (avcodec_check_dimensions(avctx, avctx->width, avctx->height) < 0) {
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
604 return 1;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
605 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
606 c->bpp = avctx->bits_per_sample;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
607
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
608 // Needed if zlib unused or init aborted before inflateInit
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
609 memset(&(c->zstream), 0, sizeof(z_stream));
5349
6a4286208743 remove useless #ifdef CONFIG_ZLIB from zmbv decoder
mru
parents: 5258
diff changeset
610
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
611 avctx->pix_fmt = PIX_FMT_RGB24;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
612 c->decomp_size = (avctx->width + 255) * 4 * (avctx->height + 64);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
613
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
614 /* Allocate decompression buffer */
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
615 if (c->decomp_size) {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
616 if ((c->decomp_buf = av_malloc(c->decomp_size)) == NULL) {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
617 av_log(avctx, AV_LOG_ERROR, "Can't allocate decompression buffer.\n");
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
618 return 1;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
619 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
620 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
621
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
622 c->zstream.zalloc = Z_NULL;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
623 c->zstream.zfree = Z_NULL;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
624 c->zstream.opaque = Z_NULL;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
625 zret = inflateInit(&(c->zstream));
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
626 if (zret != Z_OK) {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
627 av_log(avctx, AV_LOG_ERROR, "Inflate init error: %d\n", zret);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
628 return 1;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
629 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
630
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
631 return 0;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
632 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
633
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
634
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
635
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
636 /*
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
637 *
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
638 * Uninit zmbv decoder
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
639 *
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
640 */
6517
48759bfbd073 Apply 'cold' attribute to init/uninit functions in libavcodec
zuxy
parents: 6479
diff changeset
641 static av_cold int decode_end(AVCodecContext *avctx)
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
642 {
4827
b3ee9a1526b0 Get rid of unnecessary pointer casts.
diego
parents: 4740
diff changeset
643 ZmbvContext * const c = avctx->priv_data;
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
644
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
645 av_freep(&c->decomp_buf);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
646
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
647 if (c->pic.data[0])
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
648 avctx->release_buffer(avctx, &c->pic);
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
649 inflateEnd(&(c->zstream));
3694
8765ee4eaa45 Drop unneeded checks before av_free() and change to av_freep() where it's more suitable.
kostya
parents: 3134
diff changeset
650 av_freep(&c->cur);
8765ee4eaa45 Drop unneeded checks before av_free() and change to av_freep() where it's more suitable.
kostya
parents: 3134
diff changeset
651 av_freep(&c->prev);
3120
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
652
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
653 return 0;
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
654 }
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
655
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
656 AVCodec zmbv_decoder = {
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
657 "zmbv",
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
658 CODEC_TYPE_VIDEO,
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
659 CODEC_ID_ZMBV,
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
660 sizeof(ZmbvContext),
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
661 decode_init,
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
662 NULL,
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
663 decode_end,
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
664 decode_frame
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
665 };
1d184d61e714 dosbox native ZMBV decoder, courtesy of Kostya
melanson
parents:
diff changeset
666