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.

454 lines
14KB

  1. /*
  2. * Intel MediaSDK QSV encoder utility functions
  3. *
  4. * copyright (c) 2013 Yukinori Yamazoe
  5. * copyright (c) 2015 Anton Khirnov
  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 <string.h>
  24. #include <sys/types.h>
  25. #include <mfx/mfxvideo.h>
  26. #include "libavutil/common.h"
  27. #include "libavutil/mem.h"
  28. #include "libavutil/log.h"
  29. #include "libavutil/time.h"
  30. #include "libavutil/imgutils.h"
  31. #include "avcodec.h"
  32. #include "internal.h"
  33. #include "qsv.h"
  34. #include "qsv_internal.h"
  35. #include "qsvenc.h"
  36. static int init_video_param(AVCodecContext *avctx, QSVEncContext *q)
  37. {
  38. const char *ratecontrol_desc;
  39. float quant;
  40. int ret;
  41. ret = ff_qsv_codec_id_to_mfx(avctx->codec_id);
  42. if (ret < 0)
  43. return AVERROR_BUG;
  44. q->param.mfx.CodecId = ret;
  45. q->width_align = avctx->codec_id == AV_CODEC_ID_HEVC ? 32 : 16;
  46. if (avctx->level > 0)
  47. q->param.mfx.CodecLevel = avctx->level;
  48. q->param.mfx.CodecProfile = q->profile;
  49. q->param.mfx.TargetUsage = q->preset;
  50. q->param.mfx.GopPicSize = FFMAX(0, avctx->gop_size);
  51. q->param.mfx.GopRefDist = FFMAX(-1, avctx->max_b_frames) + 1;
  52. q->param.mfx.GopOptFlag = avctx->flags & CODEC_FLAG_CLOSED_GOP ?
  53. MFX_GOP_CLOSED : 0;
  54. q->param.mfx.IdrInterval = q->idr_interval;
  55. q->param.mfx.NumSlice = avctx->slices;
  56. q->param.mfx.NumRefFrame = FFMAX(0, avctx->refs);
  57. q->param.mfx.EncodedOrder = 0;
  58. q->param.mfx.BufferSizeInKB = 0;
  59. q->param.mfx.FrameInfo.FourCC = MFX_FOURCC_NV12;
  60. q->param.mfx.FrameInfo.Width = FFALIGN(avctx->width, q->width_align);
  61. q->param.mfx.FrameInfo.Height = FFALIGN(avctx->height, 32);
  62. q->param.mfx.FrameInfo.CropX = 0;
  63. q->param.mfx.FrameInfo.CropY = 0;
  64. q->param.mfx.FrameInfo.CropW = avctx->width;
  65. q->param.mfx.FrameInfo.CropH = avctx->height;
  66. q->param.mfx.FrameInfo.AspectRatioW = avctx->sample_aspect_ratio.num;
  67. q->param.mfx.FrameInfo.AspectRatioH = avctx->sample_aspect_ratio.den;
  68. q->param.mfx.FrameInfo.PicStruct = MFX_PICSTRUCT_PROGRESSIVE;
  69. q->param.mfx.FrameInfo.ChromaFormat = MFX_CHROMAFORMAT_YUV420;
  70. q->param.mfx.FrameInfo.BitDepthLuma = 8;
  71. q->param.mfx.FrameInfo.BitDepthChroma = 8;
  72. if (avctx->framerate.den > 0 && avctx->framerate.num > 0) {
  73. q->param.mfx.FrameInfo.FrameRateExtN = avctx->framerate.num;
  74. q->param.mfx.FrameInfo.FrameRateExtD = avctx->framerate.den;
  75. } else {
  76. q->param.mfx.FrameInfo.FrameRateExtN = avctx->time_base.den;
  77. q->param.mfx.FrameInfo.FrameRateExtD = avctx->time_base.num;
  78. }
  79. if (avctx->flags & CODEC_FLAG_QSCALE) {
  80. q->param.mfx.RateControlMethod = MFX_RATECONTROL_CQP;
  81. ratecontrol_desc = "constant quantization parameter (CQP)";
  82. } else if (avctx->rc_max_rate == avctx->bit_rate) {
  83. q->param.mfx.RateControlMethod = MFX_RATECONTROL_CBR;
  84. ratecontrol_desc = "constant bitrate (CBR)";
  85. } else if (!avctx->rc_max_rate) {
  86. q->param.mfx.RateControlMethod = MFX_RATECONTROL_AVBR;
  87. ratecontrol_desc = "average variable bitrate (AVBR)";
  88. } else {
  89. q->param.mfx.RateControlMethod = MFX_RATECONTROL_VBR;
  90. ratecontrol_desc = "variable bitrate (VBR)";
  91. }
  92. av_log(avctx, AV_LOG_VERBOSE, "Using the %s ratecontrol method\n", ratecontrol_desc);
  93. switch (q->param.mfx.RateControlMethod) {
  94. case MFX_RATECONTROL_CBR:
  95. case MFX_RATECONTROL_VBR:
  96. q->param.mfx.InitialDelayInKB = avctx->rc_initial_buffer_occupancy / 1000;
  97. q->param.mfx.TargetKbps = avctx->bit_rate / 1000;
  98. q->param.mfx.MaxKbps = avctx->bit_rate / 1000;
  99. break;
  100. case MFX_RATECONTROL_CQP:
  101. quant = avctx->global_quality / FF_QP2LAMBDA;
  102. q->param.mfx.QPI = av_clip(quant * fabs(avctx->i_quant_factor) + avctx->i_quant_offset, 0, 51);
  103. q->param.mfx.QPP = av_clip(quant, 0, 51);
  104. q->param.mfx.QPB = av_clip(quant * fabs(avctx->b_quant_factor) + avctx->b_quant_offset, 0, 51);
  105. break;
  106. case MFX_RATECONTROL_AVBR:
  107. q->param.mfx.TargetKbps = avctx->bit_rate / 1000;
  108. q->param.mfx.Convergence = q->avbr_convergence;
  109. q->param.mfx.Accuracy = q->avbr_accuracy;
  110. break;
  111. }
  112. // the HEVC encoder plugin currently fails if coding options
  113. // are provided
  114. if (avctx->codec_id != AV_CODEC_ID_HEVC) {
  115. q->extco.Header.BufferId = MFX_EXTBUFF_CODING_OPTION;
  116. q->extco.Header.BufferSz = sizeof(q->extco);
  117. q->extco.CAVLC = avctx->coder_type == FF_CODER_TYPE_VLC ?
  118. MFX_CODINGOPTION_ON : MFX_CODINGOPTION_UNKNOWN;
  119. q->extparam[0] = (mfxExtBuffer *)&q->extco;
  120. q->param.ExtParam = q->extparam;
  121. q->param.NumExtParam = FF_ARRAY_ELEMS(q->extparam);
  122. }
  123. return 0;
  124. }
  125. static int qsv_retrieve_enc_params(AVCodecContext *avctx, QSVEncContext *q)
  126. {
  127. uint8_t sps_buf[128];
  128. uint8_t pps_buf[128];
  129. mfxExtCodingOptionSPSPPS extradata = {
  130. .Header.BufferId = MFX_EXTBUFF_CODING_OPTION_SPSPPS,
  131. .Header.BufferSz = sizeof(extradata),
  132. .SPSBuffer = sps_buf, .SPSBufSize = sizeof(sps_buf),
  133. .PPSBuffer = pps_buf, .PPSBufSize = sizeof(pps_buf)
  134. };
  135. mfxExtBuffer *ext_buffers[] = {
  136. (mfxExtBuffer*)&extradata,
  137. };
  138. int need_pps = avctx->codec_id != AV_CODEC_ID_MPEG2VIDEO;
  139. int ret;
  140. q->param.ExtParam = ext_buffers;
  141. q->param.NumExtParam = FF_ARRAY_ELEMS(ext_buffers);
  142. ret = MFXVideoENCODE_GetVideoParam(q->session, &q->param);
  143. if (ret < 0)
  144. return ff_qsv_error(ret);
  145. q->packet_size = q->param.mfx.BufferSizeInKB * 1000;
  146. if (!extradata.SPSBufSize || (need_pps && !extradata.PPSBufSize)) {
  147. av_log(avctx, AV_LOG_ERROR, "No extradata returned from libmfx.\n");
  148. return AVERROR_UNKNOWN;
  149. }
  150. avctx->extradata = av_malloc(extradata.SPSBufSize + need_pps * extradata.PPSBufSize +
  151. FF_INPUT_BUFFER_PADDING_SIZE);
  152. if (!avctx->extradata)
  153. return AVERROR(ENOMEM);
  154. memcpy(avctx->extradata, sps_buf, extradata.SPSBufSize);
  155. if (need_pps)
  156. memcpy(avctx->extradata + extradata.SPSBufSize, pps_buf, extradata.PPSBufSize);
  157. avctx->extradata_size = extradata.SPSBufSize + need_pps * extradata.PPSBufSize;
  158. memset(avctx->extradata + avctx->extradata_size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
  159. return 0;
  160. }
  161. int ff_qsv_enc_init(AVCodecContext *avctx, QSVEncContext *q)
  162. {
  163. int ret;
  164. q->param.IOPattern = MFX_IOPATTERN_IN_SYSTEM_MEMORY;
  165. q->param.AsyncDepth = q->async_depth;
  166. if (avctx->hwaccel_context) {
  167. AVQSVContext *qsv = avctx->hwaccel_context;
  168. q->session = qsv->session;
  169. q->param.IOPattern = qsv->iopattern;
  170. }
  171. if (!q->session) {
  172. ret = ff_qsv_init_internal_session(avctx, &q->internal_session,
  173. q->load_plugins);
  174. if (ret < 0)
  175. return ret;
  176. q->session = q->internal_session;
  177. }
  178. ret = init_video_param(avctx, q);
  179. if (ret < 0)
  180. return ret;
  181. ret = MFXVideoENCODE_QueryIOSurf(q->session, &q->param, &q->req);
  182. if (ret < 0) {
  183. av_log(avctx, AV_LOG_ERROR, "Error querying the encoding parameters\n");
  184. return ff_qsv_error(ret);
  185. }
  186. ret = MFXVideoENCODE_Init(q->session, &q->param);
  187. if (ret < 0) {
  188. av_log(avctx, AV_LOG_ERROR, "Error initializing the encoder\n");
  189. return ff_qsv_error(ret);
  190. }
  191. ret = qsv_retrieve_enc_params(avctx, q);
  192. if (ret < 0) {
  193. av_log(avctx, AV_LOG_ERROR, "Error retrieving encoding parameters.\n");
  194. return ret;
  195. }
  196. avctx->coded_frame = av_frame_alloc();
  197. if (!avctx->coded_frame)
  198. return AVERROR(ENOMEM);
  199. q->avctx = avctx;
  200. return 0;
  201. }
  202. static void clear_unused_frames(QSVEncContext *q)
  203. {
  204. QSVFrame *cur = q->work_frames;
  205. while (cur) {
  206. if (cur->surface && !cur->surface->Data.Locked) {
  207. cur->surface = NULL;
  208. av_frame_unref(cur->frame);
  209. }
  210. cur = cur->next;
  211. }
  212. }
  213. static int get_free_frame(QSVEncContext *q, QSVFrame **f)
  214. {
  215. QSVFrame *frame, **last;
  216. clear_unused_frames(q);
  217. frame = q->work_frames;
  218. last = &q->work_frames;
  219. while (frame) {
  220. if (!frame->surface) {
  221. *f = frame;
  222. return 0;
  223. }
  224. last = &frame->next;
  225. frame = frame->next;
  226. }
  227. frame = av_mallocz(sizeof(*frame));
  228. if (!frame)
  229. return AVERROR(ENOMEM);
  230. frame->frame = av_frame_alloc();
  231. if (!frame->frame) {
  232. av_freep(&frame);
  233. return AVERROR(ENOMEM);
  234. }
  235. *last = frame;
  236. *f = frame;
  237. return 0;
  238. }
  239. static int submit_frame(QSVEncContext *q, const AVFrame *frame,
  240. mfxFrameSurface1 **surface)
  241. {
  242. QSVFrame *qf;
  243. int ret;
  244. ret = get_free_frame(q, &qf);
  245. if (ret < 0)
  246. return ret;
  247. if (frame->format == AV_PIX_FMT_QSV) {
  248. ret = av_frame_ref(qf->frame, frame);
  249. if (ret < 0)
  250. return ret;
  251. qf->surface = (mfxFrameSurface1*)qf->frame->data[3];
  252. *surface = qf->surface;
  253. return 0;
  254. }
  255. /* make a copy if the input is not padded as libmfx requires */
  256. if (frame->height & 31 || frame->linesize[0] & (q->width_align - 1)) {
  257. qf->frame->height = FFALIGN(frame->height, 32);
  258. qf->frame->width = FFALIGN(frame->width, q->width_align);
  259. ret = ff_get_buffer(q->avctx, qf->frame, AV_GET_BUFFER_FLAG_REF);
  260. if (ret < 0)
  261. return ret;
  262. qf->frame->height = frame->height;
  263. qf->frame->width = frame->width;
  264. ret = av_frame_copy(qf->frame, frame);
  265. if (ret < 0) {
  266. av_frame_unref(qf->frame);
  267. return ret;
  268. }
  269. } else {
  270. ret = av_frame_ref(qf->frame, frame);
  271. if (ret < 0)
  272. return ret;
  273. }
  274. qf->surface_internal.Info = q->param.mfx.FrameInfo;
  275. qf->surface_internal.Info.PicStruct =
  276. !frame->interlaced_frame ? MFX_PICSTRUCT_PROGRESSIVE :
  277. frame->top_field_first ? MFX_PICSTRUCT_FIELD_TFF :
  278. MFX_PICSTRUCT_FIELD_BFF;
  279. if (frame->repeat_pict == 1)
  280. qf->surface_internal.Info.PicStruct |= MFX_PICSTRUCT_FIELD_REPEATED;
  281. else if (frame->repeat_pict == 2)
  282. qf->surface_internal.Info.PicStruct |= MFX_PICSTRUCT_FRAME_DOUBLING;
  283. else if (frame->repeat_pict == 4)
  284. qf->surface_internal.Info.PicStruct |= MFX_PICSTRUCT_FRAME_TRIPLING;
  285. qf->surface_internal.Data.PitchLow = qf->frame->linesize[0];
  286. qf->surface_internal.Data.Y = qf->frame->data[0];
  287. qf->surface_internal.Data.UV = qf->frame->data[1];
  288. qf->surface_internal.Data.TimeStamp = av_rescale_q(frame->pts, q->avctx->time_base, (AVRational){1, 90000});
  289. qf->surface = &qf->surface_internal;
  290. *surface = qf->surface;
  291. return 0;
  292. }
  293. static void print_interlace_msg(AVCodecContext *avctx, QSVEncContext *q)
  294. {
  295. if (q->param.mfx.CodecId == MFX_CODEC_AVC) {
  296. if (q->param.mfx.CodecProfile == MFX_PROFILE_AVC_BASELINE ||
  297. q->param.mfx.CodecLevel < MFX_LEVEL_AVC_21 ||
  298. q->param.mfx.CodecLevel > MFX_LEVEL_AVC_41)
  299. av_log(avctx, AV_LOG_WARNING,
  300. "Interlaced coding is supported"
  301. " at Main/High Profile Level 2.1-4.1\n");
  302. }
  303. }
  304. int ff_qsv_encode(AVCodecContext *avctx, QSVEncContext *q,
  305. AVPacket *pkt, const AVFrame *frame, int *got_packet)
  306. {
  307. mfxBitstream bs = { { { 0 } } };
  308. mfxFrameSurface1 *surf = NULL;
  309. mfxSyncPoint sync = NULL;
  310. int ret;
  311. if (frame) {
  312. ret = submit_frame(q, frame, &surf);
  313. if (ret < 0) {
  314. av_log(avctx, AV_LOG_ERROR, "Error submitting the frame for encoding.\n");
  315. return ret;
  316. }
  317. }
  318. ret = ff_alloc_packet(pkt, q->packet_size);
  319. if (ret < 0) {
  320. av_log(avctx, AV_LOG_ERROR, "Error allocating the output packet\n");
  321. return ret;
  322. }
  323. bs.Data = pkt->data;
  324. bs.MaxLength = pkt->size;
  325. do {
  326. ret = MFXVideoENCODE_EncodeFrameAsync(q->session, NULL, surf, &bs, &sync);
  327. if (ret == MFX_WRN_DEVICE_BUSY)
  328. av_usleep(1);
  329. } while (ret > 0);
  330. if (ret < 0)
  331. return (ret == MFX_ERR_MORE_DATA) ? 0 : ff_qsv_error(ret);
  332. if (ret == MFX_WRN_INCOMPATIBLE_VIDEO_PARAM && frame->interlaced_frame)
  333. print_interlace_msg(avctx, q);
  334. if (sync) {
  335. MFXVideoCORE_SyncOperation(q->session, sync, 60000);
  336. if (bs.FrameType & MFX_FRAMETYPE_I || bs.FrameType & MFX_FRAMETYPE_xI)
  337. avctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
  338. else if (bs.FrameType & MFX_FRAMETYPE_P || bs.FrameType & MFX_FRAMETYPE_xP)
  339. avctx->coded_frame->pict_type = AV_PICTURE_TYPE_P;
  340. else if (bs.FrameType & MFX_FRAMETYPE_B || bs.FrameType & MFX_FRAMETYPE_xB)
  341. avctx->coded_frame->pict_type = AV_PICTURE_TYPE_B;
  342. pkt->dts = av_rescale_q(bs.DecodeTimeStamp, (AVRational){1, 90000}, avctx->time_base);
  343. pkt->pts = av_rescale_q(bs.TimeStamp, (AVRational){1, 90000}, avctx->time_base);
  344. pkt->size = bs.DataLength;
  345. if (bs.FrameType & MFX_FRAMETYPE_IDR ||
  346. bs.FrameType & MFX_FRAMETYPE_xIDR)
  347. pkt->flags |= AV_PKT_FLAG_KEY;
  348. *got_packet = 1;
  349. }
  350. return 0;
  351. }
  352. int ff_qsv_enc_close(AVCodecContext *avctx, QSVEncContext *q)
  353. {
  354. QSVFrame *cur;
  355. MFXVideoENCODE_Close(q->session);
  356. if (q->internal_session)
  357. MFXClose(q->internal_session);
  358. q->session = NULL;
  359. q->internal_session = NULL;
  360. cur = q->work_frames;
  361. while (cur) {
  362. q->work_frames = cur->next;
  363. av_frame_free(&cur->frame);
  364. av_freep(&cur);
  365. cur = q->work_frames;
  366. }
  367. av_frame_free(&avctx->coded_frame);
  368. return 0;
  369. }