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.

122 lines
3.9KB

  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. return 0;
  36. }
  37. static int vcr1_decode_frame(AVCodecContext *avctx, void *data,
  38. int *got_frame, AVPacket *avpkt)
  39. {
  40. const uint8_t *buf = avpkt->data;
  41. int buf_size = avpkt->size;
  42. VCR1Context *const a = avctx->priv_data;
  43. AVFrame *const p = data;
  44. const uint8_t *bytestream = buf;
  45. int i, x, y, ret;
  46. if ((ret = ff_get_buffer(avctx, p, 0)) < 0) {
  47. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  48. return ret;
  49. }
  50. p->pict_type = AV_PICTURE_TYPE_I;
  51. p->key_frame = 1;
  52. for (i = 0; i < 16; i++) {
  53. a->delta[i] = *bytestream++;
  54. bytestream++;
  55. }
  56. for (y = 0; y < avctx->height; y++) {
  57. int offset;
  58. uint8_t *luma = &p->data[0][y * p->linesize[0]];
  59. if ((y & 3) == 0) {
  60. uint8_t *cb = &p->data[1][(y >> 2) * p->linesize[1]];
  61. uint8_t *cr = &p->data[2][(y >> 2) * p->linesize[2]];
  62. for (i = 0; i < 4; i++)
  63. a->offset[i] = *bytestream++;
  64. offset = a->offset[0] - a->delta[bytestream[2] & 0xF];
  65. for (x = 0; x < avctx->width; x += 4) {
  66. luma[0] = offset += a->delta[bytestream[2] & 0xF];
  67. luma[1] = offset += a->delta[bytestream[2] >> 4];
  68. luma[2] = offset += a->delta[bytestream[0] & 0xF];
  69. luma[3] = offset += a->delta[bytestream[0] >> 4];
  70. luma += 4;
  71. *cb++ = bytestream[3];
  72. *cr++ = bytestream[1];
  73. bytestream += 4;
  74. }
  75. } else {
  76. offset = a->offset[y & 3] - a->delta[bytestream[2] & 0xF];
  77. for (x = 0; x < avctx->width; x += 8) {
  78. luma[0] = offset += a->delta[bytestream[2] & 0xF];
  79. luma[1] = offset += a->delta[bytestream[2] >> 4];
  80. luma[2] = offset += a->delta[bytestream[3] & 0xF];
  81. luma[3] = offset += a->delta[bytestream[3] >> 4];
  82. luma[4] = offset += a->delta[bytestream[0] & 0xF];
  83. luma[5] = offset += a->delta[bytestream[0] >> 4];
  84. luma[6] = offset += a->delta[bytestream[1] & 0xF];
  85. luma[7] = offset += a->delta[bytestream[1] >> 4];
  86. luma += 8;
  87. bytestream += 4;
  88. }
  89. }
  90. }
  91. *got_frame = 1;
  92. return buf_size;
  93. }
  94. AVCodec ff_vcr1_decoder = {
  95. .name = "vcr1",
  96. .type = AVMEDIA_TYPE_VIDEO,
  97. .id = AV_CODEC_ID_VCR1,
  98. .priv_data_size = sizeof(VCR1Context),
  99. .init = vcr1_decode_init,
  100. .decode = vcr1_decode_frame,
  101. .capabilities = CODEC_CAP_DR1,
  102. .long_name = NULL_IF_CONFIG_SMALL("ATI VCR1"),
  103. };