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.

118 lines
3.5KB

  1. /*
  2. * V210 decoder
  3. *
  4. * Copyright (C) 2009 Michael Niedermayer <michaelni@gmx.at>
  5. * Copyright (c) 2009 Baptiste Coudurier <baptiste dot coudurier at gmail dot com>
  6. *
  7. * This file is part of Libav.
  8. *
  9. * Libav is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * Libav is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with Libav; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. #include "avcodec.h"
  24. #include "internal.h"
  25. #include "libavutil/bswap.h"
  26. #include "libavutil/internal.h"
  27. #include "libavutil/mem.h"
  28. static av_cold int decode_init(AVCodecContext *avctx)
  29. {
  30. if (avctx->width & 1) {
  31. av_log(avctx, AV_LOG_ERROR, "v210 needs even width\n");
  32. return AVERROR_INVALIDDATA;
  33. }
  34. avctx->pix_fmt = AV_PIX_FMT_YUV422P10;
  35. avctx->bits_per_raw_sample = 10;
  36. return 0;
  37. }
  38. static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
  39. AVPacket *avpkt)
  40. {
  41. int h, w, ret;
  42. AVFrame *pic = data;
  43. const uint8_t *psrc = avpkt->data;
  44. uint16_t *y, *u, *v;
  45. int aligned_width = ((avctx->width + 47) / 48) * 48;
  46. int stride = aligned_width * 8 / 3;
  47. if (avpkt->size < stride * avctx->height) {
  48. av_log(avctx, AV_LOG_ERROR, "packet too small\n");
  49. return AVERROR_INVALIDDATA;
  50. }
  51. if ((ret = ff_get_buffer(avctx, pic, 0)) < 0)
  52. return ret;
  53. y = (uint16_t*)pic->data[0];
  54. u = (uint16_t*)pic->data[1];
  55. v = (uint16_t*)pic->data[2];
  56. pic->pict_type = AV_PICTURE_TYPE_I;
  57. pic->key_frame = 1;
  58. #define READ_PIXELS(a, b, c) \
  59. do { \
  60. val = av_le2ne32(*src++); \
  61. *a++ = val & 0x3FF; \
  62. *b++ = (val >> 10) & 0x3FF; \
  63. *c++ = (val >> 20) & 0x3FF; \
  64. } while (0)
  65. for (h = 0; h < avctx->height; h++) {
  66. const uint32_t *src = (const uint32_t*)psrc;
  67. uint32_t val;
  68. for (w = 0; w < avctx->width - 5; w += 6) {
  69. READ_PIXELS(u, y, v);
  70. READ_PIXELS(y, u, y);
  71. READ_PIXELS(v, y, u);
  72. READ_PIXELS(y, v, y);
  73. }
  74. if (w < avctx->width - 1) {
  75. READ_PIXELS(u, y, v);
  76. val = av_le2ne32(*src++);
  77. *y++ = val & 0x3FF;
  78. }
  79. if (w < avctx->width - 3) {
  80. *u++ = (val >> 10) & 0x3FF;
  81. *y++ = (val >> 20) & 0x3FF;
  82. val = av_le2ne32(*src++);
  83. *v++ = val & 0x3FF;
  84. *y++ = (val >> 10) & 0x3FF;
  85. }
  86. psrc += stride;
  87. y += pic->linesize[0] / 2 - avctx->width;
  88. u += pic->linesize[1] / 2 - avctx->width / 2;
  89. v += pic->linesize[2] / 2 - avctx->width / 2;
  90. }
  91. *got_frame = 1;
  92. return avpkt->size;
  93. }
  94. AVCodec ff_v210_decoder = {
  95. .name = "v210",
  96. .long_name = NULL_IF_CONFIG_SMALL("Uncompressed 4:2:2 10-bit"),
  97. .type = AVMEDIA_TYPE_VIDEO,
  98. .id = AV_CODEC_ID_V210,
  99. .init = decode_init,
  100. .decode = decode_frame,
  101. .capabilities = AV_CODEC_CAP_DR1,
  102. };