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.

137 lines
4.0KB

  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 "libavutil/bswap.h"
  25. #include "libavutil/internal.h"
  26. #include "libavutil/mem.h"
  27. static av_cold int decode_init(AVCodecContext *avctx)
  28. {
  29. if (avctx->width & 1) {
  30. av_log(avctx, AV_LOG_ERROR, "v210 needs even width\n");
  31. return -1;
  32. }
  33. avctx->pix_fmt = AV_PIX_FMT_YUV422P10;
  34. avctx->bits_per_raw_sample = 10;
  35. avctx->coded_frame = avcodec_alloc_frame();
  36. if (!avctx->coded_frame)
  37. return AVERROR(ENOMEM);
  38. return 0;
  39. }
  40. static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
  41. AVPacket *avpkt)
  42. {
  43. int h, w;
  44. AVFrame *pic = avctx->coded_frame;
  45. const uint8_t *psrc = avpkt->data;
  46. uint16_t *y, *u, *v;
  47. int aligned_width = ((avctx->width + 47) / 48) * 48;
  48. int stride = aligned_width * 8 / 3;
  49. if (pic->data[0])
  50. avctx->release_buffer(avctx, pic);
  51. if (avpkt->size < stride * avctx->height) {
  52. av_log(avctx, AV_LOG_ERROR, "packet too small\n");
  53. return -1;
  54. }
  55. pic->reference = 0;
  56. if (avctx->get_buffer(avctx, pic) < 0)
  57. return -1;
  58. y = (uint16_t*)pic->data[0];
  59. u = (uint16_t*)pic->data[1];
  60. v = (uint16_t*)pic->data[2];
  61. pic->pict_type = AV_PICTURE_TYPE_I;
  62. pic->key_frame = 1;
  63. #define READ_PIXELS(a, b, c) \
  64. do { \
  65. val = av_le2ne32(*src++); \
  66. *a++ = val & 0x3FF; \
  67. *b++ = (val >> 10) & 0x3FF; \
  68. *c++ = (val >> 20) & 0x3FF; \
  69. } while (0)
  70. for (h = 0; h < avctx->height; h++) {
  71. const uint32_t *src = (const uint32_t*)psrc;
  72. uint32_t val;
  73. for (w = 0; w < avctx->width - 5; w += 6) {
  74. READ_PIXELS(u, y, v);
  75. READ_PIXELS(y, u, y);
  76. READ_PIXELS(v, y, u);
  77. READ_PIXELS(y, v, y);
  78. }
  79. if (w < avctx->width - 1) {
  80. READ_PIXELS(u, y, v);
  81. val = av_le2ne32(*src++);
  82. *y++ = val & 0x3FF;
  83. }
  84. if (w < avctx->width - 3) {
  85. *u++ = (val >> 10) & 0x3FF;
  86. *y++ = (val >> 20) & 0x3FF;
  87. val = av_le2ne32(*src++);
  88. *v++ = val & 0x3FF;
  89. *y++ = (val >> 10) & 0x3FF;
  90. }
  91. psrc += stride;
  92. y += pic->linesize[0] / 2 - avctx->width;
  93. u += pic->linesize[1] / 2 - avctx->width / 2;
  94. v += pic->linesize[2] / 2 - avctx->width / 2;
  95. }
  96. *data_size = sizeof(AVFrame);
  97. *(AVFrame*)data = *avctx->coded_frame;
  98. return avpkt->size;
  99. }
  100. static av_cold int decode_close(AVCodecContext *avctx)
  101. {
  102. AVFrame *pic = avctx->coded_frame;
  103. if (pic->data[0])
  104. avctx->release_buffer(avctx, pic);
  105. av_freep(&avctx->coded_frame);
  106. return 0;
  107. }
  108. AVCodec ff_v210_decoder = {
  109. .name = "v210",
  110. .type = AVMEDIA_TYPE_VIDEO,
  111. .id = AV_CODEC_ID_V210,
  112. .init = decode_init,
  113. .close = decode_close,
  114. .decode = decode_frame,
  115. .capabilities = CODEC_CAP_DR1,
  116. .long_name = NULL_IF_CONFIG_SMALL("Uncompressed 4:2:2 10-bit"),
  117. };