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.

186 lines
5.4KB

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