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