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.

143 lines
4.4KB

  1. /*
  2. * ATI VCR1 codec
  3. * Copyright (c) 2003 Michael Niedermayer
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; 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. * ATI VCR1 codec
  24. */
  25. #include "avcodec.h"
  26. #include "internal.h"
  27. #include "libavutil/internal.h"
  28. typedef struct VCR1Context {
  29. int delta[16];
  30. int offset[4];
  31. } VCR1Context;
  32. static av_cold int vcr1_decode_init(AVCodecContext *avctx)
  33. {
  34. avctx->pix_fmt = AV_PIX_FMT_YUV410P;
  35. if (avctx->width & 7) {
  36. av_log(avctx, AV_LOG_ERROR, "Width %d is not divisble by 8.\n", avctx->width);
  37. return AVERROR_INVALIDDATA;
  38. }
  39. return 0;
  40. }
  41. static int vcr1_decode_frame(AVCodecContext *avctx, void *data,
  42. int *got_frame, AVPacket *avpkt)
  43. {
  44. const uint8_t *buf = avpkt->data;
  45. int buf_size = avpkt->size;
  46. VCR1Context *const a = avctx->priv_data;
  47. AVFrame *const p = data;
  48. const uint8_t *bytestream = buf;
  49. int i, x, y, ret;
  50. if ((ret = ff_get_buffer(avctx, p, 0)) < 0) {
  51. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  52. return ret;
  53. }
  54. p->pict_type = AV_PICTURE_TYPE_I;
  55. p->key_frame = 1;
  56. if (buf_size < 32)
  57. goto packet_small;
  58. for (i = 0; i < 16; i++) {
  59. a->delta[i] = *bytestream++;
  60. bytestream++;
  61. buf_size--;
  62. }
  63. for (y = 0; y < avctx->height; y++) {
  64. int offset;
  65. uint8_t *luma = &p->data[0][y * p->linesize[0]];
  66. if ((y & 3) == 0) {
  67. uint8_t *cb = &p->data[1][(y >> 2) * p->linesize[1]];
  68. uint8_t *cr = &p->data[2][(y >> 2) * p->linesize[2]];
  69. if (buf_size < 4 + avctx->width)
  70. goto packet_small;
  71. for (i = 0; i < 4; i++)
  72. a->offset[i] = *bytestream++;
  73. buf_size -= 4;
  74. offset = a->offset[0] - a->delta[bytestream[2] & 0xF];
  75. for (x = 0; x < avctx->width; x += 4) {
  76. luma[0] = offset += a->delta[bytestream[2] & 0xF];
  77. luma[1] = offset += a->delta[bytestream[2] >> 4];
  78. luma[2] = offset += a->delta[bytestream[0] & 0xF];
  79. luma[3] = offset += a->delta[bytestream[0] >> 4];
  80. luma += 4;
  81. *cb++ = bytestream[3];
  82. *cr++ = bytestream[1];
  83. bytestream += 4;
  84. buf_size -= 4;
  85. }
  86. } else {
  87. if (buf_size < avctx->width / 2)
  88. goto packet_small;
  89. offset = a->offset[y & 3] - a->delta[bytestream[2] & 0xF];
  90. for (x = 0; x < avctx->width; x += 8) {
  91. luma[0] = offset += a->delta[bytestream[2] & 0xF];
  92. luma[1] = offset += a->delta[bytestream[2] >> 4];
  93. luma[2] = offset += a->delta[bytestream[3] & 0xF];
  94. luma[3] = offset += a->delta[bytestream[3] >> 4];
  95. luma[4] = offset += a->delta[bytestream[0] & 0xF];
  96. luma[5] = offset += a->delta[bytestream[0] >> 4];
  97. luma[6] = offset += a->delta[bytestream[1] & 0xF];
  98. luma[7] = offset += a->delta[bytestream[1] >> 4];
  99. luma += 8;
  100. bytestream += 4;
  101. buf_size -= 4;
  102. }
  103. }
  104. }
  105. *got_frame = 1;
  106. return buf_size;
  107. packet_small:
  108. av_log(avctx, AV_LOG_ERROR, "Input packet too small.\n");
  109. return AVERROR_INVALIDDATA;
  110. }
  111. AVCodec ff_vcr1_decoder = {
  112. .name = "vcr1",
  113. .long_name = NULL_IF_CONFIG_SMALL("ATI VCR1"),
  114. .type = AVMEDIA_TYPE_VIDEO,
  115. .id = AV_CODEC_ID_VCR1,
  116. .priv_data_size = sizeof(VCR1Context),
  117. .init = vcr1_decode_init,
  118. .decode = vcr1_decode_frame,
  119. .capabilities = AV_CODEC_CAP_DR1,
  120. };