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.

186 lines
5.1KB

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