You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

195 lines
4.7KB

  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. * @file
  23. * LCL (LossLess Codec Library) Video Codec
  24. * Decoder for MSZH and ZLIB codecs
  25. * Experimental encoder for ZLIB RGB24
  26. *
  27. * Fourcc: MSZH, ZLIB
  28. *
  29. * Original Win32 dll:
  30. * Ver2.23 By Kenji Oshima 2000.09.20
  31. * avimszh.dll, avizlib.dll
  32. *
  33. * A description of the decoding algorithm can be found here:
  34. * http://www.pcisys.net/~melanson/codecs
  35. *
  36. * Supports: BGR24 (RGB 24bpp)
  37. *
  38. */
  39. #include <stdio.h>
  40. #include <stdlib.h>
  41. #include "libavutil/avassert.h"
  42. #include "avcodec.h"
  43. #include "internal.h"
  44. #include "lcl.h"
  45. #include <zlib.h>
  46. /*
  47. * Decoder context
  48. */
  49. typedef struct LclEncContext {
  50. AVCodecContext *avctx;
  51. AVFrame pic;
  52. // Image type
  53. int imgtype;
  54. // Compression type
  55. int compression;
  56. // Flags
  57. int flags;
  58. z_stream zstream;
  59. } LclEncContext;
  60. /*
  61. *
  62. * Encode a frame
  63. *
  64. */
  65. static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
  66. const AVFrame *pict, int *got_packet)
  67. {
  68. LclEncContext *c = avctx->priv_data;
  69. AVFrame * const p = &c->pic;
  70. int i, ret;
  71. int zret; // Zlib return code
  72. int max_size = deflateBound(&c->zstream, avctx->width * avctx->height * 3);
  73. if ((ret = ff_alloc_packet2(avctx, pkt, max_size)) < 0)
  74. return ret;
  75. *p = *pict;
  76. p->pict_type= AV_PICTURE_TYPE_I;
  77. p->key_frame= 1;
  78. if(avctx->pix_fmt != PIX_FMT_BGR24){
  79. av_log(avctx, AV_LOG_ERROR, "Format not supported!\n");
  80. return -1;
  81. }
  82. zret = deflateReset(&c->zstream);
  83. if (zret != Z_OK) {
  84. av_log(avctx, AV_LOG_ERROR, "Deflate reset error: %d\n", zret);
  85. return -1;
  86. }
  87. c->zstream.next_out = pkt->data;
  88. c->zstream.avail_out = pkt->size;
  89. for(i = avctx->height - 1; i >= 0; i--) {
  90. c->zstream.next_in = p->data[0]+p->linesize[0]*i;
  91. c->zstream.avail_in = avctx->width*3;
  92. zret = deflate(&c->zstream, Z_NO_FLUSH);
  93. if (zret != Z_OK) {
  94. av_log(avctx, AV_LOG_ERROR, "Deflate error: %d\n", zret);
  95. return -1;
  96. }
  97. }
  98. zret = deflate(&c->zstream, Z_FINISH);
  99. if (zret != Z_STREAM_END) {
  100. av_log(avctx, AV_LOG_ERROR, "Deflate error: %d\n", zret);
  101. return -1;
  102. }
  103. pkt->size = c->zstream.total_out;
  104. pkt->flags |= AV_PKT_FLAG_KEY;
  105. *got_packet = 1;
  106. return 0;
  107. }
  108. /*
  109. *
  110. * Init lcl encoder
  111. *
  112. */
  113. static av_cold int encode_init(AVCodecContext *avctx)
  114. {
  115. LclEncContext *c = avctx->priv_data;
  116. int zret; // Zlib return code
  117. c->avctx= avctx;
  118. av_assert0(avctx->width && avctx->height);
  119. avctx->extradata= av_mallocz(8);
  120. avctx->coded_frame= &c->pic;
  121. // Will be user settable someday
  122. c->compression = 6;
  123. c->flags = 0;
  124. c->imgtype = IMGTYPE_RGB24;
  125. avctx->bits_per_coded_sample= 24;
  126. avctx->extradata[0]= 4;
  127. avctx->extradata[1]= 0;
  128. avctx->extradata[2]= 0;
  129. avctx->extradata[3]= 0;
  130. avctx->extradata[4]= c->imgtype;
  131. avctx->extradata[5]= c->compression;
  132. avctx->extradata[6]= c->flags;
  133. avctx->extradata[7]= CODEC_ZLIB;
  134. c->avctx->extradata_size= 8;
  135. c->zstream.zalloc = Z_NULL;
  136. c->zstream.zfree = Z_NULL;
  137. c->zstream.opaque = Z_NULL;
  138. zret = deflateInit(&c->zstream, c->compression);
  139. if (zret != Z_OK) {
  140. av_log(avctx, AV_LOG_ERROR, "Deflate init error: %d\n", zret);
  141. return 1;
  142. }
  143. return 0;
  144. }
  145. /*
  146. *
  147. * Uninit lcl encoder
  148. *
  149. */
  150. static av_cold int encode_end(AVCodecContext *avctx)
  151. {
  152. LclEncContext *c = avctx->priv_data;
  153. av_freep(&avctx->extradata);
  154. deflateEnd(&c->zstream);
  155. return 0;
  156. }
  157. AVCodec ff_zlib_encoder = {
  158. .name = "zlib",
  159. .type = AVMEDIA_TYPE_VIDEO,
  160. .id = CODEC_ID_ZLIB,
  161. .priv_data_size = sizeof(LclEncContext),
  162. .init = encode_init,
  163. .encode2 = encode_frame,
  164. .close = encode_end,
  165. .pix_fmts = (const enum PixelFormat[]) { PIX_FMT_BGR24, PIX_FMT_NONE },
  166. .long_name = NULL_IF_CONFIG_SMALL("LCL (LossLess Codec Library) ZLIB"),
  167. };