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.

158 lines
4.2KB

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