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.

135 lines
3.7KB

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