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.

165 lines
4.4KB

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