xl.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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 libavcodec/xl.c
  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. const uint8_t *buf, int buf_size)
  39. {
  40. VideoXLContext * const a = avctx->priv_data;
  41. AVFrame * const p= (AVFrame*)&a->pic;
  42. uint8_t *Y, *U, *V;
  43. int i, j;
  44. int stride;
  45. uint32_t val;
  46. int y0, y1, y2, y3 = 0, c0 = 0, c1 = 0;
  47. if(p->data[0])
  48. avctx->release_buffer(avctx, p);
  49. p->reference = 0;
  50. if(avctx->get_buffer(avctx, p) < 0){
  51. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  52. return -1;
  53. }
  54. p->pict_type= FF_I_TYPE;
  55. p->key_frame= 1;
  56. Y = a->pic.data[0];
  57. U = a->pic.data[1];
  58. V = a->pic.data[2];
  59. stride = avctx->width - 4;
  60. for (i = 0; i < avctx->height; i++) {
  61. /* lines are stored in reversed order */
  62. buf += stride;
  63. for (j = 0; j < avctx->width; j += 4) {
  64. /* value is stored in LE dword with word swapped */
  65. val = AV_RL32(buf);
  66. buf -= 4;
  67. val = ((val >> 16) & 0xFFFF) | ((val & 0xFFFF) << 16);
  68. if(!j)
  69. y0 = (val & 0x1F) << 2;
  70. else
  71. y0 = y3 + xl_table[val & 0x1F];
  72. val >>= 5;
  73. y1 = y0 + xl_table[val & 0x1F];
  74. val >>= 5;
  75. y2 = y1 + xl_table[val & 0x1F];
  76. val >>= 6; /* align to word */
  77. y3 = y2 + xl_table[val & 0x1F];
  78. val >>= 5;
  79. if(!j)
  80. c0 = (val & 0x1F) << 2;
  81. else
  82. c0 += xl_table[val & 0x1F];
  83. val >>= 5;
  84. if(!j)
  85. c1 = (val & 0x1F) << 2;
  86. else
  87. c1 += xl_table[val & 0x1F];
  88. Y[j + 0] = y0 << 1;
  89. Y[j + 1] = y1 << 1;
  90. Y[j + 2] = y2 << 1;
  91. Y[j + 3] = y3 << 1;
  92. U[j >> 2] = c0 << 1;
  93. V[j >> 2] = c1 << 1;
  94. }
  95. buf += avctx->width + 4;
  96. Y += a->pic.linesize[0];
  97. U += a->pic.linesize[1];
  98. V += a->pic.linesize[2];
  99. }
  100. *data_size = sizeof(AVFrame);
  101. *(AVFrame*)data = a->pic;
  102. return buf_size;
  103. }
  104. static av_cold int decode_init(AVCodecContext *avctx){
  105. // VideoXLContext * const a = avctx->priv_data;
  106. avctx->pix_fmt= PIX_FMT_YUV411P;
  107. return 0;
  108. }
  109. AVCodec xl_decoder = {
  110. "xl",
  111. CODEC_TYPE_VIDEO,
  112. CODEC_ID_VIXL,
  113. sizeof(VideoXLContext),
  114. decode_init,
  115. NULL,
  116. NULL,
  117. decode_frame,
  118. CODEC_CAP_DR1,
  119. .long_name = NULL_IF_CONFIG_SMALL("Miro VideoXL"),
  120. };