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.

927 lines
31KB

  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 lcl.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. #include <stdio.h>
  41. #include <stdlib.h>
  42. #include "avcodec.h"
  43. #include "bitstream.h"
  44. #ifdef CONFIG_ZLIB
  45. #include <zlib.h>
  46. #endif
  47. #define BMPTYPE_YUV 1
  48. #define BMPTYPE_RGB 2
  49. #define IMGTYPE_YUV111 0
  50. #define IMGTYPE_YUV422 1
  51. #define IMGTYPE_RGB24 2
  52. #define IMGTYPE_YUV411 3
  53. #define IMGTYPE_YUV211 4
  54. #define IMGTYPE_YUV420 5
  55. #define COMP_MSZH 0
  56. #define COMP_MSZH_NOCOMP 1
  57. #define COMP_ZLIB_HISPEED 1
  58. #define COMP_ZLIB_HICOMP 9
  59. #define COMP_ZLIB_NORMAL -1
  60. #define FLAG_MULTITHREAD 1
  61. #define FLAG_NULLFRAME 2
  62. #define FLAG_PNGFILTER 4
  63. #define FLAGMASK_UNUSED 0xf8
  64. #define CODEC_MSZH 1
  65. #define CODEC_ZLIB 3
  66. #define FOURCC_MSZH mmioFOURCC('M','S','Z','H')
  67. #define FOURCC_ZLIB mmioFOURCC('Z','L','I','B')
  68. /*
  69. * Decoder context
  70. */
  71. typedef struct LclContext {
  72. AVCodecContext *avctx;
  73. AVFrame pic;
  74. PutBitContext pb;
  75. // Image type
  76. int imgtype;
  77. // Compression type
  78. int compression;
  79. // Flags
  80. int flags;
  81. // Decompressed data size
  82. unsigned int decomp_size;
  83. // Decompression buffer
  84. unsigned char* decomp_buf;
  85. // Maximum compressed data size
  86. unsigned int max_comp_size;
  87. // Compression buffer
  88. unsigned char* comp_buf;
  89. #ifdef CONFIG_ZLIB
  90. z_stream zstream;
  91. #endif
  92. } LclContext;
  93. /*
  94. *
  95. * Helper functions
  96. *
  97. */
  98. static inline unsigned char fix (int pix14)
  99. {
  100. int tmp;
  101. tmp = (pix14 + 0x80000) >> 20;
  102. if (tmp < 0)
  103. return 0;
  104. if (tmp > 255)
  105. return 255;
  106. return tmp;
  107. }
  108. static inline unsigned char get_b (unsigned char yq, signed char bq)
  109. {
  110. return fix((yq << 20) + bq * 1858076);
  111. }
  112. static inline unsigned char get_g (unsigned char yq, signed char bq, signed char rq)
  113. {
  114. return fix((yq << 20) - bq * 360857 - rq * 748830);
  115. }
  116. static inline unsigned char get_r (unsigned char yq, signed char rq)
  117. {
  118. return fix((yq << 20) + rq * 1470103);
  119. }
  120. static unsigned int mszh_decomp(unsigned char * srcptr, int srclen, unsigned char * destptr, unsigned int destsize)
  121. {
  122. unsigned char *destptr_bak = destptr;
  123. unsigned char *destptr_end = destptr + destsize;
  124. unsigned char mask = 0;
  125. unsigned char maskbit = 0;
  126. unsigned int ofs, cnt;
  127. while ((srclen > 0) && (destptr < destptr_end)) {
  128. if (maskbit == 0) {
  129. mask = *(srcptr++);
  130. maskbit = 8;
  131. srclen--;
  132. continue;
  133. }
  134. if ((mask & (1 << (--maskbit))) == 0) {
  135. if (destptr + 4 > destptr_end)
  136. break;
  137. *(int*)destptr = *(int*)srcptr;
  138. srclen -= 4;
  139. destptr += 4;
  140. srcptr += 4;
  141. } else {
  142. ofs = *(srcptr++);
  143. cnt = *(srcptr++);
  144. ofs += cnt * 256;;
  145. cnt = ((cnt >> 3) & 0x1f) + 1;
  146. ofs &= 0x7ff;
  147. srclen -= 2;
  148. cnt *= 4;
  149. if (destptr + cnt > destptr_end) {
  150. cnt = destptr_end - destptr;
  151. }
  152. for (; cnt > 0; cnt--) {
  153. *(destptr) = *(destptr - ofs);
  154. destptr++;
  155. }
  156. }
  157. }
  158. return (destptr - destptr_bak);
  159. }
  160. #ifdef CONFIG_DECODERS
  161. /*
  162. *
  163. * Decode a frame
  164. *
  165. */
  166. static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, uint8_t *buf, int buf_size)
  167. {
  168. LclContext * const c = avctx->priv_data;
  169. unsigned char *encoded = (unsigned char *)buf;
  170. unsigned int pixel_ptr;
  171. int row, col;
  172. unsigned char *outptr;
  173. unsigned int width = avctx->width; // Real image width
  174. unsigned int height = avctx->height; // Real image height
  175. unsigned int mszh_dlen;
  176. unsigned char yq, y1q, uq, vq;
  177. int uqvq;
  178. unsigned int mthread_inlen, mthread_outlen;
  179. #ifdef CONFIG_ZLIB
  180. int zret; // Zlib return code
  181. #endif
  182. unsigned int len = buf_size;
  183. if(c->pic.data[0])
  184. avctx->release_buffer(avctx, &c->pic);
  185. c->pic.reference = 0;
  186. c->pic.buffer_hints = FF_BUFFER_HINTS_VALID;
  187. if(avctx->get_buffer(avctx, &c->pic) < 0){
  188. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  189. return -1;
  190. }
  191. outptr = c->pic.data[0]; // Output image pointer
  192. /* Decompress frame */
  193. switch (avctx->codec_id) {
  194. case CODEC_ID_MSZH:
  195. switch (c->compression) {
  196. case COMP_MSZH:
  197. if (c->flags & FLAG_MULTITHREAD) {
  198. mthread_inlen = *((unsigned int*)encoded);
  199. mthread_outlen = *((unsigned int*)(encoded+4));
  200. if (mthread_outlen > c->decomp_size) // this should not happen
  201. mthread_outlen = c->decomp_size;
  202. mszh_dlen = mszh_decomp(encoded + 8, mthread_inlen, c->decomp_buf, c->decomp_size);
  203. if (mthread_outlen != mszh_dlen) {
  204. av_log(avctx, AV_LOG_ERROR, "Mthread1 decoded size differs (%d != %d)\n",
  205. mthread_outlen, mszh_dlen);
  206. return -1;
  207. }
  208. mszh_dlen = mszh_decomp(encoded + 8 + mthread_inlen, len - mthread_inlen,
  209. c->decomp_buf + mthread_outlen, c->decomp_size - mthread_outlen);
  210. if (mthread_outlen != mszh_dlen) {
  211. av_log(avctx, AV_LOG_ERROR, "Mthread2 decoded size differs (%d != %d)\n",
  212. mthread_outlen, mszh_dlen);
  213. return -1;
  214. }
  215. encoded = c->decomp_buf;
  216. len = c->decomp_size;
  217. } else {
  218. mszh_dlen = mszh_decomp(encoded, len, c->decomp_buf, c->decomp_size);
  219. if (c->decomp_size != mszh_dlen) {
  220. av_log(avctx, AV_LOG_ERROR, "Decoded size differs (%d != %d)\n",
  221. c->decomp_size, mszh_dlen);
  222. return -1;
  223. }
  224. encoded = c->decomp_buf;
  225. len = mszh_dlen;
  226. }
  227. break;
  228. case COMP_MSZH_NOCOMP:
  229. break;
  230. default:
  231. av_log(avctx, AV_LOG_ERROR, "BUG! Unknown MSZH compression in frame decoder.\n");
  232. return -1;
  233. }
  234. break;
  235. case CODEC_ID_ZLIB:
  236. #ifdef CONFIG_ZLIB
  237. /* Using the original dll with normal compression (-1) and RGB format
  238. * gives a file with ZLIB fourcc, but frame is really uncompressed.
  239. * To be sure that's true check also frame size */
  240. if ((c->compression == COMP_ZLIB_NORMAL) && (c->imgtype == IMGTYPE_RGB24) &&
  241. (len == width * height * 3))
  242. break;
  243. zret = inflateReset(&(c->zstream));
  244. if (zret != Z_OK) {
  245. av_log(avctx, AV_LOG_ERROR, "Inflate reset error: %d\n", zret);
  246. return -1;
  247. }
  248. if (c->flags & FLAG_MULTITHREAD) {
  249. mthread_inlen = *((unsigned int*)encoded);
  250. mthread_outlen = *((unsigned int*)(encoded+4));
  251. if (mthread_outlen > c->decomp_size)
  252. mthread_outlen = c->decomp_size;
  253. c->zstream.next_in = encoded + 8;
  254. c->zstream.avail_in = mthread_inlen;
  255. c->zstream.next_out = c->decomp_buf;
  256. c->zstream.avail_out = c->decomp_size;
  257. zret = inflate(&(c->zstream), Z_FINISH);
  258. if ((zret != Z_OK) && (zret != Z_STREAM_END)) {
  259. av_log(avctx, AV_LOG_ERROR, "Mthread1 inflate error: %d\n", zret);
  260. return -1;
  261. }
  262. if (mthread_outlen != (unsigned int)(c->zstream.total_out)) {
  263. av_log(avctx, AV_LOG_ERROR, "Mthread1 decoded size differs (%u != %lu)\n",
  264. mthread_outlen, c->zstream.total_out);
  265. return -1;
  266. }
  267. zret = inflateReset(&(c->zstream));
  268. if (zret != Z_OK) {
  269. av_log(avctx, AV_LOG_ERROR, "Mthread2 inflate reset error: %d\n", zret);
  270. return -1;
  271. }
  272. c->zstream.next_in = encoded + 8 + mthread_inlen;
  273. c->zstream.avail_in = len - mthread_inlen;
  274. c->zstream.next_out = c->decomp_buf + mthread_outlen;
  275. c->zstream.avail_out = c->decomp_size - mthread_outlen;
  276. zret = inflate(&(c->zstream), Z_FINISH);
  277. if ((zret != Z_OK) && (zret != Z_STREAM_END)) {
  278. av_log(avctx, AV_LOG_ERROR, "Mthread2 inflate error: %d\n", zret);
  279. return -1;
  280. }
  281. if (mthread_outlen != (unsigned int)(c->zstream.total_out)) {
  282. av_log(avctx, AV_LOG_ERROR, "Mthread2 decoded size differs (%d != %lu)\n",
  283. mthread_outlen, c->zstream.total_out);
  284. return -1;
  285. }
  286. } else {
  287. c->zstream.next_in = encoded;
  288. c->zstream.avail_in = len;
  289. c->zstream.next_out = c->decomp_buf;
  290. c->zstream.avail_out = c->decomp_size;
  291. zret = inflate(&(c->zstream), Z_FINISH);
  292. if ((zret != Z_OK) && (zret != Z_STREAM_END)) {
  293. av_log(avctx, AV_LOG_ERROR, "Inflate error: %d\n", zret);
  294. return -1;
  295. }
  296. if (c->decomp_size != (unsigned int)(c->zstream.total_out)) {
  297. av_log(avctx, AV_LOG_ERROR, "Decoded size differs (%d != %lu)\n",
  298. c->decomp_size, c->zstream.total_out);
  299. return -1;
  300. }
  301. }
  302. encoded = c->decomp_buf;
  303. len = c->decomp_size;;
  304. #else
  305. av_log(avctx, AV_LOG_ERROR, "BUG! Zlib support not compiled in frame decoder.\n");
  306. return -1;
  307. #endif
  308. break;
  309. default:
  310. av_log(avctx, AV_LOG_ERROR, "BUG! Unknown codec in frame decoder compression switch.\n");
  311. return -1;
  312. }
  313. /* Apply PNG filter */
  314. if ((avctx->codec_id == CODEC_ID_ZLIB) && (c->flags & FLAG_PNGFILTER)) {
  315. switch (c->imgtype) {
  316. case IMGTYPE_YUV111:
  317. case IMGTYPE_RGB24:
  318. for (row = 0; row < height; row++) {
  319. pixel_ptr = row * width * 3;
  320. yq = encoded[pixel_ptr++];
  321. uqvq = encoded[pixel_ptr++];
  322. uqvq+=(encoded[pixel_ptr++] << 8);
  323. for (col = 1; col < width; col++) {
  324. encoded[pixel_ptr] = yq -= encoded[pixel_ptr];
  325. uqvq -= (encoded[pixel_ptr+1] | (encoded[pixel_ptr+2]<<8));
  326. encoded[pixel_ptr+1] = (uqvq) & 0xff;
  327. encoded[pixel_ptr+2] = ((uqvq)>>8) & 0xff;
  328. pixel_ptr += 3;
  329. }
  330. }
  331. break;
  332. case IMGTYPE_YUV422:
  333. for (row = 0; row < height; row++) {
  334. pixel_ptr = row * width * 2;
  335. yq = uq = vq =0;
  336. for (col = 0; col < width/4; col++) {
  337. encoded[pixel_ptr] = yq -= encoded[pixel_ptr];
  338. encoded[pixel_ptr+1] = yq -= encoded[pixel_ptr+1];
  339. encoded[pixel_ptr+2] = yq -= encoded[pixel_ptr+2];
  340. encoded[pixel_ptr+3] = yq -= encoded[pixel_ptr+3];
  341. encoded[pixel_ptr+4] = uq -= encoded[pixel_ptr+4];
  342. encoded[pixel_ptr+5] = uq -= encoded[pixel_ptr+5];
  343. encoded[pixel_ptr+6] = vq -= encoded[pixel_ptr+6];
  344. encoded[pixel_ptr+7] = vq -= encoded[pixel_ptr+7];
  345. pixel_ptr += 8;
  346. }
  347. }
  348. break;
  349. case IMGTYPE_YUV411:
  350. for (row = 0; row < height; row++) {
  351. pixel_ptr = row * width / 2 * 3;
  352. yq = uq = vq =0;
  353. for (col = 0; col < width/4; col++) {
  354. encoded[pixel_ptr] = yq -= encoded[pixel_ptr];
  355. encoded[pixel_ptr+1] = yq -= encoded[pixel_ptr+1];
  356. encoded[pixel_ptr+2] = yq -= encoded[pixel_ptr+2];
  357. encoded[pixel_ptr+3] = yq -= encoded[pixel_ptr+3];
  358. encoded[pixel_ptr+4] = uq -= encoded[pixel_ptr+4];
  359. encoded[pixel_ptr+5] = vq -= encoded[pixel_ptr+5];
  360. pixel_ptr += 6;
  361. }
  362. }
  363. break;
  364. case IMGTYPE_YUV211:
  365. for (row = 0; row < height; row++) {
  366. pixel_ptr = row * width * 2;
  367. yq = uq = vq =0;
  368. for (col = 0; col < width/2; col++) {
  369. encoded[pixel_ptr] = yq -= encoded[pixel_ptr];
  370. encoded[pixel_ptr+1] = yq -= encoded[pixel_ptr+1];
  371. encoded[pixel_ptr+2] = uq -= encoded[pixel_ptr+2];
  372. encoded[pixel_ptr+3] = vq -= encoded[pixel_ptr+3];
  373. pixel_ptr += 4;
  374. }
  375. }
  376. break;
  377. case IMGTYPE_YUV420:
  378. for (row = 0; row < height/2; row++) {
  379. pixel_ptr = row * width * 3;
  380. yq = y1q = uq = vq =0;
  381. for (col = 0; col < width/2; col++) {
  382. encoded[pixel_ptr] = yq -= encoded[pixel_ptr];
  383. encoded[pixel_ptr+1] = yq -= encoded[pixel_ptr+1];
  384. encoded[pixel_ptr+2] = y1q -= encoded[pixel_ptr+2];
  385. encoded[pixel_ptr+3] = y1q -= encoded[pixel_ptr+3];
  386. encoded[pixel_ptr+4] = uq -= encoded[pixel_ptr+4];
  387. encoded[pixel_ptr+5] = vq -= encoded[pixel_ptr+5];
  388. pixel_ptr += 6;
  389. }
  390. }
  391. break;
  392. default:
  393. av_log(avctx, AV_LOG_ERROR, "BUG! Unknown imagetype in pngfilter switch.\n");
  394. return -1;
  395. }
  396. }
  397. /* Convert colorspace */
  398. switch (c->imgtype) {
  399. case IMGTYPE_YUV111:
  400. for (row = height - 1; row >= 0; row--) {
  401. pixel_ptr = row * c->pic.linesize[0];
  402. for (col = 0; col < width; col++) {
  403. outptr[pixel_ptr++] = get_b(encoded[0], encoded[1]);
  404. outptr[pixel_ptr++] = get_g(encoded[0], encoded[1], encoded[2]);
  405. outptr[pixel_ptr++] = get_r(encoded[0], encoded[2]);
  406. encoded += 3;
  407. }
  408. }
  409. break;
  410. case IMGTYPE_YUV422:
  411. for (row = height - 1; row >= 0; row--) {
  412. pixel_ptr = row * c->pic.linesize[0];
  413. for (col = 0; col < width/4; col++) {
  414. outptr[pixel_ptr++] = get_b(encoded[0], encoded[4]);
  415. outptr[pixel_ptr++] = get_g(encoded[0], encoded[4], encoded[6]);
  416. outptr[pixel_ptr++] = get_r(encoded[0], encoded[6]);
  417. outptr[pixel_ptr++] = get_b(encoded[1], encoded[4]);
  418. outptr[pixel_ptr++] = get_g(encoded[1], encoded[4], encoded[6]);
  419. outptr[pixel_ptr++] = get_r(encoded[1], encoded[6]);
  420. outptr[pixel_ptr++] = get_b(encoded[2], encoded[5]);
  421. outptr[pixel_ptr++] = get_g(encoded[2], encoded[5], encoded[7]);
  422. outptr[pixel_ptr++] = get_r(encoded[2], encoded[7]);
  423. outptr[pixel_ptr++] = get_b(encoded[3], encoded[5]);
  424. outptr[pixel_ptr++] = get_g(encoded[3], encoded[5], encoded[7]);
  425. outptr[pixel_ptr++] = get_r(encoded[3], encoded[7]);
  426. encoded += 8;
  427. }
  428. }
  429. break;
  430. case IMGTYPE_RGB24:
  431. for (row = height - 1; row >= 0; row--) {
  432. pixel_ptr = row * c->pic.linesize[0];
  433. for (col = 0; col < width; col++) {
  434. outptr[pixel_ptr++] = encoded[0];
  435. outptr[pixel_ptr++] = encoded[1];
  436. outptr[pixel_ptr++] = encoded[2];
  437. encoded += 3;
  438. }
  439. }
  440. break;
  441. case IMGTYPE_YUV411:
  442. for (row = height - 1; row >= 0; row--) {
  443. pixel_ptr = row * c->pic.linesize[0];
  444. for (col = 0; col < width/4; col++) {
  445. outptr[pixel_ptr++] = get_b(encoded[0], encoded[4]);
  446. outptr[pixel_ptr++] = get_g(encoded[0], encoded[4], encoded[5]);
  447. outptr[pixel_ptr++] = get_r(encoded[0], encoded[5]);
  448. outptr[pixel_ptr++] = get_b(encoded[1], encoded[4]);
  449. outptr[pixel_ptr++] = get_g(encoded[1], encoded[4], encoded[5]);
  450. outptr[pixel_ptr++] = get_r(encoded[1], encoded[5]);
  451. outptr[pixel_ptr++] = get_b(encoded[2], encoded[4]);
  452. outptr[pixel_ptr++] = get_g(encoded[2], encoded[4], encoded[5]);
  453. outptr[pixel_ptr++] = get_r(encoded[2], encoded[5]);
  454. outptr[pixel_ptr++] = get_b(encoded[3], encoded[4]);
  455. outptr[pixel_ptr++] = get_g(encoded[3], encoded[4], encoded[5]);
  456. outptr[pixel_ptr++] = get_r(encoded[3], encoded[5]);
  457. encoded += 6;
  458. }
  459. }
  460. break;
  461. case IMGTYPE_YUV211:
  462. for (row = height - 1; row >= 0; row--) {
  463. pixel_ptr = row * c->pic.linesize[0];
  464. for (col = 0; col < width/2; col++) {
  465. outptr[pixel_ptr++] = get_b(encoded[0], encoded[2]);
  466. outptr[pixel_ptr++] = get_g(encoded[0], encoded[2], encoded[3]);
  467. outptr[pixel_ptr++] = get_r(encoded[0], encoded[3]);
  468. outptr[pixel_ptr++] = get_b(encoded[1], encoded[2]);
  469. outptr[pixel_ptr++] = get_g(encoded[1], encoded[2], encoded[3]);
  470. outptr[pixel_ptr++] = get_r(encoded[1], encoded[3]);
  471. encoded += 4;
  472. }
  473. }
  474. break;
  475. case IMGTYPE_YUV420:
  476. for (row = height / 2 - 1; row >= 0; row--) {
  477. pixel_ptr = 2 * row * c->pic.linesize[0];
  478. for (col = 0; col < width/2; col++) {
  479. outptr[pixel_ptr] = get_b(encoded[0], encoded[4]);
  480. outptr[pixel_ptr+1] = get_g(encoded[0], encoded[4], encoded[5]);
  481. outptr[pixel_ptr+2] = get_r(encoded[0], encoded[5]);
  482. outptr[pixel_ptr+3] = get_b(encoded[1], encoded[4]);
  483. outptr[pixel_ptr+4] = get_g(encoded[1], encoded[4], encoded[5]);
  484. outptr[pixel_ptr+5] = get_r(encoded[1], encoded[5]);
  485. outptr[pixel_ptr-c->pic.linesize[0]] = get_b(encoded[2], encoded[4]);
  486. outptr[pixel_ptr-c->pic.linesize[0]+1] = get_g(encoded[2], encoded[4], encoded[5]);
  487. outptr[pixel_ptr-c->pic.linesize[0]+2] = get_r(encoded[2], encoded[5]);
  488. outptr[pixel_ptr-c->pic.linesize[0]+3] = get_b(encoded[3], encoded[4]);
  489. outptr[pixel_ptr-c->pic.linesize[0]+4] = get_g(encoded[3], encoded[4], encoded[5]);
  490. outptr[pixel_ptr-c->pic.linesize[0]+5] = get_r(encoded[3], encoded[5]);
  491. pixel_ptr += 6;
  492. encoded += 6;
  493. }
  494. }
  495. break;
  496. default:
  497. av_log(avctx, AV_LOG_ERROR, "BUG! Unknown imagetype in image decoder.\n");
  498. return -1;
  499. }
  500. *data_size = sizeof(AVFrame);
  501. *(AVFrame*)data = c->pic;
  502. /* always report that the buffer was completely consumed */
  503. return buf_size;
  504. }
  505. #endif
  506. #ifdef CONFIG_ENCODERS
  507. /*
  508. *
  509. * Encode a frame
  510. *
  511. */
  512. static int encode_frame(AVCodecContext *avctx, unsigned char *buf, int buf_size, void *data){
  513. LclContext *c = avctx->priv_data;
  514. AVFrame *pict = data;
  515. AVFrame * const p = &c->pic;
  516. int i;
  517. int zret; // Zlib return code
  518. #ifndef CONFIG_ZLIB
  519. av_log(avctx, AV_LOG_ERROR, "Zlib support not compiled in.\n");
  520. return -1;
  521. #else
  522. init_put_bits(&c->pb, buf, buf_size);
  523. *p = *pict;
  524. p->pict_type= FF_I_TYPE;
  525. p->key_frame= 1;
  526. if(avctx->pix_fmt != PIX_FMT_BGR24){
  527. av_log(avctx, AV_LOG_ERROR, "Format not supported!\n");
  528. return -1;
  529. }
  530. zret = deflateReset(&(c->zstream));
  531. if (zret != Z_OK) {
  532. av_log(avctx, AV_LOG_ERROR, "Deflate reset error: %d\n", zret);
  533. return -1;
  534. }
  535. c->zstream.next_out = c->comp_buf;
  536. c->zstream.avail_out = c->max_comp_size;
  537. for(i = avctx->height - 1; i >= 0; i--) {
  538. c->zstream.next_in = p->data[0]+p->linesize[0]*i;
  539. c->zstream.avail_in = avctx->width*3;
  540. zret = deflate(&(c->zstream), Z_NO_FLUSH);
  541. if (zret != Z_OK) {
  542. av_log(avctx, AV_LOG_ERROR, "Deflate error: %d\n", zret);
  543. return -1;
  544. }
  545. }
  546. zret = deflate(&(c->zstream), Z_FINISH);
  547. if (zret != Z_STREAM_END) {
  548. av_log(avctx, AV_LOG_ERROR, "Deflate error: %d\n", zret);
  549. return -1;
  550. }
  551. for (i = 0; i < c->zstream.total_out; i++)
  552. put_bits(&c->pb, 8, c->comp_buf[i]);
  553. flush_put_bits(&c->pb);
  554. return c->zstream.total_out;
  555. #endif
  556. }
  557. #endif /* CONFIG_ENCODERS */
  558. #ifdef CONFIG_DECODERS
  559. /*
  560. *
  561. * Init lcl decoder
  562. *
  563. */
  564. static int decode_init(AVCodecContext *avctx)
  565. {
  566. LclContext * const c = avctx->priv_data;
  567. unsigned int basesize = avctx->width * avctx->height;
  568. unsigned int max_basesize = ((avctx->width + 3) & ~3) * ((avctx->height + 3) & ~3);
  569. unsigned int max_decomp_size;
  570. int zret; // Zlib return code
  571. c->avctx = avctx;
  572. c->pic.data[0] = NULL;
  573. #ifdef CONFIG_ZLIB
  574. // Needed if zlib unused or init aborted before inflateInit
  575. memset(&(c->zstream), 0, sizeof(z_stream));
  576. #endif
  577. if (avctx->extradata_size < 8) {
  578. av_log(avctx, AV_LOG_ERROR, "Extradata size too small.\n");
  579. return 1;
  580. }
  581. if (avcodec_check_dimensions(avctx, avctx->width, avctx->height) < 0) {
  582. return 1;
  583. }
  584. /* Check codec type */
  585. if (((avctx->codec_id == CODEC_ID_MSZH) && (*((char *)avctx->extradata + 7) != CODEC_MSZH)) ||
  586. ((avctx->codec_id == CODEC_ID_ZLIB) && (*((char *)avctx->extradata + 7) != CODEC_ZLIB))) {
  587. av_log(avctx, AV_LOG_ERROR, "Codec id and codec type mismatch. This should not happen.\n");
  588. }
  589. /* Detect image type */
  590. switch (c->imgtype = *((char *)avctx->extradata + 4)) {
  591. case IMGTYPE_YUV111:
  592. c->decomp_size = basesize * 3;
  593. max_decomp_size = max_basesize * 3;
  594. av_log(avctx, AV_LOG_INFO, "Image type is YUV 1:1:1.\n");
  595. break;
  596. case IMGTYPE_YUV422:
  597. c->decomp_size = basesize * 2;
  598. max_decomp_size = max_basesize * 2;
  599. av_log(avctx, AV_LOG_INFO, "Image type is YUV 4:2:2.\n");
  600. break;
  601. case IMGTYPE_RGB24:
  602. c->decomp_size = basesize * 3;
  603. max_decomp_size = max_basesize * 3;
  604. av_log(avctx, AV_LOG_INFO, "Image type is RGB 24.\n");
  605. break;
  606. case IMGTYPE_YUV411:
  607. c->decomp_size = basesize / 2 * 3;
  608. max_decomp_size = max_basesize / 2 * 3;
  609. av_log(avctx, AV_LOG_INFO, "Image type is YUV 4:1:1.\n");
  610. break;
  611. case IMGTYPE_YUV211:
  612. c->decomp_size = basesize * 2;
  613. max_decomp_size = max_basesize * 2;
  614. av_log(avctx, AV_LOG_INFO, "Image type is YUV 2:1:1.\n");
  615. break;
  616. case IMGTYPE_YUV420:
  617. c->decomp_size = basesize / 2 * 3;
  618. max_decomp_size = max_basesize / 2 * 3;
  619. av_log(avctx, AV_LOG_INFO, "Image type is YUV 4:2:0.\n");
  620. break;
  621. default:
  622. av_log(avctx, AV_LOG_ERROR, "Unsupported image format %d.\n", c->imgtype);
  623. return 1;
  624. }
  625. /* Detect compression method */
  626. c->compression = *((char *)avctx->extradata + 5);
  627. switch (avctx->codec_id) {
  628. case CODEC_ID_MSZH:
  629. switch (c->compression) {
  630. case COMP_MSZH:
  631. av_log(avctx, AV_LOG_INFO, "Compression enabled.\n");
  632. break;
  633. case COMP_MSZH_NOCOMP:
  634. c->decomp_size = 0;
  635. av_log(avctx, AV_LOG_INFO, "No compression.\n");
  636. break;
  637. default:
  638. av_log(avctx, AV_LOG_ERROR, "Unsupported compression format for MSZH (%d).\n", c->compression);
  639. return 1;
  640. }
  641. break;
  642. case CODEC_ID_ZLIB:
  643. #ifdef CONFIG_ZLIB
  644. switch (c->compression) {
  645. case COMP_ZLIB_HISPEED:
  646. av_log(avctx, AV_LOG_INFO, "High speed compression.\n");
  647. break;
  648. case COMP_ZLIB_HICOMP:
  649. av_log(avctx, AV_LOG_INFO, "High compression.\n");
  650. break;
  651. case COMP_ZLIB_NORMAL:
  652. av_log(avctx, AV_LOG_INFO, "Normal compression.\n");
  653. break;
  654. default:
  655. if ((c->compression < Z_NO_COMPRESSION) || (c->compression > Z_BEST_COMPRESSION)) {
  656. av_log(avctx, AV_LOG_ERROR, "Unsupported compression level for ZLIB: (%d).\n", c->compression);
  657. return 1;
  658. }
  659. av_log(avctx, AV_LOG_INFO, "Compression level for ZLIB: (%d).\n", c->compression);
  660. }
  661. #else
  662. av_log(avctx, AV_LOG_ERROR, "Zlib support not compiled.\n");
  663. return 1;
  664. #endif
  665. break;
  666. default:
  667. av_log(avctx, AV_LOG_ERROR, "BUG! Unknown codec in compression switch.\n");
  668. return 1;
  669. }
  670. /* Allocate decompression buffer */
  671. if (c->decomp_size) {
  672. if ((c->decomp_buf = av_malloc(max_decomp_size)) == NULL) {
  673. av_log(avctx, AV_LOG_ERROR, "Can't allocate decompression buffer.\n");
  674. return 1;
  675. }
  676. }
  677. /* Detect flags */
  678. c->flags = *((char *)avctx->extradata + 6);
  679. if (c->flags & FLAG_MULTITHREAD)
  680. av_log(avctx, AV_LOG_INFO, "Multithread encoder flag set.\n");
  681. if (c->flags & FLAG_NULLFRAME)
  682. av_log(avctx, AV_LOG_INFO, "Nullframe insertion flag set.\n");
  683. if ((avctx->codec_id == CODEC_ID_ZLIB) && (c->flags & FLAG_PNGFILTER))
  684. av_log(avctx, AV_LOG_INFO, "PNG filter flag set.\n");
  685. if (c->flags & FLAGMASK_UNUSED)
  686. av_log(avctx, AV_LOG_ERROR, "Unknown flag set (%d).\n", c->flags);
  687. /* If needed init zlib */
  688. if (avctx->codec_id == CODEC_ID_ZLIB) {
  689. #ifdef CONFIG_ZLIB
  690. c->zstream.zalloc = Z_NULL;
  691. c->zstream.zfree = Z_NULL;
  692. c->zstream.opaque = Z_NULL;
  693. zret = inflateInit(&(c->zstream));
  694. if (zret != Z_OK) {
  695. av_log(avctx, AV_LOG_ERROR, "Inflate init error: %d\n", zret);
  696. return 1;
  697. }
  698. #else
  699. av_log(avctx, AV_LOG_ERROR, "Zlib support not compiled.\n");
  700. return 1;
  701. #endif
  702. }
  703. avctx->pix_fmt = PIX_FMT_BGR24;
  704. return 0;
  705. }
  706. #endif /* CONFIG_DECODERS */
  707. #ifdef CONFIG_ENCODERS
  708. /*
  709. *
  710. * Init lcl encoder
  711. *
  712. */
  713. static int encode_init(AVCodecContext *avctx)
  714. {
  715. LclContext *c = avctx->priv_data;
  716. int zret; // Zlib return code
  717. #ifndef CONFIG_ZLIB
  718. av_log(avctx, AV_LOG_ERROR, "Zlib support not compiled.\n");
  719. return 1;
  720. #else
  721. c->avctx= avctx;
  722. assert(avctx->width && avctx->height);
  723. avctx->extradata= av_mallocz(8);
  724. avctx->coded_frame= &c->pic;
  725. // Will be user settable someday
  726. c->compression = 6;
  727. c->flags = 0;
  728. switch(avctx->pix_fmt){
  729. case PIX_FMT_BGR24:
  730. c->imgtype = IMGTYPE_RGB24;
  731. c->decomp_size = avctx->width * avctx->height * 3;
  732. avctx->bits_per_sample= 24;
  733. break;
  734. default:
  735. av_log(avctx, AV_LOG_ERROR, "Format %d not supported\n", avctx->pix_fmt);
  736. return -1;
  737. }
  738. ((uint8_t*)avctx->extradata)[0]= 4;
  739. ((uint8_t*)avctx->extradata)[1]= 0;
  740. ((uint8_t*)avctx->extradata)[2]= 0;
  741. ((uint8_t*)avctx->extradata)[3]= 0;
  742. ((uint8_t*)avctx->extradata)[4]= c->imgtype;
  743. ((uint8_t*)avctx->extradata)[5]= c->compression;
  744. ((uint8_t*)avctx->extradata)[6]= c->flags;
  745. ((uint8_t*)avctx->extradata)[7]= CODEC_ZLIB;
  746. c->avctx->extradata_size= 8;
  747. c->zstream.zalloc = Z_NULL;
  748. c->zstream.zfree = Z_NULL;
  749. c->zstream.opaque = Z_NULL;
  750. zret = deflateInit(&(c->zstream), c->compression);
  751. if (zret != Z_OK) {
  752. av_log(avctx, AV_LOG_ERROR, "Deflate init error: %d\n", zret);
  753. return 1;
  754. }
  755. /* Conservative upper bound taken from zlib v1.2.1 source */
  756. c->max_comp_size = c->decomp_size + ((c->decomp_size + 7) >> 3) +
  757. ((c->decomp_size + 63) >> 6) + 11;
  758. if ((c->comp_buf = av_malloc(c->max_comp_size)) == NULL) {
  759. av_log(avctx, AV_LOG_ERROR, "Can't allocate compression buffer.\n");
  760. return 1;
  761. }
  762. return 0;
  763. #endif
  764. }
  765. #endif /* CONFIG_ENCODERS */
  766. #ifdef CONFIG_DECODERS
  767. /*
  768. *
  769. * Uninit lcl decoder
  770. *
  771. */
  772. static int decode_end(AVCodecContext *avctx)
  773. {
  774. LclContext * const c = avctx->priv_data;
  775. if (c->pic.data[0])
  776. avctx->release_buffer(avctx, &c->pic);
  777. #ifdef CONFIG_ZLIB
  778. inflateEnd(&(c->zstream));
  779. #endif
  780. return 0;
  781. }
  782. #endif
  783. #ifdef CONFIG_ENCODERS
  784. /*
  785. *
  786. * Uninit lcl encoder
  787. *
  788. */
  789. static int encode_end(AVCodecContext *avctx)
  790. {
  791. LclContext *c = avctx->priv_data;
  792. av_freep(&avctx->extradata);
  793. av_freep(&c->comp_buf);
  794. #ifdef CONFIG_ZLIB
  795. deflateEnd(&(c->zstream));
  796. #endif
  797. return 0;
  798. }
  799. #endif
  800. #ifdef CONFIG_MSZH_DECODER
  801. AVCodec mszh_decoder = {
  802. "mszh",
  803. CODEC_TYPE_VIDEO,
  804. CODEC_ID_MSZH,
  805. sizeof(LclContext),
  806. decode_init,
  807. NULL,
  808. decode_end,
  809. decode_frame,
  810. CODEC_CAP_DR1,
  811. };
  812. #endif
  813. #ifdef CONFIG_ZLIB_DECODER
  814. AVCodec zlib_decoder = {
  815. "zlib",
  816. CODEC_TYPE_VIDEO,
  817. CODEC_ID_ZLIB,
  818. sizeof(LclContext),
  819. decode_init,
  820. NULL,
  821. decode_end,
  822. decode_frame,
  823. CODEC_CAP_DR1,
  824. };
  825. #endif
  826. #ifdef CONFIG_ENCODERS
  827. AVCodec zlib_encoder = {
  828. "zlib",
  829. CODEC_TYPE_VIDEO,
  830. CODEC_ID_ZLIB,
  831. sizeof(LclContext),
  832. encode_init,
  833. encode_frame,
  834. encode_end,
  835. };
  836. #endif //CONFIG_ENCODERS