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.

898 lines
35KB

  1. /*
  2. * H.264 encoding using the x264 library
  3. * Copyright (C) 2005 Mans Rullgard <mans@mansr.com>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavutil/eval.h"
  22. #include "libavutil/internal.h"
  23. #include "libavutil/opt.h"
  24. #include "libavutil/mem.h"
  25. #include "libavutil/pixdesc.h"
  26. #include "libavutil/stereo3d.h"
  27. #include "avcodec.h"
  28. #include "internal.h"
  29. #if defined(_MSC_VER)
  30. #define X264_API_IMPORTS 1
  31. #endif
  32. #include <x264.h>
  33. #include <float.h>
  34. #include <math.h>
  35. #include <stdio.h>
  36. #include <stdlib.h>
  37. #include <string.h>
  38. typedef struct X264Context {
  39. AVClass *class;
  40. x264_param_t params;
  41. x264_t *enc;
  42. x264_picture_t pic;
  43. uint8_t *sei;
  44. int sei_size;
  45. char *preset;
  46. char *tune;
  47. char *profile;
  48. char *level;
  49. int fastfirstpass;
  50. char *wpredp;
  51. char *x264opts;
  52. float crf;
  53. float crf_max;
  54. int cqp;
  55. int aq_mode;
  56. float aq_strength;
  57. char *psy_rd;
  58. int psy;
  59. int rc_lookahead;
  60. int weightp;
  61. int weightb;
  62. int ssim;
  63. int intra_refresh;
  64. int bluray_compat;
  65. int b_bias;
  66. int b_pyramid;
  67. int mixed_refs;
  68. int dct8x8;
  69. int fast_pskip;
  70. int aud;
  71. int mbtree;
  72. char *deblock;
  73. float cplxblur;
  74. char *partitions;
  75. int direct_pred;
  76. int slice_max_size;
  77. char *stats;
  78. int nal_hrd;
  79. int avcintra_class;
  80. char *x264_params;
  81. } X264Context;
  82. static void X264_log(void *p, int level, const char *fmt, va_list args)
  83. {
  84. static const int level_map[] = {
  85. [X264_LOG_ERROR] = AV_LOG_ERROR,
  86. [X264_LOG_WARNING] = AV_LOG_WARNING,
  87. [X264_LOG_INFO] = AV_LOG_INFO,
  88. [X264_LOG_DEBUG] = AV_LOG_DEBUG
  89. };
  90. if (level < 0 || level > X264_LOG_DEBUG)
  91. return;
  92. av_vlog(p, level_map[level], fmt, args);
  93. }
  94. static int encode_nals(AVCodecContext *ctx, AVPacket *pkt,
  95. const x264_nal_t *nals, int nnal)
  96. {
  97. X264Context *x4 = ctx->priv_data;
  98. uint8_t *p;
  99. int i, size = x4->sei_size, ret;
  100. if (!nnal)
  101. return 0;
  102. for (i = 0; i < nnal; i++)
  103. size += nals[i].i_payload;
  104. if ((ret = ff_alloc_packet2(ctx, pkt, size)) < 0)
  105. return ret;
  106. p = pkt->data;
  107. /* Write the SEI as part of the first frame. */
  108. if (x4->sei_size > 0 && nnal > 0) {
  109. if (x4->sei_size > size) {
  110. av_log(ctx, AV_LOG_ERROR, "Error: nal buffer is too small\n");
  111. return -1;
  112. }
  113. memcpy(p, x4->sei, x4->sei_size);
  114. p += x4->sei_size;
  115. x4->sei_size = 0;
  116. av_freep(&x4->sei);
  117. }
  118. for (i = 0; i < nnal; i++){
  119. memcpy(p, nals[i].p_payload, nals[i].i_payload);
  120. p += nals[i].i_payload;
  121. }
  122. return 1;
  123. }
  124. static int avfmt2_num_planes(int avfmt)
  125. {
  126. switch (avfmt) {
  127. case AV_PIX_FMT_YUV420P:
  128. case AV_PIX_FMT_YUVJ420P:
  129. case AV_PIX_FMT_YUV420P9:
  130. case AV_PIX_FMT_YUV420P10:
  131. case AV_PIX_FMT_YUV444P:
  132. return 3;
  133. case AV_PIX_FMT_BGR24:
  134. case AV_PIX_FMT_RGB24:
  135. return 1;
  136. default:
  137. return 3;
  138. }
  139. }
  140. static int X264_frame(AVCodecContext *ctx, AVPacket *pkt, const AVFrame *frame,
  141. int *got_packet)
  142. {
  143. X264Context *x4 = ctx->priv_data;
  144. x264_nal_t *nal;
  145. int nnal, i, ret;
  146. x264_picture_t pic_out = {0};
  147. AVFrameSideData *side_data;
  148. x264_picture_init( &x4->pic );
  149. x4->pic.img.i_csp = x4->params.i_csp;
  150. if (x264_bit_depth > 8)
  151. x4->pic.img.i_csp |= X264_CSP_HIGH_DEPTH;
  152. x4->pic.img.i_plane = avfmt2_num_planes(ctx->pix_fmt);
  153. if (frame) {
  154. for (i = 0; i < x4->pic.img.i_plane; i++) {
  155. x4->pic.img.plane[i] = frame->data[i];
  156. x4->pic.img.i_stride[i] = frame->linesize[i];
  157. }
  158. x4->pic.i_pts = frame->pts;
  159. x4->pic.i_type =
  160. frame->pict_type == AV_PICTURE_TYPE_I ? X264_TYPE_KEYFRAME :
  161. frame->pict_type == AV_PICTURE_TYPE_P ? X264_TYPE_P :
  162. frame->pict_type == AV_PICTURE_TYPE_B ? X264_TYPE_B :
  163. X264_TYPE_AUTO;
  164. if (x4->avcintra_class < 0) {
  165. if (x4->params.b_interlaced && x4->params.b_tff != frame->top_field_first) {
  166. x4->params.b_tff = frame->top_field_first;
  167. x264_encoder_reconfig(x4->enc, &x4->params);
  168. }
  169. if (x4->params.vui.i_sar_height != ctx->sample_aspect_ratio.den ||
  170. x4->params.vui.i_sar_width != ctx->sample_aspect_ratio.num) {
  171. x4->params.vui.i_sar_height = ctx->sample_aspect_ratio.den;
  172. x4->params.vui.i_sar_width = ctx->sample_aspect_ratio.num;
  173. x264_encoder_reconfig(x4->enc, &x4->params);
  174. }
  175. if (x4->params.rc.i_vbv_buffer_size != ctx->rc_buffer_size / 1000 ||
  176. x4->params.rc.i_vbv_max_bitrate != ctx->rc_max_rate / 1000) {
  177. x4->params.rc.i_vbv_buffer_size = ctx->rc_buffer_size / 1000;
  178. x4->params.rc.i_vbv_max_bitrate = ctx->rc_max_rate / 1000;
  179. x264_encoder_reconfig(x4->enc, &x4->params);
  180. }
  181. if (x4->params.rc.i_rc_method == X264_RC_ABR &&
  182. x4->params.rc.i_bitrate != ctx->bit_rate / 1000) {
  183. x4->params.rc.i_bitrate = ctx->bit_rate / 1000;
  184. x264_encoder_reconfig(x4->enc, &x4->params);
  185. }
  186. if (x4->crf >= 0 &&
  187. x4->params.rc.i_rc_method == X264_RC_CRF &&
  188. x4->params.rc.f_rf_constant != x4->crf) {
  189. x4->params.rc.f_rf_constant = x4->crf;
  190. x264_encoder_reconfig(x4->enc, &x4->params);
  191. }
  192. if (x4->params.rc.i_rc_method == X264_RC_CQP &&
  193. x4->cqp >= 0 &&
  194. x4->params.rc.i_qp_constant != x4->cqp) {
  195. x4->params.rc.i_qp_constant = x4->cqp;
  196. x264_encoder_reconfig(x4->enc, &x4->params);
  197. }
  198. if (x4->crf_max >= 0 &&
  199. x4->params.rc.f_rf_constant_max != x4->crf_max) {
  200. x4->params.rc.f_rf_constant_max = x4->crf_max;
  201. x264_encoder_reconfig(x4->enc, &x4->params);
  202. }
  203. }
  204. side_data = av_frame_get_side_data(frame, AV_FRAME_DATA_STEREO3D);
  205. if (side_data) {
  206. AVStereo3D *stereo = (AVStereo3D *)side_data->data;
  207. int fpa_type;
  208. switch (stereo->type) {
  209. case AV_STEREO3D_CHECKERBOARD:
  210. fpa_type = 0;
  211. break;
  212. case AV_STEREO3D_COLUMNS:
  213. fpa_type = 1;
  214. break;
  215. case AV_STEREO3D_LINES:
  216. fpa_type = 2;
  217. break;
  218. case AV_STEREO3D_SIDEBYSIDE:
  219. fpa_type = 3;
  220. break;
  221. case AV_STEREO3D_TOPBOTTOM:
  222. fpa_type = 4;
  223. break;
  224. case AV_STEREO3D_FRAMESEQUENCE:
  225. fpa_type = 5;
  226. break;
  227. default:
  228. fpa_type = -1;
  229. break;
  230. }
  231. if (fpa_type != x4->params.i_frame_packing) {
  232. x4->params.i_frame_packing = fpa_type;
  233. x264_encoder_reconfig(x4->enc, &x4->params);
  234. }
  235. }
  236. }
  237. do {
  238. if (x264_encoder_encode(x4->enc, &nal, &nnal, frame? &x4->pic: NULL, &pic_out) < 0)
  239. return -1;
  240. ret = encode_nals(ctx, pkt, nal, nnal);
  241. if (ret < 0)
  242. return -1;
  243. } while (!ret && !frame && x264_encoder_delayed_frames(x4->enc));
  244. pkt->pts = pic_out.i_pts;
  245. pkt->dts = pic_out.i_dts;
  246. switch (pic_out.i_type) {
  247. case X264_TYPE_IDR:
  248. case X264_TYPE_I:
  249. ctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
  250. break;
  251. case X264_TYPE_P:
  252. ctx->coded_frame->pict_type = AV_PICTURE_TYPE_P;
  253. break;
  254. case X264_TYPE_B:
  255. case X264_TYPE_BREF:
  256. ctx->coded_frame->pict_type = AV_PICTURE_TYPE_B;
  257. break;
  258. }
  259. pkt->flags |= AV_PKT_FLAG_KEY*pic_out.b_keyframe;
  260. if (ret)
  261. ctx->coded_frame->quality = (pic_out.i_qpplus1 - 1) * FF_QP2LAMBDA;
  262. *got_packet = ret;
  263. return 0;
  264. }
  265. static av_cold int X264_close(AVCodecContext *avctx)
  266. {
  267. X264Context *x4 = avctx->priv_data;
  268. av_freep(&avctx->extradata);
  269. av_free(x4->sei);
  270. if (x4->enc)
  271. x264_encoder_close(x4->enc);
  272. av_frame_free(&avctx->coded_frame);
  273. return 0;
  274. }
  275. #define OPT_STR(opt, param) \
  276. do { \
  277. int ret; \
  278. if (param && (ret = x264_param_parse(&x4->params, opt, param)) < 0) { \
  279. if(ret == X264_PARAM_BAD_NAME) \
  280. av_log(avctx, AV_LOG_ERROR, \
  281. "bad option '%s': '%s'\n", opt, param); \
  282. else \
  283. av_log(avctx, AV_LOG_ERROR, \
  284. "bad value for '%s': '%s'\n", opt, param); \
  285. return -1; \
  286. } \
  287. } while (0)
  288. static int convert_pix_fmt(enum AVPixelFormat pix_fmt)
  289. {
  290. switch (pix_fmt) {
  291. case AV_PIX_FMT_YUV420P:
  292. case AV_PIX_FMT_YUVJ420P:
  293. case AV_PIX_FMT_YUV420P9:
  294. case AV_PIX_FMT_YUV420P10: return X264_CSP_I420;
  295. case AV_PIX_FMT_YUV422P:
  296. case AV_PIX_FMT_YUVJ422P:
  297. case AV_PIX_FMT_YUV422P10: return X264_CSP_I422;
  298. case AV_PIX_FMT_YUV444P:
  299. case AV_PIX_FMT_YUVJ444P:
  300. case AV_PIX_FMT_YUV444P9:
  301. case AV_PIX_FMT_YUV444P10: return X264_CSP_I444;
  302. #ifdef X264_CSP_BGR
  303. case AV_PIX_FMT_BGR24:
  304. return X264_CSP_BGR;
  305. case AV_PIX_FMT_RGB24:
  306. return X264_CSP_RGB;
  307. #endif
  308. case AV_PIX_FMT_NV12: return X264_CSP_NV12;
  309. case AV_PIX_FMT_NV16:
  310. case AV_PIX_FMT_NV20: return X264_CSP_NV16;
  311. };
  312. return 0;
  313. }
  314. #define PARSE_X264_OPT(name, var)\
  315. if (x4->var && x264_param_parse(&x4->params, name, x4->var) < 0) {\
  316. av_log(avctx, AV_LOG_ERROR, "Error parsing option '%s' with value '%s'.\n", name, x4->var);\
  317. return AVERROR(EINVAL);\
  318. }
  319. static av_cold int X264_init(AVCodecContext *avctx)
  320. {
  321. X264Context *x4 = avctx->priv_data;
  322. int sw,sh;
  323. if (avctx->global_quality > 0)
  324. av_log(avctx, AV_LOG_WARNING, "-qscale is ignored, -crf is recommended.\n");
  325. x264_param_default(&x4->params);
  326. x4->params.b_deblocking_filter = avctx->flags & CODEC_FLAG_LOOP_FILTER;
  327. if (x4->preset || x4->tune)
  328. if (x264_param_default_preset(&x4->params, x4->preset, x4->tune) < 0) {
  329. int i;
  330. av_log(avctx, AV_LOG_ERROR, "Error setting preset/tune %s/%s.\n", x4->preset, x4->tune);
  331. av_log(avctx, AV_LOG_INFO, "Possible presets:");
  332. for (i = 0; x264_preset_names[i]; i++)
  333. av_log(avctx, AV_LOG_INFO, " %s", x264_preset_names[i]);
  334. av_log(avctx, AV_LOG_INFO, "\n");
  335. av_log(avctx, AV_LOG_INFO, "Possible tunes:");
  336. for (i = 0; x264_tune_names[i]; i++)
  337. av_log(avctx, AV_LOG_INFO, " %s", x264_tune_names[i]);
  338. av_log(avctx, AV_LOG_INFO, "\n");
  339. return AVERROR(EINVAL);
  340. }
  341. if (avctx->level > 0)
  342. x4->params.i_level_idc = avctx->level;
  343. x4->params.pf_log = X264_log;
  344. x4->params.p_log_private = avctx;
  345. x4->params.i_log_level = X264_LOG_DEBUG;
  346. x4->params.i_csp = convert_pix_fmt(avctx->pix_fmt);
  347. OPT_STR("weightp", x4->wpredp);
  348. if (avctx->bit_rate) {
  349. x4->params.rc.i_bitrate = avctx->bit_rate / 1000;
  350. x4->params.rc.i_rc_method = X264_RC_ABR;
  351. }
  352. x4->params.rc.i_vbv_buffer_size = avctx->rc_buffer_size / 1000;
  353. x4->params.rc.i_vbv_max_bitrate = avctx->rc_max_rate / 1000;
  354. x4->params.rc.b_stat_write = avctx->flags & CODEC_FLAG_PASS1;
  355. if (avctx->flags & CODEC_FLAG_PASS2) {
  356. x4->params.rc.b_stat_read = 1;
  357. } else {
  358. if (x4->crf >= 0) {
  359. x4->params.rc.i_rc_method = X264_RC_CRF;
  360. x4->params.rc.f_rf_constant = x4->crf;
  361. } else if (x4->cqp >= 0) {
  362. x4->params.rc.i_rc_method = X264_RC_CQP;
  363. x4->params.rc.i_qp_constant = x4->cqp;
  364. }
  365. if (x4->crf_max >= 0)
  366. x4->params.rc.f_rf_constant_max = x4->crf_max;
  367. }
  368. if (avctx->rc_buffer_size && avctx->rc_initial_buffer_occupancy > 0 &&
  369. (avctx->rc_initial_buffer_occupancy <= avctx->rc_buffer_size)) {
  370. x4->params.rc.f_vbv_buffer_init =
  371. (float)avctx->rc_initial_buffer_occupancy / avctx->rc_buffer_size;
  372. }
  373. OPT_STR("level", x4->level);
  374. if (avctx->i_quant_factor > 0)
  375. x4->params.rc.f_ip_factor = 1 / fabs(avctx->i_quant_factor);
  376. if (avctx->b_quant_factor > 0)
  377. x4->params.rc.f_pb_factor = avctx->b_quant_factor;
  378. if (avctx->chromaoffset)
  379. x4->params.analyse.i_chroma_qp_offset = avctx->chromaoffset;
  380. if (avctx->me_method == ME_EPZS)
  381. x4->params.analyse.i_me_method = X264_ME_DIA;
  382. else if (avctx->me_method == ME_HEX)
  383. x4->params.analyse.i_me_method = X264_ME_HEX;
  384. else if (avctx->me_method == ME_UMH)
  385. x4->params.analyse.i_me_method = X264_ME_UMH;
  386. else if (avctx->me_method == ME_FULL)
  387. x4->params.analyse.i_me_method = X264_ME_ESA;
  388. else if (avctx->me_method == ME_TESA)
  389. x4->params.analyse.i_me_method = X264_ME_TESA;
  390. if (avctx->gop_size >= 0)
  391. x4->params.i_keyint_max = avctx->gop_size;
  392. if (avctx->max_b_frames >= 0)
  393. x4->params.i_bframe = avctx->max_b_frames;
  394. if (avctx->scenechange_threshold >= 0)
  395. x4->params.i_scenecut_threshold = avctx->scenechange_threshold;
  396. if (avctx->qmin >= 0)
  397. x4->params.rc.i_qp_min = avctx->qmin;
  398. if (avctx->qmax >= 0)
  399. x4->params.rc.i_qp_max = avctx->qmax;
  400. if (avctx->max_qdiff >= 0)
  401. x4->params.rc.i_qp_step = avctx->max_qdiff;
  402. if (avctx->qblur >= 0)
  403. x4->params.rc.f_qblur = avctx->qblur; /* temporally blur quants */
  404. if (avctx->qcompress >= 0)
  405. x4->params.rc.f_qcompress = avctx->qcompress; /* 0.0 => cbr, 1.0 => constant qp */
  406. if (avctx->refs >= 0)
  407. x4->params.i_frame_reference = avctx->refs;
  408. else if (x4->level) {
  409. int i;
  410. int mbn = FF_CEIL_RSHIFT(avctx->width, 4) * FF_CEIL_RSHIFT(avctx->height, 4);
  411. int level_id = -1;
  412. char *tail;
  413. int scale = X264_BUILD < 129 ? 384 : 1;
  414. if (!strcmp(x4->level, "1b")) {
  415. level_id = 9;
  416. } else if (strlen(x4->level) <= 3){
  417. level_id = av_strtod(x4->level, &tail) * 10 + 0.5;
  418. if (*tail)
  419. level_id = -1;
  420. }
  421. if (level_id <= 0)
  422. av_log(avctx, AV_LOG_WARNING, "Failed to parse level\n");
  423. for (i = 0; i<x264_levels[i].level_idc; i++)
  424. if (x264_levels[i].level_idc == level_id)
  425. x4->params.i_frame_reference = av_clip(x264_levels[i].dpb / mbn / scale, 1, x4->params.i_frame_reference);
  426. }
  427. if (avctx->trellis >= 0)
  428. x4->params.analyse.i_trellis = avctx->trellis;
  429. if (avctx->me_range >= 0)
  430. x4->params.analyse.i_me_range = avctx->me_range;
  431. if (avctx->noise_reduction >= 0)
  432. x4->params.analyse.i_noise_reduction = avctx->noise_reduction;
  433. if (avctx->me_subpel_quality >= 0)
  434. x4->params.analyse.i_subpel_refine = avctx->me_subpel_quality;
  435. if (avctx->b_frame_strategy >= 0)
  436. x4->params.i_bframe_adaptive = avctx->b_frame_strategy;
  437. if (avctx->keyint_min >= 0)
  438. x4->params.i_keyint_min = avctx->keyint_min;
  439. if (avctx->coder_type >= 0)
  440. x4->params.b_cabac = avctx->coder_type == FF_CODER_TYPE_AC;
  441. if (avctx->me_cmp >= 0)
  442. x4->params.analyse.b_chroma_me = avctx->me_cmp & FF_CMP_CHROMA;
  443. if (x4->aq_mode >= 0)
  444. x4->params.rc.i_aq_mode = x4->aq_mode;
  445. if (x4->aq_strength >= 0)
  446. x4->params.rc.f_aq_strength = x4->aq_strength;
  447. PARSE_X264_OPT("psy-rd", psy_rd);
  448. PARSE_X264_OPT("deblock", deblock);
  449. PARSE_X264_OPT("partitions", partitions);
  450. PARSE_X264_OPT("stats", stats);
  451. if (x4->psy >= 0)
  452. x4->params.analyse.b_psy = x4->psy;
  453. if (x4->rc_lookahead >= 0)
  454. x4->params.rc.i_lookahead = x4->rc_lookahead;
  455. if (x4->weightp >= 0)
  456. x4->params.analyse.i_weighted_pred = x4->weightp;
  457. if (x4->weightb >= 0)
  458. x4->params.analyse.b_weighted_bipred = x4->weightb;
  459. if (x4->cplxblur >= 0)
  460. x4->params.rc.f_complexity_blur = x4->cplxblur;
  461. if (x4->ssim >= 0)
  462. x4->params.analyse.b_ssim = x4->ssim;
  463. if (x4->intra_refresh >= 0)
  464. x4->params.b_intra_refresh = x4->intra_refresh;
  465. if (x4->bluray_compat >= 0) {
  466. x4->params.b_bluray_compat = x4->bluray_compat;
  467. x4->params.b_vfr_input = 0;
  468. }
  469. if (x4->avcintra_class >= 0)
  470. #if X264_BUILD >= 142
  471. x4->params.i_avcintra_class = x4->avcintra_class;
  472. #else
  473. av_log(avctx, AV_LOG_ERROR,
  474. "x264 too old for AVC Intra, at least version 142 needed\n");
  475. #endif
  476. if (x4->b_bias != INT_MIN)
  477. x4->params.i_bframe_bias = x4->b_bias;
  478. if (x4->b_pyramid >= 0)
  479. x4->params.i_bframe_pyramid = x4->b_pyramid;
  480. if (x4->mixed_refs >= 0)
  481. x4->params.analyse.b_mixed_references = x4->mixed_refs;
  482. if (x4->dct8x8 >= 0)
  483. x4->params.analyse.b_transform_8x8 = x4->dct8x8;
  484. if (x4->fast_pskip >= 0)
  485. x4->params.analyse.b_fast_pskip = x4->fast_pskip;
  486. if (x4->aud >= 0)
  487. x4->params.b_aud = x4->aud;
  488. if (x4->mbtree >= 0)
  489. x4->params.rc.b_mb_tree = x4->mbtree;
  490. if (x4->direct_pred >= 0)
  491. x4->params.analyse.i_direct_mv_pred = x4->direct_pred;
  492. if (x4->slice_max_size >= 0)
  493. x4->params.i_slice_max_size = x4->slice_max_size;
  494. else {
  495. /*
  496. * Allow x264 to be instructed through AVCodecContext about the maximum
  497. * size of the RTP payload. For example, this enables the production of
  498. * payload suitable for the H.264 RTP packetization-mode 0 i.e. single
  499. * NAL unit per RTP packet.
  500. */
  501. if (avctx->rtp_payload_size)
  502. x4->params.i_slice_max_size = avctx->rtp_payload_size;
  503. }
  504. if (x4->fastfirstpass)
  505. x264_param_apply_fastfirstpass(&x4->params);
  506. /* Allow specifying the x264 profile through AVCodecContext. */
  507. if (!x4->profile)
  508. switch (avctx->profile) {
  509. case FF_PROFILE_H264_BASELINE:
  510. x4->profile = av_strdup("baseline");
  511. break;
  512. case FF_PROFILE_H264_HIGH:
  513. x4->profile = av_strdup("high");
  514. break;
  515. case FF_PROFILE_H264_HIGH_10:
  516. x4->profile = av_strdup("high10");
  517. break;
  518. case FF_PROFILE_H264_HIGH_422:
  519. x4->profile = av_strdup("high422");
  520. break;
  521. case FF_PROFILE_H264_HIGH_444:
  522. x4->profile = av_strdup("high444");
  523. break;
  524. case FF_PROFILE_H264_MAIN:
  525. x4->profile = av_strdup("main");
  526. break;
  527. default:
  528. break;
  529. }
  530. if (x4->nal_hrd >= 0)
  531. x4->params.i_nal_hrd = x4->nal_hrd;
  532. if (x4->profile)
  533. if (x264_param_apply_profile(&x4->params, x4->profile) < 0) {
  534. int i;
  535. av_log(avctx, AV_LOG_ERROR, "Error setting profile %s.\n", x4->profile);
  536. av_log(avctx, AV_LOG_INFO, "Possible profiles:");
  537. for (i = 0; x264_profile_names[i]; i++)
  538. av_log(avctx, AV_LOG_INFO, " %s", x264_profile_names[i]);
  539. av_log(avctx, AV_LOG_INFO, "\n");
  540. return AVERROR(EINVAL);
  541. }
  542. x4->params.i_width = avctx->width;
  543. x4->params.i_height = avctx->height;
  544. av_reduce(&sw, &sh, avctx->sample_aspect_ratio.num, avctx->sample_aspect_ratio.den, 4096);
  545. x4->params.vui.i_sar_width = sw;
  546. x4->params.vui.i_sar_height = sh;
  547. x4->params.i_timebase_den = avctx->time_base.den;
  548. x4->params.i_timebase_num = avctx->time_base.num;
  549. x4->params.i_fps_num = avctx->time_base.den;
  550. x4->params.i_fps_den = avctx->time_base.num * avctx->ticks_per_frame;
  551. x4->params.analyse.b_psnr = avctx->flags & CODEC_FLAG_PSNR;
  552. x4->params.i_threads = avctx->thread_count;
  553. if (avctx->thread_type)
  554. x4->params.b_sliced_threads = avctx->thread_type == FF_THREAD_SLICE;
  555. x4->params.b_interlaced = avctx->flags & CODEC_FLAG_INTERLACED_DCT;
  556. x4->params.b_open_gop = !(avctx->flags & CODEC_FLAG_CLOSED_GOP);
  557. x4->params.i_slice_count = avctx->slices;
  558. x4->params.vui.b_fullrange = avctx->pix_fmt == AV_PIX_FMT_YUVJ420P ||
  559. avctx->pix_fmt == AV_PIX_FMT_YUVJ422P ||
  560. avctx->pix_fmt == AV_PIX_FMT_YUVJ444P ||
  561. avctx->color_range == AVCOL_RANGE_JPEG;
  562. if (avctx->colorspace != AVCOL_SPC_UNSPECIFIED)
  563. x4->params.vui.i_colmatrix = avctx->colorspace;
  564. if (avctx->color_primaries != AVCOL_PRI_UNSPECIFIED)
  565. x4->params.vui.i_colorprim = avctx->color_primaries;
  566. if (avctx->color_trc != AVCOL_TRC_UNSPECIFIED)
  567. x4->params.vui.i_transfer = avctx->color_trc;
  568. if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER)
  569. x4->params.b_repeat_headers = 0;
  570. if(x4->x264opts){
  571. const char *p= x4->x264opts;
  572. while(p){
  573. char param[256]={0}, val[256]={0};
  574. if(sscanf(p, "%255[^:=]=%255[^:]", param, val) == 1){
  575. OPT_STR(param, "1");
  576. }else
  577. OPT_STR(param, val);
  578. p= strchr(p, ':');
  579. p+=!!p;
  580. }
  581. }
  582. if (x4->x264_params) {
  583. AVDictionary *dict = NULL;
  584. AVDictionaryEntry *en = NULL;
  585. if (!av_dict_parse_string(&dict, x4->x264_params, "=", ":", 0)) {
  586. while ((en = av_dict_get(dict, "", en, AV_DICT_IGNORE_SUFFIX))) {
  587. if (x264_param_parse(&x4->params, en->key, en->value) < 0)
  588. av_log(avctx, AV_LOG_WARNING,
  589. "Error parsing option '%s = %s'.\n",
  590. en->key, en->value);
  591. }
  592. av_dict_free(&dict);
  593. }
  594. }
  595. // update AVCodecContext with x264 parameters
  596. avctx->has_b_frames = x4->params.i_bframe ?
  597. x4->params.i_bframe_pyramid ? 2 : 1 : 0;
  598. if (avctx->max_b_frames < 0)
  599. avctx->max_b_frames = 0;
  600. avctx->bit_rate = x4->params.rc.i_bitrate*1000;
  601. x4->enc = x264_encoder_open(&x4->params);
  602. if (!x4->enc)
  603. return -1;
  604. avctx->coded_frame = av_frame_alloc();
  605. if (!avctx->coded_frame)
  606. return AVERROR(ENOMEM);
  607. if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER) {
  608. x264_nal_t *nal;
  609. uint8_t *p;
  610. int nnal, s, i;
  611. s = x264_encoder_headers(x4->enc, &nal, &nnal);
  612. avctx->extradata = p = av_malloc(s);
  613. for (i = 0; i < nnal; i++) {
  614. /* Don't put the SEI in extradata. */
  615. if (nal[i].i_type == NAL_SEI) {
  616. av_log(avctx, AV_LOG_INFO, "%s\n", nal[i].p_payload+25);
  617. x4->sei_size = nal[i].i_payload;
  618. x4->sei = av_malloc(x4->sei_size);
  619. memcpy(x4->sei, nal[i].p_payload, nal[i].i_payload);
  620. continue;
  621. }
  622. memcpy(p, nal[i].p_payload, nal[i].i_payload);
  623. p += nal[i].i_payload;
  624. }
  625. avctx->extradata_size = p - avctx->extradata;
  626. }
  627. return 0;
  628. }
  629. static const enum AVPixelFormat pix_fmts_8bit[] = {
  630. AV_PIX_FMT_YUV420P,
  631. AV_PIX_FMT_YUVJ420P,
  632. AV_PIX_FMT_YUV422P,
  633. AV_PIX_FMT_YUVJ422P,
  634. AV_PIX_FMT_YUV444P,
  635. AV_PIX_FMT_YUVJ444P,
  636. AV_PIX_FMT_NV12,
  637. AV_PIX_FMT_NV16,
  638. AV_PIX_FMT_NONE
  639. };
  640. static const enum AVPixelFormat pix_fmts_9bit[] = {
  641. AV_PIX_FMT_YUV420P9,
  642. AV_PIX_FMT_YUV444P9,
  643. AV_PIX_FMT_NONE
  644. };
  645. static const enum AVPixelFormat pix_fmts_10bit[] = {
  646. AV_PIX_FMT_YUV420P10,
  647. AV_PIX_FMT_YUV422P10,
  648. AV_PIX_FMT_YUV444P10,
  649. AV_PIX_FMT_NV20,
  650. AV_PIX_FMT_NONE
  651. };
  652. static const enum AVPixelFormat pix_fmts_8bit_rgb[] = {
  653. #ifdef X264_CSP_BGR
  654. AV_PIX_FMT_BGR24,
  655. AV_PIX_FMT_RGB24,
  656. #endif
  657. AV_PIX_FMT_NONE
  658. };
  659. static av_cold void X264_init_static(AVCodec *codec)
  660. {
  661. if (x264_bit_depth == 8)
  662. codec->pix_fmts = pix_fmts_8bit;
  663. else if (x264_bit_depth == 9)
  664. codec->pix_fmts = pix_fmts_9bit;
  665. else if (x264_bit_depth == 10)
  666. codec->pix_fmts = pix_fmts_10bit;
  667. }
  668. #define OFFSET(x) offsetof(X264Context, x)
  669. #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
  670. static const AVOption options[] = {
  671. { "preset", "Set the encoding preset (cf. x264 --fullhelp)", OFFSET(preset), AV_OPT_TYPE_STRING, { .str = "medium" }, 0, 0, VE},
  672. { "tune", "Tune the encoding params (cf. x264 --fullhelp)", OFFSET(tune), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
  673. { "profile", "Set profile restrictions (cf. x264 --fullhelp) ", OFFSET(profile), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
  674. { "fastfirstpass", "Use fast settings when encoding first pass", OFFSET(fastfirstpass), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, VE},
  675. {"level", "Specify level (as defined by Annex A)", OFFSET(level), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
  676. {"passlogfile", "Filename for 2 pass stats", OFFSET(stats), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
  677. {"wpredp", "Weighted prediction for P-frames", OFFSET(wpredp), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
  678. {"x264opts", "x264 options", OFFSET(x264opts), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
  679. { "crf", "Select the quality for constant quality mode", OFFSET(crf), AV_OPT_TYPE_FLOAT, {.dbl = -1 }, -1, FLT_MAX, VE },
  680. { "crf_max", "In CRF mode, prevents VBV from lowering quality beyond this point.",OFFSET(crf_max), AV_OPT_TYPE_FLOAT, {.dbl = -1 }, -1, FLT_MAX, VE },
  681. { "qp", "Constant quantization parameter rate control method",OFFSET(cqp), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE },
  682. { "aq-mode", "AQ method", OFFSET(aq_mode), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE, "aq_mode"},
  683. { "none", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_NONE}, INT_MIN, INT_MAX, VE, "aq_mode" },
  684. { "variance", "Variance AQ (complexity mask)", 0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_VARIANCE}, INT_MIN, INT_MAX, VE, "aq_mode" },
  685. { "autovariance", "Auto-variance AQ (experimental)", 0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_AUTOVARIANCE}, INT_MIN, INT_MAX, VE, "aq_mode" },
  686. { "aq-strength", "AQ strength. Reduces blocking and blurring in flat and textured areas.", OFFSET(aq_strength), AV_OPT_TYPE_FLOAT, {.dbl = -1}, -1, FLT_MAX, VE},
  687. { "psy", "Use psychovisual optimizations.", OFFSET(psy), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE },
  688. { "psy-rd", "Strength of psychovisual optimization, in <psy-rd>:<psy-trellis> format.", OFFSET(psy_rd), AV_OPT_TYPE_STRING, {0 }, 0, 0, VE},
  689. { "rc-lookahead", "Number of frames to look ahead for frametype and ratecontrol", OFFSET(rc_lookahead), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE },
  690. { "weightb", "Weighted prediction for B-frames.", OFFSET(weightb), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE },
  691. { "weightp", "Weighted prediction analysis method.", OFFSET(weightp), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE, "weightp" },
  692. { "none", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_NONE}, INT_MIN, INT_MAX, VE, "weightp" },
  693. { "simple", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_SIMPLE}, INT_MIN, INT_MAX, VE, "weightp" },
  694. { "smart", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_SMART}, INT_MIN, INT_MAX, VE, "weightp" },
  695. { "ssim", "Calculate and print SSIM stats.", OFFSET(ssim), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE },
  696. { "intra-refresh", "Use Periodic Intra Refresh instead of IDR frames.",OFFSET(intra_refresh),AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE },
  697. { "bluray-compat", "Bluray compatibility workarounds.", OFFSET(bluray_compat) ,AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE },
  698. { "b-bias", "Influences how often B-frames are used", OFFSET(b_bias), AV_OPT_TYPE_INT, { .i64 = INT_MIN}, INT_MIN, INT_MAX, VE },
  699. { "b-pyramid", "Keep some B-frames as references.", OFFSET(b_pyramid), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE, "b_pyramid" },
  700. { "none", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_B_PYRAMID_NONE}, INT_MIN, INT_MAX, VE, "b_pyramid" },
  701. { "strict", "Strictly hierarchical pyramid", 0, AV_OPT_TYPE_CONST, {.i64 = X264_B_PYRAMID_STRICT}, INT_MIN, INT_MAX, VE, "b_pyramid" },
  702. { "normal", "Non-strict (not Blu-ray compatible)", 0, AV_OPT_TYPE_CONST, {.i64 = X264_B_PYRAMID_NORMAL}, INT_MIN, INT_MAX, VE, "b_pyramid" },
  703. { "mixed-refs", "One reference per partition, as opposed to one reference per macroblock", OFFSET(mixed_refs), AV_OPT_TYPE_INT, { .i64 = -1}, -1, 1, VE },
  704. { "8x8dct", "High profile 8x8 transform.", OFFSET(dct8x8), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE},
  705. { "fast-pskip", NULL, OFFSET(fast_pskip), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE},
  706. { "aud", "Use access unit delimiters.", OFFSET(aud), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE},
  707. { "mbtree", "Use macroblock tree ratecontrol.", OFFSET(mbtree), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE},
  708. { "deblock", "Loop filter parameters, in <alpha:beta> form.", OFFSET(deblock), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
  709. { "cplxblur", "Reduce fluctuations in QP (before curve compression)", OFFSET(cplxblur), AV_OPT_TYPE_FLOAT, {.dbl = -1 }, -1, FLT_MAX, VE},
  710. { "partitions", "A comma-separated list of partitions to consider. "
  711. "Possible values: p8x8, p4x4, b8x8, i8x8, i4x4, none, all", OFFSET(partitions), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
  712. { "direct-pred", "Direct MV prediction mode", OFFSET(direct_pred), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE, "direct-pred" },
  713. { "none", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_NONE }, 0, 0, VE, "direct-pred" },
  714. { "spatial", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_SPATIAL }, 0, 0, VE, "direct-pred" },
  715. { "temporal", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_TEMPORAL }, 0, 0, VE, "direct-pred" },
  716. { "auto", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_AUTO }, 0, 0, VE, "direct-pred" },
  717. { "slice-max-size","Limit the size of each slice in bytes", OFFSET(slice_max_size),AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE },
  718. { "stats", "Filename for 2 pass stats", OFFSET(stats), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE },
  719. { "nal-hrd", "Signal HRD information (requires vbv-bufsize; "
  720. "cbr not allowed in .mp4)", OFFSET(nal_hrd), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE, "nal-hrd" },
  721. { "none", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_NONE}, INT_MIN, INT_MAX, VE, "nal-hrd" },
  722. { "vbr", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_VBR}, INT_MIN, INT_MAX, VE, "nal-hrd" },
  723. { "cbr", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_CBR}, INT_MIN, INT_MAX, VE, "nal-hrd" },
  724. { "avcintra-class","AVC-Intra class 50/100/200", OFFSET(avcintra_class),AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 200 , VE},
  725. { "x264-params", "Override the x264 configuration using a :-separated list of key=value parameters", OFFSET(x264_params), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE },
  726. { NULL },
  727. };
  728. static const AVClass x264_class = {
  729. .class_name = "libx264",
  730. .item_name = av_default_item_name,
  731. .option = options,
  732. .version = LIBAVUTIL_VERSION_INT,
  733. };
  734. static const AVClass rgbclass = {
  735. .class_name = "libx264rgb",
  736. .item_name = av_default_item_name,
  737. .option = options,
  738. .version = LIBAVUTIL_VERSION_INT,
  739. };
  740. static const AVCodecDefault x264_defaults[] = {
  741. { "b", "0" },
  742. { "bf", "-1" },
  743. { "flags2", "0" },
  744. { "g", "-1" },
  745. { "i_qfactor", "-1" },
  746. { "b_qfactor", "-1" },
  747. { "qmin", "-1" },
  748. { "qmax", "-1" },
  749. { "qdiff", "-1" },
  750. { "qblur", "-1" },
  751. { "qcomp", "-1" },
  752. // { "rc_lookahead", "-1" },
  753. { "refs", "-1" },
  754. { "sc_threshold", "-1" },
  755. { "trellis", "-1" },
  756. { "nr", "-1" },
  757. { "me_range", "-1" },
  758. { "me_method", "-1" },
  759. { "subq", "-1" },
  760. { "b_strategy", "-1" },
  761. { "keyint_min", "-1" },
  762. { "coder", "-1" },
  763. { "cmp", "-1" },
  764. { "threads", AV_STRINGIFY(X264_THREADS_AUTO) },
  765. { "thread_type", "0" },
  766. { "flags", "+cgop" },
  767. { "rc_init_occupancy","-1" },
  768. { NULL },
  769. };
  770. AVCodec ff_libx264_encoder = {
  771. .name = "libx264",
  772. .long_name = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
  773. .type = AVMEDIA_TYPE_VIDEO,
  774. .id = AV_CODEC_ID_H264,
  775. .priv_data_size = sizeof(X264Context),
  776. .init = X264_init,
  777. .encode2 = X264_frame,
  778. .close = X264_close,
  779. .capabilities = CODEC_CAP_DELAY | CODEC_CAP_AUTO_THREADS,
  780. .priv_class = &x264_class,
  781. .defaults = x264_defaults,
  782. .init_static_data = X264_init_static,
  783. };
  784. AVCodec ff_libx264rgb_encoder = {
  785. .name = "libx264rgb",
  786. .long_name = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 RGB"),
  787. .type = AVMEDIA_TYPE_VIDEO,
  788. .id = AV_CODEC_ID_H264,
  789. .priv_data_size = sizeof(X264Context),
  790. .init = X264_init,
  791. .encode2 = X264_frame,
  792. .close = X264_close,
  793. .capabilities = CODEC_CAP_DELAY | CODEC_CAP_AUTO_THREADS,
  794. .priv_class = &rgbclass,
  795. .defaults = x264_defaults,
  796. .pix_fmts = pix_fmts_8bit_rgb,
  797. };