ffmpeg / libavcodec / lcldec.c @ 8c18e490
History | View | Annotate | Download (22.7 KB)
1 |
/*
|
---|---|
2 |
* LCL (LossLess Codec Library) Codec
|
3 |
* Copyright (c) 2002-2004 Roberto Togni
|
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 libavcodec/lcldec.c
|
24 |
* LCL (LossLess Codec Library) Video Codec
|
25 |
* Decoder for MSZH and ZLIB codecs
|
26 |
* Experimental encoder for ZLIB RGB24
|
27 |
*
|
28 |
* Fourcc: MSZH, ZLIB
|
29 |
*
|
30 |
* Original Win32 dll:
|
31 |
* Ver2.23 By Kenji Oshima 2000.09.20
|
32 |
* avimszh.dll, avizlib.dll
|
33 |
*
|
34 |
* A description of the decoding algorithm can be found here:
|
35 |
* http://www.pcisys.net/~melanson/codecs
|
36 |
*
|
37 |
* Supports: BGR24 (RGB 24bpp)
|
38 |
*
|
39 |
*/
|
40 |
|
41 |
#include <stdio.h> |
42 |
#include <stdlib.h> |
43 |
|
44 |
#include "avcodec.h" |
45 |
#include "get_bits.h" |
46 |
#include "lcl.h" |
47 |
|
48 |
#if CONFIG_ZLIB
|
49 |
#include <zlib.h> |
50 |
#endif
|
51 |
|
52 |
/*
|
53 |
* Decoder context
|
54 |
*/
|
55 |
typedef struct LclDecContext { |
56 |
AVFrame pic; |
57 |
|
58 |
// Image type
|
59 |
int imgtype;
|
60 |
// Compression type
|
61 |
int compression;
|
62 |
// Flags
|
63 |
int flags;
|
64 |
// Decompressed data size
|
65 |
unsigned int decomp_size; |
66 |
// Decompression buffer
|
67 |
unsigned char* decomp_buf; |
68 |
#if CONFIG_ZLIB
|
69 |
z_stream zstream; |
70 |
#endif
|
71 |
} LclDecContext; |
72 |
|
73 |
|
74 |
static unsigned int mszh_decomp(unsigned char * srcptr, int srclen, unsigned char * destptr, unsigned int destsize) |
75 |
{ |
76 |
unsigned char *destptr_bak = destptr; |
77 |
unsigned char *destptr_end = destptr + destsize; |
78 |
unsigned char mask = 0; |
79 |
unsigned char maskbit = 0; |
80 |
unsigned int ofs, cnt; |
81 |
|
82 |
while (srclen > 0 && destptr < destptr_end) { |
83 |
if (maskbit == 0) { |
84 |
mask = *srcptr++; |
85 |
maskbit = 8;
|
86 |
srclen--; |
87 |
continue;
|
88 |
} |
89 |
if ((mask & (1 << (--maskbit))) == 0) { |
90 |
if (destptr + 4 > destptr_end) |
91 |
break;
|
92 |
AV_WN32(destptr, AV_RN32(srcptr)); |
93 |
srclen -= 4;
|
94 |
destptr += 4;
|
95 |
srcptr += 4;
|
96 |
} else {
|
97 |
ofs = *srcptr++; |
98 |
cnt = *srcptr++; |
99 |
ofs += cnt * 256;
|
100 |
cnt = ((cnt >> 3) & 0x1f) + 1; |
101 |
ofs &= 0x7ff;
|
102 |
srclen -= 2;
|
103 |
cnt *= 4;
|
104 |
if (destptr + cnt > destptr_end) {
|
105 |
cnt = destptr_end - destptr; |
106 |
} |
107 |
for (; cnt > 0; cnt--) { |
108 |
*destptr = *(destptr - ofs); |
109 |
destptr++; |
110 |
} |
111 |
} |
112 |
} |
113 |
|
114 |
return destptr - destptr_bak;
|
115 |
} |
116 |
|
117 |
|
118 |
|
119 |
/*
|
120 |
*
|
121 |
* Decode a frame
|
122 |
*
|
123 |
*/
|
124 |
static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt) |
125 |
{ |
126 |
const uint8_t *buf = avpkt->data;
|
127 |
int buf_size = avpkt->size;
|
128 |
LclDecContext * const c = avctx->priv_data;
|
129 |
unsigned char *encoded = (unsigned char *)buf; |
130 |
unsigned int pixel_ptr; |
131 |
int row, col;
|
132 |
unsigned char *outptr; |
133 |
uint8_t *y_out, *u_out, *v_out; |
134 |
unsigned int width = avctx->width; // Real image width |
135 |
unsigned int height = avctx->height; // Real image height |
136 |
unsigned int mszh_dlen; |
137 |
unsigned char yq, y1q, uq, vq; |
138 |
int uqvq;
|
139 |
unsigned int mthread_inlen, mthread_outlen; |
140 |
#if CONFIG_ZLIB
|
141 |
int zret; // Zlib return code |
142 |
#endif
|
143 |
unsigned int len = buf_size; |
144 |
|
145 |
if(c->pic.data[0]) |
146 |
avctx->release_buffer(avctx, &c->pic); |
147 |
|
148 |
c->pic.reference = 0;
|
149 |
c->pic.buffer_hints = FF_BUFFER_HINTS_VALID; |
150 |
if(avctx->get_buffer(avctx, &c->pic) < 0){ |
151 |
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
|
152 |
return -1; |
153 |
} |
154 |
|
155 |
outptr = c->pic.data[0]; // Output image pointer |
156 |
|
157 |
/* Decompress frame */
|
158 |
switch (avctx->codec_id) {
|
159 |
case CODEC_ID_MSZH:
|
160 |
switch (c->compression) {
|
161 |
case COMP_MSZH:
|
162 |
if (c->flags & FLAG_MULTITHREAD) {
|
163 |
mthread_inlen = *(unsigned int*)encoded; |
164 |
mthread_outlen = *(unsigned int*)(encoded+4); |
165 |
if (mthread_outlen > c->decomp_size) // this should not happen |
166 |
mthread_outlen = c->decomp_size; |
167 |
mszh_dlen = mszh_decomp(encoded + 8, mthread_inlen, c->decomp_buf, c->decomp_size);
|
168 |
if (mthread_outlen != mszh_dlen) {
|
169 |
av_log(avctx, AV_LOG_ERROR, "Mthread1 decoded size differs (%d != %d)\n",
|
170 |
mthread_outlen, mszh_dlen); |
171 |
return -1; |
172 |
} |
173 |
mszh_dlen = mszh_decomp(encoded + 8 + mthread_inlen, len - mthread_inlen,
|
174 |
c->decomp_buf + mthread_outlen, c->decomp_size - mthread_outlen); |
175 |
if (mthread_outlen != mszh_dlen) {
|
176 |
av_log(avctx, AV_LOG_ERROR, "Mthread2 decoded size differs (%d != %d)\n",
|
177 |
mthread_outlen, mszh_dlen); |
178 |
return -1; |
179 |
} |
180 |
encoded = c->decomp_buf; |
181 |
len = c->decomp_size; |
182 |
} else {
|
183 |
mszh_dlen = mszh_decomp(encoded, len, c->decomp_buf, c->decomp_size); |
184 |
if (c->decomp_size != mszh_dlen) {
|
185 |
av_log(avctx, AV_LOG_ERROR, "Decoded size differs (%d != %d)\n",
|
186 |
c->decomp_size, mszh_dlen); |
187 |
return -1; |
188 |
} |
189 |
encoded = c->decomp_buf; |
190 |
len = mszh_dlen; |
191 |
} |
192 |
break;
|
193 |
case COMP_MSZH_NOCOMP:
|
194 |
break;
|
195 |
default:
|
196 |
av_log(avctx, AV_LOG_ERROR, "BUG! Unknown MSZH compression in frame decoder.\n");
|
197 |
return -1; |
198 |
} |
199 |
break;
|
200 |
case CODEC_ID_ZLIB:
|
201 |
#if CONFIG_ZLIB
|
202 |
/* Using the original dll with normal compression (-1) and RGB format
|
203 |
* gives a file with ZLIB fourcc, but frame is really uncompressed.
|
204 |
* To be sure that's true check also frame size */
|
205 |
if (c->compression == COMP_ZLIB_NORMAL && c->imgtype == IMGTYPE_RGB24 &&
|
206 |
len == width * height * 3)
|
207 |
break;
|
208 |
zret = inflateReset(&c->zstream); |
209 |
if (zret != Z_OK) {
|
210 |
av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret);
|
211 |
return -1; |
212 |
} |
213 |
if (c->flags & FLAG_MULTITHREAD) {
|
214 |
mthread_inlen = *(unsigned int*)encoded; |
215 |
mthread_outlen = *(unsigned int*)(encoded+4); |
216 |
if (mthread_outlen > c->decomp_size)
|
217 |
mthread_outlen = c->decomp_size; |
218 |
c->zstream.next_in = encoded + 8;
|
219 |
c->zstream.avail_in = mthread_inlen; |
220 |
c->zstream.next_out = c->decomp_buf; |
221 |
c->zstream.avail_out = c->decomp_size; |
222 |
zret = inflate(&c->zstream, Z_FINISH); |
223 |
if (zret != Z_OK && zret != Z_STREAM_END) {
|
224 |
av_log(avctx, AV_LOG_ERROR, "Mthread1 inflate error: %d\n", zret);
|
225 |
return -1; |
226 |
} |
227 |
if (mthread_outlen != (unsigned int)c->zstream.total_out) { |
228 |
av_log(avctx, AV_LOG_ERROR, "Mthread1 decoded size differs (%u != %lu)\n",
|
229 |
mthread_outlen, c->zstream.total_out); |
230 |
return -1; |
231 |
} |
232 |
zret = inflateReset(&c->zstream); |
233 |
if (zret != Z_OK) {
|
234 |
av_log(avctx, AV_LOG_ERROR, "Mthread2 inflate reset error: %d\n", zret);
|
235 |
return -1; |
236 |
} |
237 |
c->zstream.next_in = encoded + 8 + mthread_inlen;
|
238 |
c->zstream.avail_in = len - mthread_inlen; |
239 |
c->zstream.next_out = c->decomp_buf + mthread_outlen; |
240 |
c->zstream.avail_out = c->decomp_size - mthread_outlen; |
241 |
zret = inflate(&c->zstream, Z_FINISH); |
242 |
if (zret != Z_OK && zret != Z_STREAM_END) {
|
243 |
av_log(avctx, AV_LOG_ERROR, "Mthread2 inflate error: %d\n", zret);
|
244 |
return -1; |
245 |
} |
246 |
if (mthread_outlen != (unsigned int)c->zstream.total_out) { |
247 |
av_log(avctx, AV_LOG_ERROR, "Mthread2 decoded size differs (%d != %lu)\n",
|
248 |
mthread_outlen, c->zstream.total_out); |
249 |
return -1; |
250 |
} |
251 |
} else {
|
252 |
c->zstream.next_in = encoded; |
253 |
c->zstream.avail_in = len; |
254 |
c->zstream.next_out = c->decomp_buf; |
255 |
c->zstream.avail_out = c->decomp_size; |
256 |
zret = inflate(&c->zstream, Z_FINISH); |
257 |
if (zret != Z_OK && zret != Z_STREAM_END) {
|
258 |
av_log(avctx, AV_LOG_ERROR, "Inflate error: %d\n", zret);
|
259 |
return -1; |
260 |
} |
261 |
if (c->decomp_size != (unsigned int)c->zstream.total_out) { |
262 |
av_log(avctx, AV_LOG_ERROR, "Decoded size differs (%d != %lu)\n",
|
263 |
c->decomp_size, c->zstream.total_out); |
264 |
return -1; |
265 |
} |
266 |
} |
267 |
encoded = c->decomp_buf; |
268 |
len = c->decomp_size; |
269 |
#else
|
270 |
av_log(avctx, AV_LOG_ERROR, "BUG! Zlib support not compiled in frame decoder.\n");
|
271 |
return -1; |
272 |
#endif
|
273 |
break;
|
274 |
default:
|
275 |
av_log(avctx, AV_LOG_ERROR, "BUG! Unknown codec in frame decoder compression switch.\n");
|
276 |
return -1; |
277 |
} |
278 |
|
279 |
|
280 |
/* Apply PNG filter */
|
281 |
if (avctx->codec_id == CODEC_ID_ZLIB && (c->flags & FLAG_PNGFILTER)) {
|
282 |
switch (c->imgtype) {
|
283 |
case IMGTYPE_YUV111:
|
284 |
case IMGTYPE_RGB24:
|
285 |
for (row = 0; row < height; row++) { |
286 |
pixel_ptr = row * width * 3;
|
287 |
yq = encoded[pixel_ptr++]; |
288 |
uqvq = AV_RL16(encoded+pixel_ptr); |
289 |
pixel_ptr += 2;
|
290 |
for (col = 1; col < width; col++) { |
291 |
encoded[pixel_ptr] = yq -= encoded[pixel_ptr]; |
292 |
uqvq -= AV_RL16(encoded+pixel_ptr+1);
|
293 |
AV_WL16(encoded+pixel_ptr+1, uqvq);
|
294 |
pixel_ptr += 3;
|
295 |
} |
296 |
} |
297 |
break;
|
298 |
case IMGTYPE_YUV422:
|
299 |
for (row = 0; row < height; row++) { |
300 |
pixel_ptr = row * width * 2;
|
301 |
yq = uq = vq =0;
|
302 |
for (col = 0; col < width/4; col++) { |
303 |
encoded[pixel_ptr] = yq -= encoded[pixel_ptr]; |
304 |
encoded[pixel_ptr+1] = yq -= encoded[pixel_ptr+1]; |
305 |
encoded[pixel_ptr+2] = yq -= encoded[pixel_ptr+2]; |
306 |
encoded[pixel_ptr+3] = yq -= encoded[pixel_ptr+3]; |
307 |
encoded[pixel_ptr+4] = uq -= encoded[pixel_ptr+4]; |
308 |
encoded[pixel_ptr+5] = uq -= encoded[pixel_ptr+5]; |
309 |
encoded[pixel_ptr+6] = vq -= encoded[pixel_ptr+6]; |
310 |
encoded[pixel_ptr+7] = vq -= encoded[pixel_ptr+7]; |
311 |
pixel_ptr += 8;
|
312 |
} |
313 |
} |
314 |
break;
|
315 |
case IMGTYPE_YUV411:
|
316 |
for (row = 0; row < height; row++) { |
317 |
pixel_ptr = row * width / 2 * 3; |
318 |
yq = uq = vq =0;
|
319 |
for (col = 0; col < width/4; col++) { |
320 |
encoded[pixel_ptr] = yq -= encoded[pixel_ptr]; |
321 |
encoded[pixel_ptr+1] = yq -= encoded[pixel_ptr+1]; |
322 |
encoded[pixel_ptr+2] = yq -= encoded[pixel_ptr+2]; |
323 |
encoded[pixel_ptr+3] = yq -= encoded[pixel_ptr+3]; |
324 |
encoded[pixel_ptr+4] = uq -= encoded[pixel_ptr+4]; |
325 |
encoded[pixel_ptr+5] = vq -= encoded[pixel_ptr+5]; |
326 |
pixel_ptr += 6;
|
327 |
} |
328 |
} |
329 |
break;
|
330 |
case IMGTYPE_YUV211:
|
331 |
for (row = 0; row < height; row++) { |
332 |
pixel_ptr = row * width * 2;
|
333 |
yq = uq = vq =0;
|
334 |
for (col = 0; col < width/2; col++) { |
335 |
encoded[pixel_ptr] = yq -= encoded[pixel_ptr]; |
336 |
encoded[pixel_ptr+1] = yq -= encoded[pixel_ptr+1]; |
337 |
encoded[pixel_ptr+2] = uq -= encoded[pixel_ptr+2]; |
338 |
encoded[pixel_ptr+3] = vq -= encoded[pixel_ptr+3]; |
339 |
pixel_ptr += 4;
|
340 |
} |
341 |
} |
342 |
break;
|
343 |
case IMGTYPE_YUV420:
|
344 |
for (row = 0; row < height/2; row++) { |
345 |
pixel_ptr = row * width * 3;
|
346 |
yq = y1q = uq = vq =0;
|
347 |
for (col = 0; col < width/2; col++) { |
348 |
encoded[pixel_ptr] = yq -= encoded[pixel_ptr]; |
349 |
encoded[pixel_ptr+1] = yq -= encoded[pixel_ptr+1]; |
350 |
encoded[pixel_ptr+2] = y1q -= encoded[pixel_ptr+2]; |
351 |
encoded[pixel_ptr+3] = y1q -= encoded[pixel_ptr+3]; |
352 |
encoded[pixel_ptr+4] = uq -= encoded[pixel_ptr+4]; |
353 |
encoded[pixel_ptr+5] = vq -= encoded[pixel_ptr+5]; |
354 |
pixel_ptr += 6;
|
355 |
} |
356 |
} |
357 |
break;
|
358 |
default:
|
359 |
av_log(avctx, AV_LOG_ERROR, "BUG! Unknown imagetype in pngfilter switch.\n");
|
360 |
return -1; |
361 |
} |
362 |
} |
363 |
|
364 |
/* Convert colorspace */
|
365 |
y_out = c->pic.data[0] + (height - 1) * c->pic.linesize[0]; |
366 |
u_out = c->pic.data[1] + (height - 1) * c->pic.linesize[1]; |
367 |
v_out = c->pic.data[2] + (height - 1) * c->pic.linesize[2]; |
368 |
switch (c->imgtype) {
|
369 |
case IMGTYPE_YUV111:
|
370 |
for (row = 0; row < height; row++) { |
371 |
for (col = 0; col < width; col++) { |
372 |
y_out[col] = *encoded++; |
373 |
u_out[col] = *encoded++ + 128;
|
374 |
v_out[col] = *encoded++ + 128;
|
375 |
} |
376 |
y_out -= c->pic.linesize[0];
|
377 |
u_out -= c->pic.linesize[1];
|
378 |
v_out -= c->pic.linesize[2];
|
379 |
} |
380 |
break;
|
381 |
case IMGTYPE_YUV422:
|
382 |
for (row = 0; row < height; row++) { |
383 |
for (col = 0; col < width - 3; col += 4) { |
384 |
memcpy(y_out + col, encoded, 4);
|
385 |
encoded += 4;
|
386 |
u_out[ col >> 1 ] = *encoded++ + 128; |
387 |
u_out[(col >> 1) + 1] = *encoded++ + 128; |
388 |
v_out[ col >> 1 ] = *encoded++ + 128; |
389 |
v_out[(col >> 1) + 1] = *encoded++ + 128; |
390 |
} |
391 |
y_out -= c->pic.linesize[0];
|
392 |
u_out -= c->pic.linesize[1];
|
393 |
v_out -= c->pic.linesize[2];
|
394 |
} |
395 |
break;
|
396 |
case IMGTYPE_RGB24:
|
397 |
for (row = height - 1; row >= 0; row--) { |
398 |
pixel_ptr = row * c->pic.linesize[0];
|
399 |
memcpy(outptr + pixel_ptr, encoded, 3 * width);
|
400 |
encoded += 3 * width;
|
401 |
} |
402 |
break;
|
403 |
case IMGTYPE_YUV411:
|
404 |
for (row = 0; row < height; row++) { |
405 |
for (col = 0; col < width - 3; col += 4) { |
406 |
memcpy(y_out + col, encoded, 4);
|
407 |
encoded += 4;
|
408 |
u_out[col >> 2] = *encoded++ + 128; |
409 |
v_out[col >> 2] = *encoded++ + 128; |
410 |
} |
411 |
y_out -= c->pic.linesize[0];
|
412 |
u_out -= c->pic.linesize[1];
|
413 |
v_out -= c->pic.linesize[2];
|
414 |
} |
415 |
break;
|
416 |
case IMGTYPE_YUV211:
|
417 |
for (row = 0; row < height; row++) { |
418 |
for (col = 0; col < width - 1; col += 2) { |
419 |
memcpy(y_out + col, encoded, 2);
|
420 |
encoded += 2;
|
421 |
u_out[col >> 1] = *encoded++ + 128; |
422 |
v_out[col >> 1] = *encoded++ + 128; |
423 |
} |
424 |
y_out -= c->pic.linesize[0];
|
425 |
u_out -= c->pic.linesize[1];
|
426 |
v_out -= c->pic.linesize[2];
|
427 |
} |
428 |
break;
|
429 |
case IMGTYPE_YUV420:
|
430 |
u_out = c->pic.data[1] + ((height >> 1) - 1) * c->pic.linesize[1]; |
431 |
v_out = c->pic.data[2] + ((height >> 1) - 1) * c->pic.linesize[2]; |
432 |
for (row = 0; row < height - 1; row += 2) { |
433 |
for (col = 0; col < width - 1; col += 2) { |
434 |
memcpy(y_out + col, encoded, 2);
|
435 |
encoded += 2;
|
436 |
memcpy(y_out + col - c->pic.linesize[0], encoded, 2); |
437 |
encoded += 2;
|
438 |
u_out[col >> 1] = *encoded++ + 128; |
439 |
v_out[col >> 1] = *encoded++ + 128; |
440 |
} |
441 |
y_out -= c->pic.linesize[0] << 1; |
442 |
u_out -= c->pic.linesize[1];
|
443 |
v_out -= c->pic.linesize[2];
|
444 |
} |
445 |
break;
|
446 |
default:
|
447 |
av_log(avctx, AV_LOG_ERROR, "BUG! Unknown imagetype in image decoder.\n");
|
448 |
return -1; |
449 |
} |
450 |
|
451 |
*data_size = sizeof(AVFrame);
|
452 |
*(AVFrame*)data = c->pic; |
453 |
|
454 |
/* always report that the buffer was completely consumed */
|
455 |
return buf_size;
|
456 |
} |
457 |
|
458 |
/*
|
459 |
*
|
460 |
* Init lcl decoder
|
461 |
*
|
462 |
*/
|
463 |
static av_cold int decode_init(AVCodecContext *avctx) |
464 |
{ |
465 |
LclDecContext * const c = avctx->priv_data;
|
466 |
unsigned int basesize = avctx->width * avctx->height; |
467 |
unsigned int max_basesize = ((avctx->width + 3) & ~3) * ((avctx->height + 3) & ~3); |
468 |
unsigned int max_decomp_size; |
469 |
int zret; // Zlib return code |
470 |
|
471 |
c->pic.data[0] = NULL; |
472 |
|
473 |
#if CONFIG_ZLIB
|
474 |
// Needed if zlib unused or init aborted before inflateInit
|
475 |
memset(&c->zstream, 0, sizeof(z_stream)); |
476 |
#endif
|
477 |
|
478 |
if (avctx->extradata_size < 8) { |
479 |
av_log(avctx, AV_LOG_ERROR, "Extradata size too small.\n");
|
480 |
return 1; |
481 |
} |
482 |
|
483 |
if (avcodec_check_dimensions(avctx, avctx->width, avctx->height) < 0) { |
484 |
return 1; |
485 |
} |
486 |
|
487 |
/* Check codec type */
|
488 |
if ((avctx->codec_id == CODEC_ID_MSZH && *((char *)avctx->extradata + 7) != CODEC_MSZH) || |
489 |
(avctx->codec_id == CODEC_ID_ZLIB && *((char *)avctx->extradata + 7) != CODEC_ZLIB)) { |
490 |
av_log(avctx, AV_LOG_ERROR, "Codec id and codec type mismatch. This should not happen.\n");
|
491 |
} |
492 |
|
493 |
/* Detect image type */
|
494 |
switch (c->imgtype = *((char *)avctx->extradata + 4)) { |
495 |
case IMGTYPE_YUV111:
|
496 |
c->decomp_size = basesize * 3;
|
497 |
max_decomp_size = max_basesize * 3;
|
498 |
avctx->pix_fmt = PIX_FMT_YUV444P; |
499 |
av_log(avctx, AV_LOG_INFO, "Image type is YUV 1:1:1.\n");
|
500 |
break;
|
501 |
case IMGTYPE_YUV422:
|
502 |
c->decomp_size = basesize * 2;
|
503 |
max_decomp_size = max_basesize * 2;
|
504 |
avctx->pix_fmt = PIX_FMT_YUV422P; |
505 |
av_log(avctx, AV_LOG_INFO, "Image type is YUV 4:2:2.\n");
|
506 |
break;
|
507 |
case IMGTYPE_RGB24:
|
508 |
c->decomp_size = basesize * 3;
|
509 |
max_decomp_size = max_basesize * 3;
|
510 |
avctx->pix_fmt = PIX_FMT_BGR24; |
511 |
av_log(avctx, AV_LOG_INFO, "Image type is RGB 24.\n");
|
512 |
break;
|
513 |
case IMGTYPE_YUV411:
|
514 |
c->decomp_size = basesize / 2 * 3; |
515 |
max_decomp_size = max_basesize / 2 * 3; |
516 |
avctx->pix_fmt = PIX_FMT_YUV411P; |
517 |
av_log(avctx, AV_LOG_INFO, "Image type is YUV 4:1:1.\n");
|
518 |
break;
|
519 |
case IMGTYPE_YUV211:
|
520 |
c->decomp_size = basesize * 2;
|
521 |
max_decomp_size = max_basesize * 2;
|
522 |
avctx->pix_fmt = PIX_FMT_YUV422P; |
523 |
av_log(avctx, AV_LOG_INFO, "Image type is YUV 2:1:1.\n");
|
524 |
break;
|
525 |
case IMGTYPE_YUV420:
|
526 |
c->decomp_size = basesize / 2 * 3; |
527 |
max_decomp_size = max_basesize / 2 * 3; |
528 |
avctx->pix_fmt = PIX_FMT_YUV420P; |
529 |
av_log(avctx, AV_LOG_INFO, "Image type is YUV 4:2:0.\n");
|
530 |
break;
|
531 |
default:
|
532 |
av_log(avctx, AV_LOG_ERROR, "Unsupported image format %d.\n", c->imgtype);
|
533 |
return 1; |
534 |
} |
535 |
|
536 |
/* Detect compression method */
|
537 |
c->compression = *((char *)avctx->extradata + 5); |
538 |
switch (avctx->codec_id) {
|
539 |
case CODEC_ID_MSZH:
|
540 |
switch (c->compression) {
|
541 |
case COMP_MSZH:
|
542 |
av_log(avctx, AV_LOG_INFO, "Compression enabled.\n");
|
543 |
break;
|
544 |
case COMP_MSZH_NOCOMP:
|
545 |
c->decomp_size = 0;
|
546 |
av_log(avctx, AV_LOG_INFO, "No compression.\n");
|
547 |
break;
|
548 |
default:
|
549 |
av_log(avctx, AV_LOG_ERROR, "Unsupported compression format for MSZH (%d).\n", c->compression);
|
550 |
return 1; |
551 |
} |
552 |
break;
|
553 |
case CODEC_ID_ZLIB:
|
554 |
#if CONFIG_ZLIB
|
555 |
switch (c->compression) {
|
556 |
case COMP_ZLIB_HISPEED:
|
557 |
av_log(avctx, AV_LOG_INFO, "High speed compression.\n");
|
558 |
break;
|
559 |
case COMP_ZLIB_HICOMP:
|
560 |
av_log(avctx, AV_LOG_INFO, "High compression.\n");
|
561 |
break;
|
562 |
case COMP_ZLIB_NORMAL:
|
563 |
av_log(avctx, AV_LOG_INFO, "Normal compression.\n");
|
564 |
break;
|
565 |
default:
|
566 |
if (c->compression < Z_NO_COMPRESSION || c->compression > Z_BEST_COMPRESSION) {
|
567 |
av_log(avctx, AV_LOG_ERROR, "Unsupported compression level for ZLIB: (%d).\n", c->compression);
|
568 |
return 1; |
569 |
} |
570 |
av_log(avctx, AV_LOG_INFO, "Compression level for ZLIB: (%d).\n", c->compression);
|
571 |
} |
572 |
#else
|
573 |
av_log(avctx, AV_LOG_ERROR, "Zlib support not compiled.\n");
|
574 |
return 1; |
575 |
#endif
|
576 |
break;
|
577 |
default:
|
578 |
av_log(avctx, AV_LOG_ERROR, "BUG! Unknown codec in compression switch.\n");
|
579 |
return 1; |
580 |
} |
581 |
|
582 |
/* Allocate decompression buffer */
|
583 |
if (c->decomp_size) {
|
584 |
if ((c->decomp_buf = av_malloc(max_decomp_size)) == NULL) { |
585 |
av_log(avctx, AV_LOG_ERROR, "Can't allocate decompression buffer.\n");
|
586 |
return 1; |
587 |
} |
588 |
} |
589 |
|
590 |
/* Detect flags */
|
591 |
c->flags = *((char *)avctx->extradata + 6); |
592 |
if (c->flags & FLAG_MULTITHREAD)
|
593 |
av_log(avctx, AV_LOG_INFO, "Multithread encoder flag set.\n");
|
594 |
if (c->flags & FLAG_NULLFRAME)
|
595 |
av_log(avctx, AV_LOG_INFO, "Nullframe insertion flag set.\n");
|
596 |
if ((avctx->codec_id == CODEC_ID_ZLIB) && (c->flags & FLAG_PNGFILTER))
|
597 |
av_log(avctx, AV_LOG_INFO, "PNG filter flag set.\n");
|
598 |
if (c->flags & FLAGMASK_UNUSED)
|
599 |
av_log(avctx, AV_LOG_ERROR, "Unknown flag set (%d).\n", c->flags);
|
600 |
|
601 |
/* If needed init zlib */
|
602 |
if (avctx->codec_id == CODEC_ID_ZLIB) {
|
603 |
#if CONFIG_ZLIB
|
604 |
c->zstream.zalloc = Z_NULL; |
605 |
c->zstream.zfree = Z_NULL; |
606 |
c->zstream.opaque = Z_NULL; |
607 |
zret = inflateInit(&c->zstream); |
608 |
if (zret != Z_OK) {
|
609 |
av_log(avctx, AV_LOG_ERROR, "Inflate init error: %d\n", zret);
|
610 |
return 1; |
611 |
} |
612 |
#else
|
613 |
av_log(avctx, AV_LOG_ERROR, "Zlib support not compiled.\n");
|
614 |
return 1; |
615 |
#endif
|
616 |
} |
617 |
|
618 |
return 0; |
619 |
} |
620 |
|
621 |
/*
|
622 |
*
|
623 |
* Uninit lcl decoder
|
624 |
*
|
625 |
*/
|
626 |
static av_cold int decode_end(AVCodecContext *avctx) |
627 |
{ |
628 |
LclDecContext * const c = avctx->priv_data;
|
629 |
|
630 |
if (c->pic.data[0]) |
631 |
avctx->release_buffer(avctx, &c->pic); |
632 |
#if CONFIG_ZLIB
|
633 |
inflateEnd(&c->zstream); |
634 |
#endif
|
635 |
|
636 |
return 0; |
637 |
} |
638 |
|
639 |
#if CONFIG_MSZH_DECODER
|
640 |
AVCodec mszh_decoder = { |
641 |
"mszh",
|
642 |
CODEC_TYPE_VIDEO, |
643 |
CODEC_ID_MSZH, |
644 |
sizeof(LclDecContext),
|
645 |
decode_init, |
646 |
NULL,
|
647 |
decode_end, |
648 |
decode_frame, |
649 |
CODEC_CAP_DR1, |
650 |
.long_name = NULL_IF_CONFIG_SMALL("LCL (LossLess Codec Library) MSZH"),
|
651 |
}; |
652 |
#endif
|
653 |
|
654 |
#if CONFIG_ZLIB_DECODER
|
655 |
AVCodec zlib_decoder = { |
656 |
"zlib",
|
657 |
CODEC_TYPE_VIDEO, |
658 |
CODEC_ID_ZLIB, |
659 |
sizeof(LclDecContext),
|
660 |
decode_init, |
661 |
NULL,
|
662 |
decode_end, |
663 |
decode_frame, |
664 |
CODEC_CAP_DR1, |
665 |
.long_name = NULL_IF_CONFIG_SMALL("LCL (LossLess Codec Library) ZLIB"),
|
666 |
}; |
667 |
#endif
|