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.

112 lines
3.4KB

  1. /*
  2. * Aura 2 decoder
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * Libav is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with Libav; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @file
  22. * Aura 2 decoder
  23. */
  24. #include "avcodec.h"
  25. #include "internal.h"
  26. #include "libavutil/internal.h"
  27. static av_cold int aura_decode_init(AVCodecContext *avctx)
  28. {
  29. /* width needs to be divisible by 4 for this codec to work */
  30. if (avctx->width & 0x3)
  31. return AVERROR(EINVAL);
  32. avctx->pix_fmt = AV_PIX_FMT_YUV422P;
  33. return 0;
  34. }
  35. static int aura_decode_frame(AVCodecContext *avctx,
  36. void *data, int *got_frame,
  37. AVPacket *pkt)
  38. {
  39. AVFrame *frame = data;
  40. uint8_t *Y, *U, *V;
  41. uint8_t val;
  42. int x, y, ret;
  43. const uint8_t *buf = pkt->data;
  44. /* prediction error tables (make it clear that they are signed values) */
  45. const int8_t *delta_table = (const int8_t*)buf + 16;
  46. if (pkt->size != 48 + avctx->height * avctx->width) {
  47. av_log(avctx, AV_LOG_ERROR, "got a buffer with %d bytes when %d were expected\n",
  48. pkt->size, 48 + avctx->height * avctx->width);
  49. return AVERROR_INVALIDDATA;
  50. }
  51. /* pixel data starts 48 bytes in, after 3x16-byte tables */
  52. buf += 48;
  53. if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) {
  54. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  55. return ret;
  56. }
  57. Y = frame->data[0];
  58. U = frame->data[1];
  59. V = frame->data[2];
  60. /* iterate through each line in the height */
  61. for (y = 0; y < avctx->height; y++) {
  62. /* reset predictors */
  63. val = *buf++;
  64. U[0] = val & 0xF0;
  65. Y[0] = val << 4;
  66. val = *buf++;
  67. V[0] = val & 0xF0;
  68. Y[1] = Y[0] + delta_table[val & 0xF];
  69. Y += 2; U++; V++;
  70. /* iterate through the remaining pixel groups (4 pixels/group) */
  71. for (x = 1; x < (avctx->width >> 1); x++) {
  72. val = *buf++;
  73. U[0] = U[-1] + delta_table[val >> 4];
  74. Y[0] = Y[-1] + delta_table[val & 0xF];
  75. val = *buf++;
  76. V[0] = V[-1] + delta_table[val >> 4];
  77. Y[1] = Y[ 0] + delta_table[val & 0xF];
  78. Y += 2; U++; V++;
  79. }
  80. Y += frame->linesize[0] - avctx->width;
  81. U += frame->linesize[1] - (avctx->width >> 1);
  82. V += frame->linesize[2] - (avctx->width >> 1);
  83. }
  84. *got_frame = 1;
  85. return pkt->size;
  86. }
  87. AVCodec ff_aura2_decoder = {
  88. .name = "aura2",
  89. .long_name = NULL_IF_CONFIG_SMALL("Auravision Aura 2"),
  90. .type = AVMEDIA_TYPE_VIDEO,
  91. .id = AV_CODEC_ID_AURA2,
  92. .init = aura_decode_init,
  93. .decode = aura_decode_frame,
  94. .capabilities = AV_CODEC_CAP_DR1,
  95. .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
  96. };