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.

230 lines
6.9KB

  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. #include "libavutil/intreadwrite.h"
  30. #include "thread.h"
  31. #define READ_PIXELS(a, b, c) \
  32. do { \
  33. val = av_le2ne32(*src++); \
  34. *a++ = val & 0x3FF; \
  35. *b++ = (val >> 10) & 0x3FF; \
  36. *c++ = (val >> 20) & 0x3FF; \
  37. } while (0)
  38. typedef struct ThreadData {
  39. AVFrame *frame;
  40. uint8_t *buf;
  41. int stride;
  42. } ThreadData;
  43. static void v210_planar_unpack_c(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width)
  44. {
  45. uint32_t val;
  46. int i;
  47. for( i = 0; i < width-5; i += 6 ){
  48. READ_PIXELS(u, y, v);
  49. READ_PIXELS(y, u, y);
  50. READ_PIXELS(v, y, u);
  51. READ_PIXELS(y, v, y);
  52. }
  53. }
  54. av_cold void ff_v210dec_init(V210DecContext *s)
  55. {
  56. s->unpack_frame = v210_planar_unpack_c;
  57. if (ARCH_X86)
  58. ff_v210_x86_init(s);
  59. }
  60. static av_cold int decode_init(AVCodecContext *avctx)
  61. {
  62. V210DecContext *s = avctx->priv_data;
  63. avctx->pix_fmt = AV_PIX_FMT_YUV422P10;
  64. avctx->bits_per_raw_sample = 10;
  65. s->thread_count = av_clip(avctx->thread_count, 1, avctx->height/4);
  66. s->aligned_input = 0;
  67. ff_v210dec_init(s);
  68. return 0;
  69. }
  70. static int v210_decode_slice(AVCodecContext *avctx, void *arg, int jobnr, int threadnr)
  71. {
  72. V210DecContext *s = avctx->priv_data;
  73. int h, w;
  74. ThreadData *td = arg;
  75. AVFrame *frame = td->frame;
  76. int stride = td->stride;
  77. int slice_start = (avctx->height * jobnr) / s->thread_count;
  78. int slice_end = (avctx->height * (jobnr+1)) / s->thread_count;
  79. uint8_t *psrc = td->buf + stride * slice_start;
  80. uint16_t *y, *u, *v;
  81. y = (uint16_t*)frame->data[0] + slice_start * frame->linesize[0] / 2;
  82. u = (uint16_t*)frame->data[1] + slice_start * frame->linesize[1] / 2;
  83. v = (uint16_t*)frame->data[2] + slice_start * frame->linesize[2] / 2;
  84. for (h = slice_start; h < slice_end; h++) {
  85. const uint32_t *src = (const uint32_t*)psrc;
  86. uint32_t val;
  87. w = (avctx->width / 12) * 12;
  88. s->unpack_frame(src, y, u, v, w);
  89. y += w;
  90. u += w >> 1;
  91. v += w >> 1;
  92. src += (w << 1) / 3;
  93. if (w < avctx->width - 5) {
  94. READ_PIXELS(u, y, v);
  95. READ_PIXELS(y, u, y);
  96. READ_PIXELS(v, y, u);
  97. READ_PIXELS(y, v, y);
  98. w += 6;
  99. }
  100. if (w < avctx->width - 1) {
  101. READ_PIXELS(u, y, v);
  102. val = av_le2ne32(*src++);
  103. *y++ = val & 0x3FF;
  104. if (w < avctx->width - 3) {
  105. *u++ = (val >> 10) & 0x3FF;
  106. *y++ = (val >> 20) & 0x3FF;
  107. val = av_le2ne32(*src++);
  108. *v++ = val & 0x3FF;
  109. *y++ = (val >> 10) & 0x3FF;
  110. }
  111. }
  112. psrc += stride;
  113. y += frame->linesize[0] / 2 - avctx->width + (avctx->width & 1);
  114. u += frame->linesize[1] / 2 - avctx->width / 2;
  115. v += frame->linesize[2] / 2 - avctx->width / 2;
  116. }
  117. return 0;
  118. }
  119. static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
  120. AVPacket *avpkt)
  121. {
  122. V210DecContext *s = avctx->priv_data;
  123. ThreadData td;
  124. int ret, stride, aligned_input;
  125. ThreadFrame frame = { .f = data };
  126. AVFrame *pic = data;
  127. const uint8_t *psrc = avpkt->data;
  128. if (s->custom_stride )
  129. stride = s->custom_stride;
  130. else {
  131. int aligned_width = ((avctx->width + 47) / 48) * 48;
  132. stride = aligned_width * 8 / 3;
  133. }
  134. if (avpkt->size < stride * avctx->height) {
  135. if ((((avctx->width + 23) / 24) * 24 * 8) / 3 * avctx->height == avpkt->size) {
  136. stride = avpkt->size / avctx->height;
  137. if (!s->stride_warning_shown)
  138. av_log(avctx, AV_LOG_WARNING, "Broken v210 with too small padding (64 byte) detected\n");
  139. s->stride_warning_shown = 1;
  140. } else {
  141. av_log(avctx, AV_LOG_ERROR, "packet too small\n");
  142. return AVERROR_INVALIDDATA;
  143. }
  144. }
  145. td.stride = stride;
  146. if ( avctx->codec_tag == MKTAG('C', '2', '1', '0')
  147. && avpkt->size > 64
  148. && AV_RN32(psrc) == AV_RN32("INFO")
  149. && avpkt->size - 64 >= stride * avctx->height)
  150. psrc += 64;
  151. aligned_input = !((uintptr_t)psrc & 0x1f) && !(stride & 0x1f);
  152. if (aligned_input != s->aligned_input) {
  153. s->aligned_input = aligned_input;
  154. ff_v210dec_init(s);
  155. }
  156. if ((ret = ff_thread_get_buffer(avctx, &frame, 0)) < 0)
  157. return ret;
  158. pic->pict_type = AV_PICTURE_TYPE_I;
  159. pic->key_frame = 1;
  160. td.buf = (uint8_t*)psrc;
  161. td.frame = pic;
  162. avctx->execute2(avctx, v210_decode_slice, &td, NULL, s->thread_count);
  163. if (avctx->field_order > AV_FIELD_PROGRESSIVE) {
  164. /* we have interlaced material flagged in container */
  165. pic->interlaced_frame = 1;
  166. if (avctx->field_order == AV_FIELD_TT || avctx->field_order == AV_FIELD_TB)
  167. pic->top_field_first = 1;
  168. }
  169. *got_frame = 1;
  170. return avpkt->size;
  171. }
  172. #define V210DEC_FLAGS AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_VIDEO_PARAM
  173. static const AVOption v210dec_options[] = {
  174. {"custom_stride", "Custom V210 stride", offsetof(V210DecContext, custom_stride), AV_OPT_TYPE_INT,
  175. {.i64 = 0}, INT_MIN, INT_MAX, V210DEC_FLAGS},
  176. {NULL}
  177. };
  178. static const AVClass v210dec_class = {
  179. .class_name = "V210 Decoder",
  180. .item_name = av_default_item_name,
  181. .option = v210dec_options,
  182. .version = LIBAVUTIL_VERSION_INT,
  183. };
  184. AVCodec ff_v210_decoder = {
  185. .name = "v210",
  186. .long_name = NULL_IF_CONFIG_SMALL("Uncompressed 4:2:2 10-bit"),
  187. .type = AVMEDIA_TYPE_VIDEO,
  188. .id = AV_CODEC_ID_V210,
  189. .priv_data_size = sizeof(V210DecContext),
  190. .init = decode_init,
  191. .decode = decode_frame,
  192. .capabilities = AV_CODEC_CAP_DR1 |
  193. AV_CODEC_CAP_SLICE_THREADS |
  194. AV_CODEC_CAP_FRAME_THREADS,
  195. .priv_class = &v210dec_class,
  196. };