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.

129 lines
4.0KB

  1. /*
  2. * V210 encoder
  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 "bytestream.h"
  25. #include "internal.h"
  26. static av_cold int encode_init(AVCodecContext *avctx)
  27. {
  28. if (avctx->width & 1) {
  29. av_log(avctx, AV_LOG_ERROR, "v210 needs even width\n");
  30. return AVERROR(EINVAL);
  31. }
  32. if (avctx->bits_per_raw_sample != 10)
  33. av_log(avctx, AV_LOG_WARNING, "bits per raw sample: %d != 10-bit\n",
  34. avctx->bits_per_raw_sample);
  35. avctx->coded_frame = avcodec_alloc_frame();
  36. if (!avctx->coded_frame)
  37. return AVERROR(ENOMEM);
  38. avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
  39. return 0;
  40. }
  41. static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
  42. const AVFrame *pic, int *got_packet)
  43. {
  44. int aligned_width = ((avctx->width + 47) / 48) * 48;
  45. int stride = aligned_width * 8 / 3;
  46. int line_padding = stride - ((avctx->width * 8 + 11) / 12) * 4;
  47. int h, w, ret;
  48. const uint16_t *y = (const uint16_t*)pic->data[0];
  49. const uint16_t *u = (const uint16_t*)pic->data[1];
  50. const uint16_t *v = (const uint16_t*)pic->data[2];
  51. PutByteContext p;
  52. if ((ret = ff_alloc_packet(pkt, avctx->height * stride)) < 0) {
  53. av_log(avctx, AV_LOG_ERROR, "Error getting output packet.\n");
  54. return ret;
  55. }
  56. bytestream2_init_writer(&p, pkt->data, pkt->size);
  57. #define CLIP(v) av_clip(v, 4, 1019)
  58. #define WRITE_PIXELS(a, b, c) \
  59. do { \
  60. val = CLIP(*a++); \
  61. val |= (CLIP(*b++) << 10) | \
  62. (CLIP(*c++) << 20); \
  63. bytestream2_put_le32u(&p, val); \
  64. } while (0)
  65. for (h = 0; h < avctx->height; h++) {
  66. uint32_t val;
  67. for (w = 0; w < avctx->width - 5; w += 6) {
  68. WRITE_PIXELS(u, y, v);
  69. WRITE_PIXELS(y, u, y);
  70. WRITE_PIXELS(v, y, u);
  71. WRITE_PIXELS(y, v, y);
  72. }
  73. if (w < avctx->width - 1) {
  74. WRITE_PIXELS(u, y, v);
  75. val = CLIP(*y++);
  76. if (w == avctx->width - 2)
  77. bytestream2_put_le32u(&p, val);
  78. }
  79. if (w < avctx->width - 3) {
  80. val |= (CLIP(*u++) << 10) | (CLIP(*y++) << 20);
  81. bytestream2_put_le32u(&p, val);
  82. val = CLIP(*v++) | (CLIP(*y++) << 10);
  83. bytestream2_put_le32u(&p, val);
  84. }
  85. bytestream2_set_buffer(&p, 0, line_padding);
  86. y += pic->linesize[0] / 2 - avctx->width;
  87. u += pic->linesize[1] / 2 - avctx->width / 2;
  88. v += pic->linesize[2] / 2 - avctx->width / 2;
  89. }
  90. pkt->flags |= AV_PKT_FLAG_KEY;
  91. *got_packet = 1;
  92. return 0;
  93. }
  94. static av_cold int encode_close(AVCodecContext *avctx)
  95. {
  96. av_freep(&avctx->coded_frame);
  97. return 0;
  98. }
  99. AVCodec ff_v210_encoder = {
  100. .name = "v210",
  101. .type = AVMEDIA_TYPE_VIDEO,
  102. .id = CODEC_ID_V210,
  103. .init = encode_init,
  104. .encode2 = encode_frame,
  105. .close = encode_close,
  106. .pix_fmts = (const enum PixelFormat[]){ PIX_FMT_YUV422P10, PIX_FMT_NONE },
  107. .long_name = NULL_IF_CONFIG_SMALL("Uncompressed 4:2:2 10-bit"),
  108. };