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.

138 lines
4.0KB

  1. /*
  2. * Aura 2 decoder
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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. typedef struct AuraDecodeContext {
  28. AVCodecContext *avctx;
  29. AVFrame frame;
  30. } AuraDecodeContext;
  31. static av_cold int aura_decode_init(AVCodecContext *avctx)
  32. {
  33. AuraDecodeContext *s = avctx->priv_data;
  34. s->avctx = avctx;
  35. /* width needs to be divisible by 4 for this codec to work */
  36. if (avctx->width & 0x3)
  37. return AVERROR(EINVAL);
  38. avctx->pix_fmt = AV_PIX_FMT_YUV422P;
  39. avcodec_get_frame_defaults(&s->frame);
  40. return 0;
  41. }
  42. static int aura_decode_frame(AVCodecContext *avctx,
  43. void *data, int *got_frame,
  44. AVPacket *pkt)
  45. {
  46. AuraDecodeContext *s = avctx->priv_data;
  47. uint8_t *Y, *U, *V;
  48. uint8_t val;
  49. int x, y, ret;
  50. const uint8_t *buf = pkt->data;
  51. /* prediction error tables (make it clear that they are signed values) */
  52. const int8_t *delta_table = (const int8_t*)buf + 16;
  53. if (pkt->size != 48 + avctx->height * avctx->width) {
  54. av_log(avctx, AV_LOG_ERROR, "got a buffer with %d bytes when %d were expected\n",
  55. pkt->size, 48 + avctx->height * avctx->width);
  56. return AVERROR_INVALIDDATA;
  57. }
  58. /* pixel data starts 48 bytes in, after 3x16-byte tables */
  59. buf += 48;
  60. if (s->frame.data[0])
  61. avctx->release_buffer(avctx, &s->frame);
  62. s->frame.buffer_hints = FF_BUFFER_HINTS_VALID;
  63. s->frame.reference = 0;
  64. if ((ret = ff_get_buffer(avctx, &s->frame)) < 0) {
  65. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  66. return ret;
  67. }
  68. Y = s->frame.data[0];
  69. U = s->frame.data[1];
  70. V = s->frame.data[2];
  71. /* iterate through each line in the height */
  72. for (y = 0; y < avctx->height; y++) {
  73. /* reset predictors */
  74. val = *buf++;
  75. U[0] = val & 0xF0;
  76. Y[0] = val << 4;
  77. val = *buf++;
  78. V[0] = val & 0xF0;
  79. Y[1] = Y[0] + delta_table[val & 0xF];
  80. Y += 2; U++; V++;
  81. /* iterate through the remaining pixel groups (4 pixels/group) */
  82. for (x = 1; x < (avctx->width >> 1); x++) {
  83. val = *buf++;
  84. U[0] = U[-1] + delta_table[val >> 4];
  85. Y[0] = Y[-1] + delta_table[val & 0xF];
  86. val = *buf++;
  87. V[0] = V[-1] + delta_table[val >> 4];
  88. Y[1] = Y[ 0] + delta_table[val & 0xF];
  89. Y += 2; U++; V++;
  90. }
  91. Y += s->frame.linesize[0] - avctx->width;
  92. U += s->frame.linesize[1] - (avctx->width >> 1);
  93. V += s->frame.linesize[2] - (avctx->width >> 1);
  94. }
  95. *got_frame = 1;
  96. *(AVFrame*)data = s->frame;
  97. return pkt->size;
  98. }
  99. static av_cold int aura_decode_end(AVCodecContext *avctx)
  100. {
  101. AuraDecodeContext *s = avctx->priv_data;
  102. if (s->frame.data[0])
  103. avctx->release_buffer(avctx, &s->frame);
  104. return 0;
  105. }
  106. AVCodec ff_aura2_decoder = {
  107. .name = "aura2",
  108. .type = AVMEDIA_TYPE_VIDEO,
  109. .id = AV_CODEC_ID_AURA2,
  110. .priv_data_size = sizeof(AuraDecodeContext),
  111. .init = aura_decode_init,
  112. .close = aura_decode_end,
  113. .decode = aura_decode_frame,
  114. .capabilities = CODEC_CAP_DR1,
  115. .long_name = NULL_IF_CONFIG_SMALL("Auravision Aura 2"),
  116. };