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.

122 lines
4.7KB

  1. /*
  2. * Intel MediaSDK QSV based H.264 enccoder
  3. *
  4. * copyright (c) 2013 Yukinori Yamazoe
  5. *
  6. * This file is part of Libav.
  7. *
  8. * Libav is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * Libav is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with Libav; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include <stdint.h>
  23. #include <sys/types.h>
  24. #include <mfx/mfxvideo.h>
  25. #include "libavutil/opt.h"
  26. #include "avcodec.h"
  27. #include "internal.h"
  28. #include "h264.h"
  29. #include "qsv.h"
  30. #include "qsv_internal.h"
  31. #include "qsvenc.h"
  32. typedef struct QSVH264EncContext {
  33. AVClass *class;
  34. QSVEncContext qsv;
  35. } QSVH264EncContext;
  36. static av_cold int qsv_enc_init(AVCodecContext *avctx)
  37. {
  38. QSVH264EncContext *q = avctx->priv_data;
  39. return ff_qsv_enc_init(avctx, &q->qsv);
  40. }
  41. static int qsv_enc_frame(AVCodecContext *avctx, AVPacket *pkt,
  42. const AVFrame *frame, int *got_packet)
  43. {
  44. QSVH264EncContext *q = avctx->priv_data;
  45. return ff_qsv_encode(avctx, &q->qsv, pkt, frame, got_packet);
  46. }
  47. static av_cold int qsv_enc_close(AVCodecContext *avctx)
  48. {
  49. QSVH264EncContext *q = avctx->priv_data;
  50. return ff_qsv_enc_close(avctx, &q->qsv);
  51. }
  52. #define OFFSET(x) offsetof(QSVH264EncContext, x)
  53. #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
  54. static const AVOption options[] = {
  55. { "async_depth", "Maximum processing parallelism", OFFSET(qsv.async_depth), AV_OPT_TYPE_INT, { .i64 = ASYNC_DEPTH_DEFAULT }, 0, INT_MAX, VE },
  56. { "idr_interval", "Distance (in I-frames) between IDR frames", OFFSET(qsv.idr_interval), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE },
  57. { "avbr_accuracy", "Accuracy of the AVBR ratecontrol", OFFSET(qsv.avbr_accuracy), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE },
  58. { "avbr_convergence", "Convergence of the AVBR ratecontrol", OFFSET(qsv.avbr_convergence), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, VE },
  59. { "profile", NULL, OFFSET(qsv.profile), AV_OPT_TYPE_INT, { .i64 = MFX_PROFILE_UNKNOWN }, 0, INT_MAX, VE, "profile" },
  60. { "unknown" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_UNKNOWN }, INT_MIN, INT_MAX, VE, "profile" },
  61. { "baseline", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_AVC_BASELINE }, INT_MIN, INT_MAX, VE, "profile" },
  62. { "main" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_AVC_MAIN }, INT_MIN, INT_MAX, VE, "profile" },
  63. { "high" , NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_PROFILE_AVC_HIGH }, INT_MIN, INT_MAX, VE, "profile" },
  64. { "preset", NULL, OFFSET(qsv.preset), AV_OPT_TYPE_INT, { .i64 = MFX_TARGETUSAGE_BALANCED }, 0, 7, VE, "preset" },
  65. { "fast", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_BEST_SPEED }, INT_MIN, INT_MAX, VE, "preset" },
  66. { "medium", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_BALANCED }, INT_MIN, INT_MAX, VE, "preset" },
  67. { "slow", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = MFX_TARGETUSAGE_BEST_QUALITY }, INT_MIN, INT_MAX, VE, "preset" },
  68. { NULL },
  69. };
  70. static const AVClass class = {
  71. .class_name = "h264_qsv encoder",
  72. .item_name = av_default_item_name,
  73. .option = options,
  74. .version = LIBAVUTIL_VERSION_INT,
  75. };
  76. static const AVCodecDefault qsv_enc_defaults[] = {
  77. { "b", "1M" },
  78. { "refs", "0" },
  79. // same as the x264 default
  80. { "g", "250" },
  81. { "bf", "3" },
  82. { "coder", "ac" },
  83. { "flags", "+cgop" },
  84. { NULL },
  85. };
  86. AVCodec ff_h264_qsv_encoder = {
  87. .name = "h264_qsv",
  88. .long_name = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (Intel Quick Sync Video acceleration)"),
  89. .priv_data_size = sizeof(QSVH264EncContext),
  90. .type = AVMEDIA_TYPE_VIDEO,
  91. .id = AV_CODEC_ID_H264,
  92. .init = qsv_enc_init,
  93. .encode2 = qsv_enc_frame,
  94. .close = qsv_enc_close,
  95. .capabilities = CODEC_CAP_DELAY,
  96. .pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_NV12,
  97. AV_PIX_FMT_QSV,
  98. AV_PIX_FMT_NONE },
  99. .priv_class = &class,
  100. .defaults = qsv_enc_defaults,
  101. };