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.

184 lines
5.1KB

  1. /*
  2. * ZeroCodec Decoder
  3. *
  4. * Copyright (c) 2012, Derek Buitenhuis
  5. *
  6. * Permission to use, copy, modify, and/or distribute this software for any
  7. * purpose with or without fee is hereby granted, provided that the above
  8. * copyright notice and this permission notice appear in all copies.
  9. *
  10. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  11. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  12. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  13. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  14. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  15. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  16. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #include <zlib.h>
  19. #include "avcodec.h"
  20. typedef struct {
  21. AVFrame previous_frame;
  22. z_stream zstream;
  23. int size;
  24. } ZeroCodecContext;
  25. static int zerocodec_decode_frame(AVCodecContext *avctx, void *data,
  26. int *data_size, AVPacket *avpkt)
  27. {
  28. ZeroCodecContext *zc = avctx->priv_data;
  29. AVFrame *pic = avctx->coded_frame;
  30. AVFrame *prev_pic = &zc->previous_frame;
  31. z_stream *zstream = &zc->zstream;
  32. uint8_t *prev, *dst;
  33. int i, j, zret;
  34. pic->reference = 3;
  35. if (avctx->get_buffer(avctx, pic) < 0) {
  36. av_log(avctx, AV_LOG_ERROR, "Could not allocate buffer.\n");
  37. return AVERROR(ENOMEM);
  38. }
  39. zret = inflateReset(zstream);
  40. if (zret != Z_OK) {
  41. av_log(avctx, AV_LOG_ERROR, "Could not reset inflate: %d\n", zret);
  42. return AVERROR(EINVAL);
  43. }
  44. zstream->next_in = avpkt->data;
  45. zstream->avail_in = avpkt->size;
  46. prev = prev_pic->data[0];
  47. dst = pic->data[0];
  48. /**
  49. * ZeroCodec has very simple interframe compression. If a value
  50. * is the same as the previous frame, set it to 0.
  51. */
  52. if (avpkt->flags & AV_PKT_FLAG_KEY) {
  53. pic->key_frame = 1;
  54. pic->pict_type = AV_PICTURE_TYPE_I;
  55. for (i = 0; i < avctx->height; i++) {
  56. zstream->next_out = dst;
  57. zstream->avail_out = avctx->width << 1;
  58. zret = inflate(zstream, Z_SYNC_FLUSH);
  59. if (zret != Z_OK && zret != Z_STREAM_END) {
  60. av_log(avctx, AV_LOG_ERROR,
  61. "Inflate failed with return code: %d\n", zret);
  62. return AVERROR(EINVAL);
  63. }
  64. dst += pic->linesize[0];
  65. }
  66. } else {
  67. pic->key_frame = 0;
  68. pic->pict_type = AV_PICTURE_TYPE_P;
  69. for (i = 0; i < avctx->height; i++) {
  70. zstream->next_out = dst;
  71. zstream->avail_out = avctx->width << 1;
  72. zret = inflate(zstream, Z_SYNC_FLUSH);
  73. if (zret != Z_OK && zret != Z_STREAM_END) {
  74. av_log(avctx, AV_LOG_ERROR,
  75. "Inflate failed with return code: %d\n", zret);
  76. return AVERROR(EINVAL);
  77. }
  78. for (j = 0; j < avctx->width << 1; j++)
  79. dst[j] += prev[j] & -!dst[j];
  80. prev += prev_pic->linesize[0];
  81. dst += pic->linesize[0];
  82. }
  83. }
  84. /* Release the previous buffer if need be */
  85. if (prev_pic->data[0])
  86. avctx->release_buffer(avctx, prev_pic);
  87. /* Store the previouse frame for use later */
  88. *prev_pic = *pic;
  89. *data_size = sizeof(AVFrame);
  90. *(AVFrame *)data = *pic;
  91. return avpkt->size;
  92. }
  93. static av_cold int zerocodec_decode_close(AVCodecContext *avctx)
  94. {
  95. ZeroCodecContext *zc = avctx->priv_data;
  96. AVFrame *prev_pic = &zc->previous_frame;
  97. inflateEnd(&zc->zstream);
  98. /* Release last frame */
  99. if (prev_pic->data[0])
  100. avctx->release_buffer(avctx, prev_pic);
  101. av_freep(&avctx->coded_frame);
  102. return 0;
  103. }
  104. static av_cold int zerocodec_decode_init(AVCodecContext *avctx)
  105. {
  106. ZeroCodecContext *zc = avctx->priv_data;
  107. z_stream *zstream = &zc->zstream;
  108. int zret;
  109. avctx->pix_fmt = PIX_FMT_UYVY422;
  110. avctx->bits_per_raw_sample = 8;
  111. zc->size = avpicture_get_size(avctx->pix_fmt,
  112. avctx->width, avctx->height);
  113. zstream->zalloc = Z_NULL;
  114. zstream->zfree = Z_NULL;
  115. zstream->opaque = Z_NULL;
  116. zret = inflateInit(zstream);
  117. if (zret != Z_OK) {
  118. av_log(avctx, AV_LOG_ERROR, "Could not initialize inflate: %d\n", zret);
  119. return AVERROR(ENOMEM);
  120. }
  121. avctx->coded_frame = avcodec_alloc_frame();
  122. if (!avctx->coded_frame) {
  123. av_log(avctx, AV_LOG_ERROR, "Could not allocate frame buffer.\n");
  124. zerocodec_decode_close(avctx);
  125. return AVERROR(ENOMEM);
  126. }
  127. return 0;
  128. }
  129. AVCodec ff_zerocodec_decoder = {
  130. .type = AVMEDIA_TYPE_VIDEO,
  131. .name = "zerocodec",
  132. .id = CODEC_ID_ZEROCODEC,
  133. .priv_data_size = sizeof(ZeroCodecContext),
  134. .init = zerocodec_decode_init,
  135. .decode = zerocodec_decode_frame,
  136. .close = zerocodec_decode_close,
  137. .capabilities = CODEC_CAP_DR1,
  138. .long_name = NULL_IF_CONFIG_SMALL("ZeroCodec Lossless Video"),
  139. };