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.5KB

  1. /*
  2. * Miro VideoXL codec
  3. * Copyright (c) 2004 Konstantin Shishkov
  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. * Miro VideoXL codec.
  24. */
  25. #include "libavutil/common.h"
  26. #include "libavutil/intreadwrite.h"
  27. #include "avcodec.h"
  28. #include "internal.h"
  29. typedef struct VideoXLContext{
  30. AVCodecContext *avctx;
  31. AVFrame pic;
  32. } VideoXLContext;
  33. static const int xl_table[32] = {
  34. 0, 1, 2, 3, 4, 5, 6, 7,
  35. 8, 9, 12, 15, 20, 25, 34, 46,
  36. 64, 82, 94, 103, 108, 113, 116, 119,
  37. 120, 121, 122, 123, 124, 125, 126, 127
  38. };
  39. static int decode_frame(AVCodecContext *avctx,
  40. void *data, int *got_frame,
  41. AVPacket *avpkt)
  42. {
  43. const uint8_t *buf = avpkt->data;
  44. int buf_size = avpkt->size;
  45. VideoXLContext * const a = avctx->priv_data;
  46. AVFrame * const p = &a->pic;
  47. uint8_t *Y, *U, *V;
  48. int i, j, ret;
  49. int stride;
  50. uint32_t val;
  51. int y0, y1, y2, y3 = 0, c0 = 0, c1 = 0;
  52. if (avctx->width & 3) {
  53. av_log(avctx, AV_LOG_ERROR, "width is not a multiple of 4\n");
  54. return AVERROR_INVALIDDATA;
  55. }
  56. if (buf_size < avctx->width * avctx->height) {
  57. av_log(avctx, AV_LOG_ERROR, "Packet is too small\n");
  58. return AVERROR_INVALIDDATA;
  59. }
  60. if (p->data[0])
  61. avctx->release_buffer(avctx, p);
  62. p->reference = 0;
  63. if ((ret = ff_get_buffer(avctx, p)) < 0) {
  64. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  65. return ret;
  66. }
  67. p->pict_type = AV_PICTURE_TYPE_I;
  68. p->key_frame = 1;
  69. Y = a->pic.data[0];
  70. U = a->pic.data[1];
  71. V = a->pic.data[2];
  72. stride = avctx->width - 4;
  73. for (i = 0; i < avctx->height; i++) {
  74. /* lines are stored in reversed order */
  75. buf += stride;
  76. for (j = 0; j < avctx->width; j += 4) {
  77. /* value is stored in LE dword with word swapped */
  78. val = AV_RL32(buf);
  79. buf -= 4;
  80. val = ((val >> 16) & 0xFFFF) | ((val & 0xFFFF) << 16);
  81. if(!j)
  82. y0 = (val & 0x1F) << 2;
  83. else
  84. y0 = y3 + xl_table[val & 0x1F];
  85. val >>= 5;
  86. y1 = y0 + xl_table[val & 0x1F];
  87. val >>= 5;
  88. y2 = y1 + xl_table[val & 0x1F];
  89. val >>= 6; /* align to word */
  90. y3 = y2 + xl_table[val & 0x1F];
  91. val >>= 5;
  92. if(!j)
  93. c0 = (val & 0x1F) << 2;
  94. else
  95. c0 += xl_table[val & 0x1F];
  96. val >>= 5;
  97. if(!j)
  98. c1 = (val & 0x1F) << 2;
  99. else
  100. c1 += xl_table[val & 0x1F];
  101. Y[j + 0] = y0 << 1;
  102. Y[j + 1] = y1 << 1;
  103. Y[j + 2] = y2 << 1;
  104. Y[j + 3] = y3 << 1;
  105. U[j >> 2] = c0 << 1;
  106. V[j >> 2] = c1 << 1;
  107. }
  108. buf += avctx->width + 4;
  109. Y += a->pic.linesize[0];
  110. U += a->pic.linesize[1];
  111. V += a->pic.linesize[2];
  112. }
  113. *got_frame = 1;
  114. *(AVFrame*)data = a->pic;
  115. return buf_size;
  116. }
  117. static av_cold int decode_init(AVCodecContext *avctx)
  118. {
  119. VideoXLContext * const a = avctx->priv_data;
  120. avcodec_get_frame_defaults(&a->pic);
  121. avctx->pix_fmt = AV_PIX_FMT_YUV411P;
  122. return 0;
  123. }
  124. static av_cold int decode_end(AVCodecContext *avctx)
  125. {
  126. VideoXLContext * const a = avctx->priv_data;
  127. AVFrame *pic = &a->pic;
  128. if (pic->data[0])
  129. avctx->release_buffer(avctx, pic);
  130. return 0;
  131. }
  132. AVCodec ff_xl_decoder = {
  133. .name = "xl",
  134. .type = AVMEDIA_TYPE_VIDEO,
  135. .id = AV_CODEC_ID_VIXL,
  136. .priv_data_size = sizeof(VideoXLContext),
  137. .init = decode_init,
  138. .close = decode_end,
  139. .decode = decode_frame,
  140. .capabilities = CODEC_CAP_DR1,
  141. .long_name = NULL_IF_CONFIG_SMALL("Miro VideoXL"),
  142. };