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.

187 lines
5.1KB

  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 "v210dec.h"
  25. #include "libavutil/bswap.h"
  26. #define READ_PIXELS(a, b, c) \
  27. do { \
  28. val = av_le2ne32(*src++); \
  29. *a++ = val & 0x3FF; \
  30. *b++ = (val >> 10) & 0x3FF; \
  31. *c++ = (val >> 20) & 0x3FF; \
  32. } while (0)
  33. static void v210_planar_unpack_c(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width)
  34. {
  35. uint32_t val;
  36. int i;
  37. for( i = 0; i < width-5; i += 6 ){
  38. READ_PIXELS(u, y, v);
  39. READ_PIXELS(y, u, y);
  40. READ_PIXELS(v, y, u);
  41. READ_PIXELS(y, v, y);
  42. }
  43. }
  44. static av_cold int decode_init(AVCodecContext *avctx)
  45. {
  46. V210DecContext *s = avctx->priv_data;
  47. if (avctx->width & 1) {
  48. av_log(avctx, AV_LOG_ERROR, "v210 needs even width\n");
  49. return -1;
  50. }
  51. avctx->pix_fmt = PIX_FMT_YUV422P10;
  52. avctx->bits_per_raw_sample = 10;
  53. avctx->coded_frame = avcodec_alloc_frame();
  54. s->unpack_frame = v210_planar_unpack_c;
  55. if (HAVE_MMX)
  56. v210_x86_init(s);
  57. return 0;
  58. }
  59. static int decode_frame(AVCodecContext *avctx, void *data, int *data_size,
  60. AVPacket *avpkt)
  61. {
  62. V210DecContext *s = avctx->priv_data;
  63. int h, w, stride, aligned_input;
  64. AVFrame *pic = avctx->coded_frame;
  65. const uint8_t *psrc = avpkt->data;
  66. uint16_t *y, *u, *v;
  67. if (s->custom_stride )
  68. stride = s->custom_stride;
  69. else {
  70. int aligned_width = ((avctx->width + 47) / 48) * 48;
  71. stride = aligned_width * 8 / 3;
  72. }
  73. aligned_input = !((uintptr_t)psrc & 0xf) && !(stride & 0xf);
  74. if (aligned_input != s->aligned_input) {
  75. s->aligned_input = aligned_input;
  76. if (HAVE_MMX)
  77. v210_x86_init(s);
  78. }
  79. if (pic->data[0])
  80. avctx->release_buffer(avctx, pic);
  81. if (avpkt->size < stride * avctx->height) {
  82. av_log(avctx, AV_LOG_ERROR, "packet too small\n");
  83. return -1;
  84. }
  85. pic->reference = 0;
  86. if (avctx->get_buffer(avctx, pic) < 0)
  87. return -1;
  88. y = (uint16_t*)pic->data[0];
  89. u = (uint16_t*)pic->data[1];
  90. v = (uint16_t*)pic->data[2];
  91. pic->pict_type = AV_PICTURE_TYPE_I;
  92. pic->key_frame = 1;
  93. for (h = 0; h < avctx->height; h++) {
  94. const uint32_t *src = (const uint32_t*)psrc;
  95. uint32_t val;
  96. w = (avctx->width / 6) * 6;
  97. s->unpack_frame(src, y, u, v, w);
  98. y += w;
  99. u += w >> 1;
  100. v += w >> 1;
  101. src += (w << 1) / 3;
  102. if (w < avctx->width - 1) {
  103. READ_PIXELS(u, y, v);
  104. val = av_le2ne32(*src++);
  105. *y++ = val & 0x3FF;
  106. }
  107. if (w < avctx->width - 3) {
  108. *u++ = (val >> 10) & 0x3FF;
  109. *y++ = (val >> 20) & 0x3FF;
  110. val = av_le2ne32(*src++);
  111. *v++ = val & 0x3FF;
  112. *y++ = (val >> 10) & 0x3FF;
  113. }
  114. psrc += stride;
  115. y += pic->linesize[0] / 2 - avctx->width;
  116. u += pic->linesize[1] / 2 - avctx->width / 2;
  117. v += pic->linesize[2] / 2 - avctx->width / 2;
  118. }
  119. *data_size = sizeof(AVFrame);
  120. *(AVFrame*)data = *avctx->coded_frame;
  121. return avpkt->size;
  122. }
  123. static av_cold int decode_close(AVCodecContext *avctx)
  124. {
  125. AVFrame *pic = avctx->coded_frame;
  126. if (pic->data[0])
  127. avctx->release_buffer(avctx, pic);
  128. av_freep(&avctx->coded_frame);
  129. return 0;
  130. }
  131. #define V210DEC_FLAGS AV_OPT_FLAG_ENCODING_PARAM | AV_OPT_FLAG_VIDEO_PARAM
  132. static const AVOption v210dec_options[] = {
  133. {"custom_stride", "Custom V210 stride", offsetof(V210DecContext, custom_stride), FF_OPT_TYPE_INT,
  134. {.dbl = 0}, INT_MIN, INT_MAX, V210DEC_FLAGS},
  135. {NULL}
  136. };
  137. static const AVClass v210dec_class = {
  138. "V210 Decoder",
  139. av_default_item_name,
  140. v210dec_options,
  141. LIBAVUTIL_VERSION_INT,
  142. };
  143. AVCodec ff_v210_decoder = {
  144. .name = "v210",
  145. .type = AVMEDIA_TYPE_VIDEO,
  146. .id = CODEC_ID_V210,
  147. .priv_data_size = sizeof(V210DecContext),
  148. .init = decode_init,
  149. .close = decode_close,
  150. .decode = decode_frame,
  151. .capabilities = CODEC_CAP_DR1,
  152. .long_name = NULL_IF_CONFIG_SMALL("Uncompressed 4:2:2 10-bit"),
  153. .priv_class = &v210dec_class,
  154. };