FFmpeg
lcldec.c
Go to the documentation of this file.
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
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 #include "config_components.h"
41 
42 #include <stdio.h>
43 #include <stdlib.h>
44 
45 #include "libavutil/attributes.h"
46 #include "libavutil/mem.h"
47 #include "libavutil/pixdesc.h"
48 #include "avcodec.h"
49 #include "bytestream.h"
50 #include "codec_internal.h"
51 #include "lcl.h"
52 #include "thread.h"
53 
54 #if CONFIG_ZLIB_DECODER
55 #include "zlib_wrapper.h"
56 #include <zlib.h>
57 #endif
58 
59 typedef struct LclDecContext {
60  // Image type
61  int imgtype;
62  // Compression type
64  // Flags
65  int flags;
66  // Decompressed data size
67  unsigned int decomp_size;
68  // Decompression buffer
69  unsigned char* decomp_buf;
70 #if CONFIG_ZLIB_DECODER
71  FFZStream zstream;
72 #endif
74 
75 
76 /**
77  * @param srcptr compressed source buffer, must be padded with at least 5 extra bytes
78  * @param destptr must be padded sufficiently for av_memcpy_backptr
79  */
80 static unsigned int mszh_decomp(const unsigned char * srcptr, int srclen, unsigned char * destptr, unsigned int destsize)
81 {
82  unsigned char *destptr_bak = destptr;
83  unsigned char *destptr_end = destptr + destsize;
84  const unsigned char *srcptr_end = srcptr + srclen;
85  unsigned mask = *srcptr++;
86  unsigned maskbit = 0x80;
87 
88  while (srcptr < srcptr_end && destptr < destptr_end) {
89  if (!(mask & maskbit)) {
90  memcpy(destptr, srcptr, 4);
91  destptr += 4;
92  srcptr += 4;
93  } else {
94  unsigned ofs = bytestream_get_le16(&srcptr);
95  unsigned cnt = (ofs >> 11) + 1;
96  ofs &= 0x7ff;
97  ofs = FFMIN(ofs, destptr - destptr_bak);
98  cnt *= 4;
99  cnt = FFMIN(cnt, destptr_end - destptr);
100  if (ofs) {
101  av_memcpy_backptr(destptr, ofs, cnt);
102  } else {
103  // Not known what the correct behaviour is, but
104  // this at least avoids uninitialized data.
105  memset(destptr, 0, cnt);
106  }
107  destptr += cnt;
108  }
109  maskbit >>= 1;
110  if (!maskbit) {
111  mask = *srcptr++;
112  while (!mask) {
113  if (destptr_end - destptr < 32 || srcptr_end - srcptr < 32) break;
114  memcpy(destptr, srcptr, 32);
115  destptr += 32;
116  srcptr += 32;
117  mask = *srcptr++;
118  }
119  maskbit = 0x80;
120  }
121  }
122 
123  if (destptr < destptr_end)
124  memset(destptr, 0, destptr_end - destptr);
125 
126  return destptr - destptr_bak;
127 }
128 
129 
130 #if CONFIG_ZLIB_DECODER
131 /**
132  * @brief decompress a zlib-compressed data block into decomp_buf
133  * @param src compressed input buffer
134  * @param src_len data length in input buffer
135  * @param offset offset in decomp_buf
136  * @param expected expected decompressed length
137  */
138 static int zlib_decomp(AVCodecContext *avctx, const uint8_t *src, int src_len, int offset, int expected)
139 {
140  LclDecContext *c = avctx->priv_data;
141  z_stream *const zstream = &c->zstream.zstream;
142  int zret = inflateReset(zstream);
143  if (zret != Z_OK) {
144  av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret);
145  return AVERROR_UNKNOWN;
146  }
147  zstream->next_in = src;
148  zstream->avail_in = src_len;
149  zstream->next_out = c->decomp_buf + offset;
150  zstream->avail_out = c->decomp_size - offset;
151  zret = inflate(zstream, Z_FINISH);
152  if (zret != Z_OK && zret != Z_STREAM_END) {
153  av_log(avctx, AV_LOG_ERROR, "Inflate error: %d\n", zret);
154  return AVERROR_UNKNOWN;
155  }
156  if (expected != (unsigned int)zstream->total_out) {
157  av_log(avctx, AV_LOG_ERROR, "Decoded size differs (%d != %lu)\n",
158  expected, zstream->total_out);
159  if (expected > (unsigned int)zstream->total_out) {
160  memset(c->decomp_buf + offset + zstream->total_out, 0,
161  c->decomp_size - offset - zstream->total_out);
162  return (unsigned int)zstream->total_out;
163  }
164  return AVERROR_UNKNOWN;
165  }
166  return zstream->total_out;
167 }
168 #endif
169 
170 
172  int *got_frame, AVPacket *avpkt)
173 {
174  const uint8_t *buf = avpkt->data;
175  int buf_size = avpkt->size;
176  LclDecContext * const c = avctx->priv_data;
177  ptrdiff_t pixel_ptr;
178  int row, col;
179  unsigned char *encoded = avpkt->data, *outptr;
180  uint8_t *y_out, *u_out, *v_out;
181  int width = avctx->width; // Real image width
182  int height = avctx->height; // Real image height
183  unsigned int mszh_dlen;
184  unsigned char yq, y1q, uq, vq;
185  int ret;
186  unsigned int mthread_inlen, mthread_outlen;
187  unsigned int len = buf_size;
188  int linesize, offset;
189 
190  if ((ret = ff_thread_get_buffer(avctx, frame, 0)) < 0)
191  return ret;
192 
193  outptr = frame->data[0]; // Output image pointer
194 
195  /* Decompress frame */
196  switch (avctx->codec_id) {
197  case AV_CODEC_ID_MSZH:
198  switch (c->compression) {
199  case COMP_MSZH:
200  if (c->imgtype == IMGTYPE_RGB24 && len == FFALIGN(width * 3, 4) * height ||
201  c->imgtype == IMGTYPE_YUV111 && len == width * height * 3) {
202  ;
203  } else if (c->flags & FLAG_MULTITHREAD) {
204  mthread_inlen = AV_RL32(buf);
205  if (len < 8 || len - 8 < mthread_inlen) {
206  av_log(avctx, AV_LOG_ERROR, "len %d is too small\n", len);
207  return AVERROR_INVALIDDATA;
208  }
209  mthread_outlen = AV_RL32(buf + 4);
210  mthread_outlen = FFMIN(mthread_outlen, c->decomp_size);
211  mszh_dlen = mszh_decomp(buf + 8, mthread_inlen, c->decomp_buf, c->decomp_size);
212  if (mthread_outlen != mszh_dlen) {
213  av_log(avctx, AV_LOG_ERROR, "Mthread1 decoded size differs (%d != %d)\n",
214  mthread_outlen, mszh_dlen);
215  return AVERROR_INVALIDDATA;
216  }
217  mszh_dlen = mszh_decomp(buf + 8 + mthread_inlen, len - 8 - mthread_inlen,
218  c->decomp_buf + mthread_outlen, c->decomp_size - mthread_outlen);
219  if (mthread_outlen != mszh_dlen) {
220  av_log(avctx, AV_LOG_ERROR, "Mthread2 decoded size differs (%d != %d)\n",
221  mthread_outlen, mszh_dlen);
222  return AVERROR_INVALIDDATA;
223  }
224  encoded = c->decomp_buf;
225  len = c->decomp_size;
226  } else {
227  mszh_dlen = mszh_decomp(buf, len, c->decomp_buf, c->decomp_size);
228  if (c->decomp_size != mszh_dlen) {
229  av_log(avctx, AV_LOG_ERROR, "Decoded size differs (%d != %d)\n",
230  c->decomp_size, mszh_dlen);
231  if (c->decomp_size != mszh_dlen &&
232  c->decomp_size != mszh_dlen + 2) // YUV420 306x306 is missing 2 bytes
233  return AVERROR_INVALIDDATA;
234  }
235  encoded = c->decomp_buf;
236  len = mszh_dlen;
237  }
238  break;
239  case COMP_MSZH_NOCOMP: {
240  int bppx2;
241  int aligned_width = width;
242  switch (c->imgtype) {
243  case IMGTYPE_YUV111:
244  case IMGTYPE_RGB24:
245  bppx2 = 6;
246  break;
247  case IMGTYPE_YUV422:
248  aligned_width &= ~3;
250  case IMGTYPE_YUV211:
251  bppx2 = 4;
252  break;
253  case IMGTYPE_YUV411:
254  aligned_width &= ~3;
256  case IMGTYPE_YUV420:
257  bppx2 = 3;
258  break;
259  default:
260  bppx2 = 0; // will error out below
261  break;
262  }
263  if (len < ((aligned_width * height * bppx2) >> 1))
264  return AVERROR_INVALIDDATA;
265  break;
266  }
267  default:
268  av_log(avctx, AV_LOG_ERROR, "BUG! Unknown MSZH compression in frame decoder.\n");
269  return AVERROR_INVALIDDATA;
270  }
271  break;
272 #if CONFIG_ZLIB_DECODER
273  case AV_CODEC_ID_ZLIB:
274  /* Using the original dll with normal compression (-1) and RGB format
275  * gives a file with ZLIB fourcc, but frame is really uncompressed.
276  * To be sure that's true check also frame size */
277  if (c->compression == COMP_ZLIB_NORMAL && c->imgtype == IMGTYPE_RGB24 &&
278  len == width * height * 3) {
279  if (c->flags & FLAG_PNGFILTER) {
280  memcpy(c->decomp_buf, buf, len);
281  encoded = c->decomp_buf;
282  } else {
283  break;
284  }
285  } else if (c->flags & FLAG_MULTITHREAD) {
286  mthread_inlen = AV_RL32(buf);
287  mthread_inlen = FFMIN(mthread_inlen, len - 8);
288  mthread_outlen = AV_RL32(buf + 4);
289  mthread_outlen = FFMIN(mthread_outlen, c->decomp_size);
290  ret = zlib_decomp(avctx, buf + 8, mthread_inlen, 0, mthread_outlen);
291  if (ret < 0) return ret;
292  ret = zlib_decomp(avctx, buf + 8 + mthread_inlen, len - 8 - mthread_inlen,
293  mthread_outlen, mthread_outlen);
294  if (ret < 0) return ret;
295  len = c->decomp_size;
296  } else {
297  int ret = zlib_decomp(avctx, buf, len, 0, c->decomp_size);
298  if (ret < 0) return ret;
299  len = ret;
300  }
301  encoded = c->decomp_buf;
302  break;
303 #endif
304  default:
305  av_log(avctx, AV_LOG_ERROR, "BUG! Unknown codec in frame decoder compression switch.\n");
306  return AVERROR_INVALIDDATA;
307  }
308 
309 
310  /* Apply PNG filter */
311  if (avctx->codec_id == AV_CODEC_ID_ZLIB && (c->flags & FLAG_PNGFILTER)) {
312  switch (c->imgtype) {
313  case IMGTYPE_YUV111:
314  case IMGTYPE_RGB24:
315  for (row = 0; row < height; row++) {
316  pixel_ptr = row * width * 3;
317  yq = encoded[pixel_ptr++];
318  unsigned uqvq = AV_RL16(encoded+pixel_ptr);
319  pixel_ptr += 2;
320  for (col = 1; col < width; col++) {
321  encoded[pixel_ptr] = yq -= encoded[pixel_ptr];
322  uqvq -= AV_RL16(encoded+pixel_ptr+1);
323  AV_WL16(encoded+pixel_ptr+1, uqvq);
324  pixel_ptr += 3;
325  }
326  }
327  break;
328  case IMGTYPE_YUV422:
329  pixel_ptr = 0;
330  for (row = 0; row < height; row++) {
331  yq = uq = vq =0;
332  for (col = 0; col < width/4; col++) {
333  encoded[pixel_ptr] = yq -= encoded[pixel_ptr];
334  encoded[pixel_ptr+1] = yq -= encoded[pixel_ptr+1];
335  encoded[pixel_ptr+2] = yq -= encoded[pixel_ptr+2];
336  encoded[pixel_ptr+3] = yq -= encoded[pixel_ptr+3];
337  encoded[pixel_ptr+4] = uq -= encoded[pixel_ptr+4];
338  encoded[pixel_ptr+5] = uq -= encoded[pixel_ptr+5];
339  encoded[pixel_ptr+6] = vq -= encoded[pixel_ptr+6];
340  encoded[pixel_ptr+7] = vq -= encoded[pixel_ptr+7];
341  pixel_ptr += 8;
342  }
343  }
344  break;
345  case IMGTYPE_YUV411:
346  pixel_ptr = 0;
347  for (row = 0; row < height; row++) {
348  yq = uq = vq =0;
349  for (col = 0; col < width/4; col++) {
350  encoded[pixel_ptr] = yq -= encoded[pixel_ptr];
351  encoded[pixel_ptr+1] = yq -= encoded[pixel_ptr+1];
352  encoded[pixel_ptr+2] = yq -= encoded[pixel_ptr+2];
353  encoded[pixel_ptr+3] = yq -= encoded[pixel_ptr+3];
354  encoded[pixel_ptr+4] = uq -= encoded[pixel_ptr+4];
355  encoded[pixel_ptr+5] = vq -= encoded[pixel_ptr+5];
356  pixel_ptr += 6;
357  }
358  }
359  break;
360  case IMGTYPE_YUV211:
361  for (row = 0; row < height; row++) {
362  pixel_ptr = row * width * 2;
363  yq = uq = vq =0;
364  for (col = 0; col < width/2; col++) {
365  encoded[pixel_ptr] = yq -= encoded[pixel_ptr];
366  encoded[pixel_ptr+1] = yq -= encoded[pixel_ptr+1];
367  encoded[pixel_ptr+2] = uq -= encoded[pixel_ptr+2];
368  encoded[pixel_ptr+3] = vq -= encoded[pixel_ptr+3];
369  pixel_ptr += 4;
370  }
371  }
372  break;
373  case IMGTYPE_YUV420:
374  for (row = 0; row < height/2; row++) {
375  pixel_ptr = row * width * 3;
376  yq = y1q = uq = vq =0;
377  for (col = 0; col < width/2; col++) {
378  encoded[pixel_ptr] = yq -= encoded[pixel_ptr];
379  encoded[pixel_ptr+1] = yq -= encoded[pixel_ptr+1];
380  encoded[pixel_ptr+2] = y1q -= encoded[pixel_ptr+2];
381  encoded[pixel_ptr+3] = y1q -= encoded[pixel_ptr+3];
382  encoded[pixel_ptr+4] = uq -= encoded[pixel_ptr+4];
383  encoded[pixel_ptr+5] = vq -= encoded[pixel_ptr+5];
384  pixel_ptr += 6;
385  }
386  }
387  break;
388  default:
389  av_log(avctx, AV_LOG_ERROR, "BUG! Unknown imagetype in pngfilter switch.\n");
390  return AVERROR_INVALIDDATA;
391  }
392  }
393 
394  /* Convert colorspace */
395  y_out = frame->data[0] + (height - 1) * frame->linesize[0];
396  offset = (height - 1) * frame->linesize[1];
397  u_out = FF_PTR_ADD(frame->data[1], offset);
398  offset = (height - 1) * frame->linesize[2];
399  v_out = FF_PTR_ADD(frame->data[2], offset);
400  switch (c->imgtype) {
401  case IMGTYPE_YUV111:
402  for (row = 0; row < height; row++) {
403  for (col = 0; col < width; col++) {
404  y_out[col] = *encoded++;
405  u_out[col] = *encoded++ + 128;
406  v_out[col] = *encoded++ + 128;
407  }
408  y_out -= frame->linesize[0];
409  u_out -= frame->linesize[1];
410  v_out -= frame->linesize[2];
411  }
412  break;
413  case IMGTYPE_YUV422:
414  for (row = 0; row < height; row++) {
415  for (col = 0; col < width - 3; col += 4) {
416  memcpy(y_out + col, encoded, 4);
417  encoded += 4;
418  u_out[ col >> 1 ] = *encoded++ + 128;
419  u_out[(col >> 1) + 1] = *encoded++ + 128;
420  v_out[ col >> 1 ] = *encoded++ + 128;
421  v_out[(col >> 1) + 1] = *encoded++ + 128;
422  }
423  if (col && col < width) {
424  u_out[ col >> 1 ] = u_out[(col>>1) - 1];
425  v_out[ col >> 1 ] = v_out[(col>>1) - 1];
426  }
427 
428  y_out -= frame->linesize[0];
429  u_out -= frame->linesize[1];
430  v_out -= frame->linesize[2];
431  }
432  break;
433  case IMGTYPE_RGB24:
434  linesize = len < FFALIGN(3 * width, 4) * height ? 3 * width : FFALIGN(3 * width, 4);
435  for (row = height - 1; row >= 0; row--) {
436  pixel_ptr = row * frame->linesize[0];
437  memcpy(outptr + pixel_ptr, encoded, 3 * width);
438  encoded += linesize;
439  }
440  break;
441  case IMGTYPE_YUV411:
442  for (row = 0; row < height; row++) {
443  for (col = 0; col < width - 3; col += 4) {
444  memcpy(y_out + col, encoded, 4);
445  encoded += 4;
446  u_out[col >> 2] = *encoded++ + 128;
447  v_out[col >> 2] = *encoded++ + 128;
448  }
449  if (col && col < width) {
450  u_out[col >> 2] = u_out[(col>>2) - 1];
451  v_out[col >> 2] = v_out[(col>>2) - 1];
452  }
453  y_out -= frame->linesize[0];
454  u_out -= frame->linesize[1];
455  v_out -= frame->linesize[2];
456  }
457  break;
458  case IMGTYPE_YUV211:
459  for (row = 0; row < height; row++) {
460  for (col = 0; col < width - 1; col += 2) {
461  memcpy(y_out + col, encoded, 2);
462  encoded += 2;
463  u_out[col >> 1] = *encoded++ + 128;
464  v_out[col >> 1] = *encoded++ + 128;
465  }
466  y_out -= frame->linesize[0];
467  u_out -= frame->linesize[1];
468  v_out -= frame->linesize[2];
469  }
470  break;
471  case IMGTYPE_YUV420:
472  u_out = frame->data[1] + ((height >> 1) - 1) * frame->linesize[1];
473  v_out = frame->data[2] + ((height >> 1) - 1) * frame->linesize[2];
474  for (row = 0; row < height - 1; row += 2) {
475  for (col = 0; col < width - 1; col += 2) {
476  memcpy(y_out + col, encoded, 2);
477  encoded += 2;
478  memcpy(y_out + col - frame->linesize[0], encoded, 2);
479  encoded += 2;
480  u_out[col >> 1] = *encoded++ + 128;
481  v_out[col >> 1] = *encoded++ + 128;
482  }
483  y_out -= frame->linesize[0] << 1;
484  u_out -= frame->linesize[1];
485  v_out -= frame->linesize[2];
486  }
487  break;
488  default:
489  av_log(avctx, AV_LOG_ERROR, "BUG! Unknown imagetype in image decoder.\n");
490  return AVERROR_INVALIDDATA;
491  }
492 
493  *got_frame = 1;
494 
495  /* always report that the buffer was completely consumed */
496  return buf_size;
497 }
498 
500 {
501  LclDecContext * const c = avctx->priv_data;
502  unsigned int basesize = avctx->width * avctx->height;
503  unsigned int max_basesize = FFALIGN(avctx->width, 4) *
504  FFALIGN(avctx->height, 4);
505  unsigned int max_decomp_size;
506  int subsample_h, subsample_v;
507  int partial_h_supported = 0;
508 
509  if (avctx->extradata_size < 8) {
510  av_log(avctx, AV_LOG_ERROR, "Extradata size too small.\n");
511  return AVERROR_INVALIDDATA;
512  }
513 
514  /* Check codec type */
515  if ((avctx->codec_id == AV_CODEC_ID_MSZH && avctx->extradata[7] != CODEC_MSZH) ||
516  (avctx->codec_id == AV_CODEC_ID_ZLIB && avctx->extradata[7] != CODEC_ZLIB)) {
517  av_log(avctx, AV_LOG_ERROR, "Codec id and codec type mismatch. This should not happen.\n");
518  }
519 
520  /* Detect image type */
521  switch (c->imgtype = avctx->extradata[4]) {
522  case IMGTYPE_YUV111:
523  c->decomp_size = basesize * 3;
524  max_decomp_size = max_basesize * 3;
525  avctx->pix_fmt = AV_PIX_FMT_YUV444P;
526  av_log(avctx, AV_LOG_DEBUG, "Image type is YUV 1:1:1.\n");
527  break;
528  case IMGTYPE_YUV422:
529  c->decomp_size = (avctx->width & ~3) * avctx->height * 2;
530  max_decomp_size = max_basesize * 2;
531  avctx->pix_fmt = AV_PIX_FMT_YUV422P;
532  av_log(avctx, AV_LOG_DEBUG, "Image type is YUV 4:2:2.\n");
533  partial_h_supported = 1;
534  break;
535  case IMGTYPE_RGB24:
536  c->decomp_size = FFALIGN(avctx->width*3, 4) * avctx->height;
537  max_decomp_size = max_basesize * 3;
538  avctx->pix_fmt = AV_PIX_FMT_BGR24;
539  av_log(avctx, AV_LOG_DEBUG, "Image type is RGB 24.\n");
540  break;
541  case IMGTYPE_YUV411:
542  c->decomp_size = (avctx->width & ~3) * avctx->height / 2 * 3;
543  max_decomp_size = max_basesize / 2 * 3;
544  avctx->pix_fmt = AV_PIX_FMT_YUV411P;
545  av_log(avctx, AV_LOG_DEBUG, "Image type is YUV 4:1:1.\n");
546  partial_h_supported = 1;
547  break;
548  case IMGTYPE_YUV211:
549  c->decomp_size = basesize * 2;
550  max_decomp_size = max_basesize * 2;
551  avctx->pix_fmt = AV_PIX_FMT_YUV422P;
552  av_log(avctx, AV_LOG_DEBUG, "Image type is YUV 2:1:1.\n");
553  break;
554  case IMGTYPE_YUV420:
555  c->decomp_size = basesize / 2 * 3;
556  max_decomp_size = max_basesize / 2 * 3;
557  avctx->pix_fmt = AV_PIX_FMT_YUV420P;
558  av_log(avctx, AV_LOG_DEBUG, "Image type is YUV 4:2:0.\n");
559  break;
560  default:
561  av_log(avctx, AV_LOG_ERROR, "Unsupported image format %d.\n", c->imgtype);
562  return AVERROR_INVALIDDATA;
563  }
564 
565  av_pix_fmt_get_chroma_sub_sample(avctx->pix_fmt, &subsample_h, &subsample_v);
566  if ((avctx->width % (1<<subsample_h) && !partial_h_supported) || avctx->height % (1<<subsample_v)) {
567  avpriv_request_sample(avctx, "Unsupported dimensions");
568  return AVERROR_INVALIDDATA;
569  }
570 
571  /* Detect compression method */
572  c->compression = (int8_t)avctx->extradata[5];
573  switch (avctx->codec_id) {
574  case AV_CODEC_ID_MSZH:
575  switch (c->compression) {
576  case COMP_MSZH:
577  av_log(avctx, AV_LOG_DEBUG, "Compression enabled.\n");
578  break;
579  case COMP_MSZH_NOCOMP:
580  c->decomp_size = 0;
581  av_log(avctx, AV_LOG_DEBUG, "No compression.\n");
582  break;
583  default:
584  av_log(avctx, AV_LOG_ERROR, "Unsupported compression format for MSZH (%d).\n", c->compression);
585  return AVERROR_INVALIDDATA;
586  }
587  break;
588 #if CONFIG_ZLIB_DECODER
589  case AV_CODEC_ID_ZLIB:
590  switch (c->compression) {
591  case COMP_ZLIB_HISPEED:
592  av_log(avctx, AV_LOG_DEBUG, "High speed compression.\n");
593  break;
594  case COMP_ZLIB_HICOMP:
595  av_log(avctx, AV_LOG_DEBUG, "High compression.\n");
596  break;
597  case COMP_ZLIB_NORMAL:
598  av_log(avctx, AV_LOG_DEBUG, "Normal compression.\n");
599  break;
600  default:
601  if (c->compression < Z_NO_COMPRESSION || c->compression > Z_BEST_COMPRESSION) {
602  av_log(avctx, AV_LOG_ERROR, "Unsupported compression level for ZLIB: (%d).\n", c->compression);
603  return AVERROR_INVALIDDATA;
604  }
605  av_log(avctx, AV_LOG_DEBUG, "Compression level for ZLIB: (%d).\n", c->compression);
606  }
607  break;
608 #endif
609  default:
610  av_log(avctx, AV_LOG_ERROR, "BUG! Unknown codec in compression switch.\n");
611  return AVERROR_INVALIDDATA;
612  }
613 
614  /* Allocate decompression buffer */
615  if (c->decomp_size) {
616  if (!(c->decomp_buf = av_malloc(max_decomp_size))) {
617  av_log(avctx, AV_LOG_ERROR, "Can't allocate decompression buffer.\n");
618  return AVERROR(ENOMEM);
619  }
620  }
621 
622  /* Detect flags */
623  c->flags = avctx->extradata[6];
624  if (c->flags & FLAG_MULTITHREAD)
625  av_log(avctx, AV_LOG_DEBUG, "Multithread encoder flag set.\n");
626  if (c->flags & FLAG_NULLFRAME)
627  av_log(avctx, AV_LOG_DEBUG, "Nullframe insertion flag set.\n");
628  if (avctx->codec_id == AV_CODEC_ID_ZLIB && (c->flags & FLAG_PNGFILTER))
629  av_log(avctx, AV_LOG_DEBUG, "PNG filter flag set.\n");
630  if (c->flags & FLAGMASK_UNUSED)
631  av_log(avctx, AV_LOG_ERROR, "Unknown flag set (%d).\n", c->flags);
632 
633  /* If needed init zlib */
634 #if CONFIG_ZLIB_DECODER
635  if (avctx->codec_id == AV_CODEC_ID_ZLIB)
636  return ff_inflate_init(&c->zstream, avctx);
637 #endif
638 
639  return 0;
640 }
641 
643 {
644  LclDecContext * const c = avctx->priv_data;
645 
646  av_freep(&c->decomp_buf);
647 #if CONFIG_ZLIB_DECODER
648  ff_inflate_end(&c->zstream);
649 #endif
650 
651  return 0;
652 }
653 
654 #if CONFIG_MSZH_DECODER
655 const FFCodec ff_mszh_decoder = {
656  .p.name = "mszh",
657  CODEC_LONG_NAME("LCL (LossLess Codec Library) MSZH"),
658  .p.type = AVMEDIA_TYPE_VIDEO,
659  .p.id = AV_CODEC_ID_MSZH,
660  .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS,
661  .priv_data_size = sizeof(LclDecContext),
662  .init = decode_init,
663  .close = decode_end,
665  .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
666 };
667 #endif
668 
669 #if CONFIG_ZLIB_DECODER
670 const FFCodec ff_zlib_decoder = {
671  .p.name = "zlib",
672  CODEC_LONG_NAME("LCL (LossLess Codec Library) ZLIB"),
673  .p.type = AVMEDIA_TYPE_VIDEO,
674  .p.id = AV_CODEC_ID_ZLIB,
675  .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS,
676  .priv_data_size = sizeof(LclDecContext),
677  .init = decode_init,
678  .close = decode_end,
680  .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
681 };
682 #endif
LclDecContext::decomp_size
unsigned int decomp_size
Definition: lcldec.c:67
FF_CODEC_CAP_INIT_CLEANUP
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Definition: codec_internal.h:43
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
IMGTYPE_YUV420
#define IMGTYPE_YUV420
Definition: lcl.h:33
CODEC_ZLIB
#define CODEC_ZLIB
Definition: lcl.h:47
mszh_decomp
static unsigned int mszh_decomp(const unsigned char *srcptr, int srclen, unsigned char *destptr, unsigned int destsize)
Definition: lcldec.c:80
IMGTYPE_YUV211
#define IMGTYPE_YUV211
Definition: lcl.h:32
av_cold
#define av_cold
Definition: attributes.h:119
mask
int mask
Definition: mediacodecdec_common.c:154
COMP_MSZH_NOCOMP
#define COMP_MSZH_NOCOMP
Definition: lcl.h:36
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:466
pixdesc.h
AVPacket::data
uint8_t * data
Definition: packet.h:603
ff_zlib_decoder
const FFCodec ff_zlib_decoder
FLAG_MULTITHREAD
#define FLAG_MULTITHREAD
Definition: lcl.h:41
FFCodec
Definition: codec_internal.h:127
AV_PIX_FMT_BGR24
@ AV_PIX_FMT_BGR24
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition: pixfmt.h:76
AVERROR_UNKNOWN
#define AVERROR_UNKNOWN
Unknown error, typically from an external library.
Definition: error.h:73
ff_mszh_decoder
const FFCodec ff_mszh_decoder
thread.h
lcl.h
LclDecContext::flags
int flags
Definition: lcldec.c:65
close
static av_cold void close(AVCodecParserContext *s)
Definition: apv_parser.c:197
FFCodec::p
AVCodec p
The public AVCodec.
Definition: codec_internal.h:131
inflate
static void inflate(uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord, int maxc)
Definition: vf_neighbor.c:194
AV_CODEC_ID_MSZH
@ AV_CODEC_ID_MSZH
Definition: codec_id.h:103
av_pix_fmt_get_chroma_sub_sample
int av_pix_fmt_get_chroma_sub_sample(enum AVPixelFormat pix_fmt, int *h_shift, int *v_shift)
Utility function to access log2_chroma_w log2_chroma_h from the pixel format AVPixFmtDescriptor.
Definition: pixdesc.c:3484
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:210
zlib_wrapper.h
COMP_ZLIB_NORMAL
#define COMP_ZLIB_NORMAL
Definition: lcl.h:39
av_memcpy_backptr
void av_memcpy_backptr(uint8_t *dst, int back, int cnt)
Overlapping memcpy() implementation.
Definition: mem.c:445
LclDecContext::imgtype
int imgtype
Definition: lcldec.c:61
AVCodecContext::extradata_size
int extradata_size
Definition: avcodec.h:527
FF_CODEC_DECODE_CB
#define FF_CODEC_DECODE_CB(func)
Definition: codec_internal.h:364
ff_thread_get_buffer
int ff_thread_get_buffer(AVCodecContext *avctx, AVFrame *f, int flags)
Wrapper around get_buffer() for frame-multithreaded codecs.
Definition: pthread_frame.c:1036
decode_init
static av_cold int decode_init(AVCodecContext *avctx)
Definition: lcldec.c:499
LclDecContext::decomp_buf
unsigned char * decomp_buf
Definition: lcldec.c:69
IMGTYPE_RGB24
#define IMGTYPE_RGB24
Definition: lcl.h:30
AV_LOG_DEBUG
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:231
AV_RL16
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_RL16
Definition: bytestream.h:94
IMGTYPE_YUV422
#define IMGTYPE_YUV422
Definition: lcl.h:29
AV_PIX_FMT_YUV420P
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:73
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:349
AVCodecContext::codec_id
enum AVCodecID codec_id
Definition: avcodec.h:453
AV_CODEC_CAP_FRAME_THREADS
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
Definition: codec.h:92
FLAG_NULLFRAME
#define FLAG_NULLFRAME
Definition: lcl.h:42
av_fallthrough
#define av_fallthrough
Definition: attributes.h:67
AV_CODEC_ID_ZLIB
@ AV_CODEC_ID_ZLIB
Definition: codec_id.h:104
FF_PTR_ADD
#define FF_PTR_ADD(ptr, off)
Definition: internal.h:74
attributes.h
COMP_MSZH
#define COMP_MSZH
Definition: lcl.h:35
c
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
Definition: undefined.txt:32
decode_end
static av_cold int decode_end(AVCodecContext *avctx)
Definition: lcldec.c:642
CODEC_MSZH
#define CODEC_MSZH
Definition: lcl.h:46
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:579
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:49
AVPacket::size
int size
Definition: packet.h:604
height
#define height
Definition: dsp.h:89
codec_internal.h
IMGTYPE_YUV411
#define IMGTYPE_YUV411
Definition: lcl.h:31
AV_WL16
#define AV_WL16(p, v)
Definition: intreadwrite.h:408
offset
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf offset
Definition: writing_filters.txt:86
IMGTYPE_YUV111
#define IMGTYPE_YUV111
Definition: lcl.h:28
av_malloc
#define av_malloc(s)
Definition: ops_asmgen.c:44
AVCodecContext::extradata
uint8_t * extradata
Out-of-band global headers that may be used by some codecs.
Definition: avcodec.h:526
LclDecContext::compression
int compression
Definition: lcldec.c:63
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
COMP_ZLIB_HICOMP
#define COMP_ZLIB_HICOMP
Definition: lcl.h:38
COMP_ZLIB_HISPEED
#define COMP_ZLIB_HISPEED
Definition: lcl.h:37
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:176
len
int len
Definition: vorbis_enc_data.h:426
ff_inflate_end
void ff_inflate_end(FFZStream *zstream)
Wrapper around inflateEnd().
decode_frame
static int decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt)
Definition: lcldec.c:171
LclDecContext
Definition: lcldec.c:59
AVCodecContext::height
int height
Definition: avcodec.h:604
AVCodecContext::pix_fmt
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:643
avcodec.h
ret
ret
Definition: filter_design.txt:187
frame
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
Definition: filter_design.txt:265
AV_RL32
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:92
AVCodecContext
main external API structure.
Definition: avcodec.h:443
AV_PIX_FMT_YUV444P
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:78
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:200
FFZStream
Definition: zlib_wrapper.h:27
AV_PIX_FMT_YUV422P
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:77
mem.h
avpriv_request_sample
#define avpriv_request_sample(...)
Definition: tableprint_vlc.h:37
FFALIGN
#define FFALIGN(x, a)
Definition: macros.h:78
AVPacket
This structure stores compressed data.
Definition: packet.h:580
AVCodecContext::priv_data
void * priv_data
Definition: avcodec.h:470
FLAG_PNGFILTER
#define FLAG_PNGFILTER
Definition: lcl.h:43
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:35
AV_PIX_FMT_YUV411P
@ AV_PIX_FMT_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition: pixfmt.h:80
ff_inflate_init
int ff_inflate_init(FFZStream *zstream, void *logctx)
Wrapper around inflateInit().
AVCodecContext::width
int width
picture width / height.
Definition: avcodec.h:604
bytestream.h
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
FLAGMASK_UNUSED
#define FLAGMASK_UNUSED
Definition: lcl.h:44
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
width
#define width
Definition: dsp.h:89
src
#define src
Definition: vp8dsp.c:248