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.

169 lines
4.8KB

  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 = prev_pic->data[0], *dst;
  33. int i, j, zret;
  34. pic->reference = 3;
  35. if (avpkt->flags & AV_PKT_FLAG_KEY) {
  36. pic->key_frame = 1;
  37. pic->pict_type = AV_PICTURE_TYPE_I;
  38. } else {
  39. if (!prev) {
  40. av_log(avctx, AV_LOG_ERROR, "Missing reference frame!\n");
  41. return AVERROR_INVALIDDATA;
  42. }
  43. pic->key_frame = 0;
  44. pic->pict_type = AV_PICTURE_TYPE_P;
  45. }
  46. if (avctx->get_buffer(avctx, pic) < 0) {
  47. av_log(avctx, AV_LOG_ERROR, "Could not allocate buffer.\n");
  48. return AVERROR(ENOMEM);
  49. }
  50. zret = inflateReset(zstream);
  51. if (zret != Z_OK) {
  52. av_log(avctx, AV_LOG_ERROR, "Could not reset inflate: %d\n", zret);
  53. return AVERROR(EINVAL);
  54. }
  55. zstream->next_in = avpkt->data;
  56. zstream->avail_in = avpkt->size;
  57. dst = pic->data[0];
  58. /**
  59. * ZeroCodec has very simple interframe compression. If a value
  60. * is the same as the previous frame, set it to 0.
  61. */
  62. for (i = 0; i < avctx->height; i++) {
  63. zstream->next_out = dst;
  64. zstream->avail_out = avctx->width << 1;
  65. zret = inflate(zstream, Z_SYNC_FLUSH);
  66. if (zret != Z_OK && zret != Z_STREAM_END) {
  67. av_log(avctx, AV_LOG_ERROR,
  68. "Inflate failed with return code: %d\n", zret);
  69. return AVERROR(EINVAL);
  70. }
  71. if (!(avpkt->flags & AV_PKT_FLAG_KEY))
  72. for (j = 0; j < avctx->width << 1; j++)
  73. dst[j] += prev[j] & -!dst[j];
  74. prev += prev_pic->linesize[0];
  75. dst += pic->linesize[0];
  76. }
  77. /* Release the previous buffer if need be */
  78. if (prev_pic->data[0])
  79. avctx->release_buffer(avctx, prev_pic);
  80. *data_size = sizeof(AVFrame);
  81. *(AVFrame *)data = *pic;
  82. /* Store the previous frame for use later.
  83. * FFSWAP ensures that e.g. pic->data is NULLed. */
  84. FFSWAP(AVFrame, *pic, *prev_pic);
  85. return avpkt->size;
  86. }
  87. static av_cold int zerocodec_decode_close(AVCodecContext *avctx)
  88. {
  89. ZeroCodecContext *zc = avctx->priv_data;
  90. AVFrame *prev_pic = &zc->previous_frame;
  91. inflateEnd(&zc->zstream);
  92. /* Release last frame */
  93. if (prev_pic->data[0])
  94. avctx->release_buffer(avctx, prev_pic);
  95. av_freep(&avctx->coded_frame);
  96. return 0;
  97. }
  98. static av_cold int zerocodec_decode_init(AVCodecContext *avctx)
  99. {
  100. ZeroCodecContext *zc = avctx->priv_data;
  101. z_stream *zstream = &zc->zstream;
  102. int zret;
  103. avctx->pix_fmt = PIX_FMT_UYVY422;
  104. avctx->bits_per_raw_sample = 8;
  105. zc->size = avpicture_get_size(avctx->pix_fmt,
  106. avctx->width, avctx->height);
  107. zstream->zalloc = Z_NULL;
  108. zstream->zfree = Z_NULL;
  109. zstream->opaque = Z_NULL;
  110. zret = inflateInit(zstream);
  111. if (zret != Z_OK) {
  112. av_log(avctx, AV_LOG_ERROR, "Could not initialize inflate: %d\n", zret);
  113. return AVERROR(ENOMEM);
  114. }
  115. avctx->coded_frame = avcodec_alloc_frame();
  116. if (!avctx->coded_frame) {
  117. av_log(avctx, AV_LOG_ERROR, "Could not allocate frame buffer.\n");
  118. zerocodec_decode_close(avctx);
  119. return AVERROR(ENOMEM);
  120. }
  121. return 0;
  122. }
  123. AVCodec ff_zerocodec_decoder = {
  124. .type = AVMEDIA_TYPE_VIDEO,
  125. .name = "zerocodec",
  126. .id = CODEC_ID_ZEROCODEC,
  127. .priv_data_size = sizeof(ZeroCodecContext),
  128. .init = zerocodec_decode_init,
  129. .decode = zerocodec_decode_frame,
  130. .close = zerocodec_decode_close,
  131. .capabilities = CODEC_CAP_DR1,
  132. .long_name = NULL_IF_CONFIG_SMALL("ZeroCodec Lossless Video"),
  133. };