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.

1071 lines
42KB

  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 "libavutil/intreadwrite.h"
  28. #include "avcodec.h"
  29. #include "internal.h"
  30. #if defined(_MSC_VER)
  31. #define X264_API_IMPORTS 1
  32. #endif
  33. #include <x264.h>
  34. #include <float.h>
  35. #include <math.h>
  36. #include <stdio.h>
  37. #include <stdlib.h>
  38. #include <string.h>
  39. typedef struct X264Context {
  40. AVClass *class;
  41. x264_param_t params;
  42. x264_t *enc;
  43. x264_picture_t pic;
  44. uint8_t *sei;
  45. int sei_size;
  46. char *preset;
  47. char *tune;
  48. char *profile;
  49. char *level;
  50. int fastfirstpass;
  51. char *wpredp;
  52. char *x264opts;
  53. float crf;
  54. float crf_max;
  55. int cqp;
  56. int aq_mode;
  57. float aq_strength;
  58. char *psy_rd;
  59. int psy;
  60. int rc_lookahead;
  61. int weightp;
  62. int weightb;
  63. int ssim;
  64. int intra_refresh;
  65. int bluray_compat;
  66. int b_bias;
  67. int b_pyramid;
  68. int mixed_refs;
  69. int dct8x8;
  70. int fast_pskip;
  71. int aud;
  72. int mbtree;
  73. char *deblock;
  74. float cplxblur;
  75. char *partitions;
  76. int direct_pred;
  77. int slice_max_size;
  78. char *stats;
  79. int nal_hrd;
  80. int avcintra_class;
  81. int motion_est;
  82. int forced_idr;
  83. int coder;
  84. int a53_cc;
  85. char *x264_params;
  86. } X264Context;
  87. static void X264_log(void *p, int level, const char *fmt, va_list args)
  88. {
  89. static const int level_map[] = {
  90. [X264_LOG_ERROR] = AV_LOG_ERROR,
  91. [X264_LOG_WARNING] = AV_LOG_WARNING,
  92. [X264_LOG_INFO] = AV_LOG_INFO,
  93. [X264_LOG_DEBUG] = AV_LOG_DEBUG
  94. };
  95. if (level < 0 || level > X264_LOG_DEBUG)
  96. return;
  97. av_vlog(p, level_map[level], fmt, args);
  98. }
  99. static int encode_nals(AVCodecContext *ctx, AVPacket *pkt,
  100. const x264_nal_t *nals, int nnal)
  101. {
  102. X264Context *x4 = ctx->priv_data;
  103. uint8_t *p;
  104. int i, size = x4->sei_size, ret;
  105. if (!nnal)
  106. return 0;
  107. for (i = 0; i < nnal; i++)
  108. size += nals[i].i_payload;
  109. if ((ret = ff_alloc_packet2(ctx, pkt, size, 0)) < 0)
  110. return ret;
  111. p = pkt->data;
  112. /* Write the SEI as part of the first frame. */
  113. if (x4->sei_size > 0 && nnal > 0) {
  114. if (x4->sei_size > size) {
  115. av_log(ctx, AV_LOG_ERROR, "Error: nal buffer is too small\n");
  116. return -1;
  117. }
  118. memcpy(p, x4->sei, x4->sei_size);
  119. p += x4->sei_size;
  120. x4->sei_size = 0;
  121. av_freep(&x4->sei);
  122. }
  123. for (i = 0; i < nnal; i++){
  124. memcpy(p, nals[i].p_payload, nals[i].i_payload);
  125. p += nals[i].i_payload;
  126. }
  127. return 1;
  128. }
  129. static int avfmt2_num_planes(int avfmt)
  130. {
  131. switch (avfmt) {
  132. case AV_PIX_FMT_YUV420P:
  133. case AV_PIX_FMT_YUVJ420P:
  134. case AV_PIX_FMT_YUV420P9:
  135. case AV_PIX_FMT_YUV420P10:
  136. case AV_PIX_FMT_YUV444P:
  137. return 3;
  138. case AV_PIX_FMT_BGR0:
  139. case AV_PIX_FMT_BGR24:
  140. case AV_PIX_FMT_RGB24:
  141. return 1;
  142. default:
  143. return 3;
  144. }
  145. }
  146. static void reconfig_encoder(AVCodecContext *ctx, const AVFrame *frame)
  147. {
  148. X264Context *x4 = ctx->priv_data;
  149. AVFrameSideData *side_data;
  150. if (x4->avcintra_class < 0) {
  151. if (x4->params.b_interlaced && x4->params.b_tff != frame->top_field_first) {
  152. x4->params.b_tff = frame->top_field_first;
  153. x264_encoder_reconfig(x4->enc, &x4->params);
  154. }
  155. if (x4->params.vui.i_sar_height*ctx->sample_aspect_ratio.num != ctx->sample_aspect_ratio.den * x4->params.vui.i_sar_width) {
  156. x4->params.vui.i_sar_height = ctx->sample_aspect_ratio.den;
  157. x4->params.vui.i_sar_width = ctx->sample_aspect_ratio.num;
  158. x264_encoder_reconfig(x4->enc, &x4->params);
  159. }
  160. if (x4->params.rc.i_vbv_buffer_size != ctx->rc_buffer_size / 1000 ||
  161. x4->params.rc.i_vbv_max_bitrate != ctx->rc_max_rate / 1000) {
  162. x4->params.rc.i_vbv_buffer_size = ctx->rc_buffer_size / 1000;
  163. x4->params.rc.i_vbv_max_bitrate = ctx->rc_max_rate / 1000;
  164. x264_encoder_reconfig(x4->enc, &x4->params);
  165. }
  166. if (x4->params.rc.i_rc_method == X264_RC_ABR &&
  167. x4->params.rc.i_bitrate != ctx->bit_rate / 1000) {
  168. x4->params.rc.i_bitrate = ctx->bit_rate / 1000;
  169. x264_encoder_reconfig(x4->enc, &x4->params);
  170. }
  171. if (x4->crf >= 0 &&
  172. x4->params.rc.i_rc_method == X264_RC_CRF &&
  173. x4->params.rc.f_rf_constant != x4->crf) {
  174. x4->params.rc.f_rf_constant = x4->crf;
  175. x264_encoder_reconfig(x4->enc, &x4->params);
  176. }
  177. if (x4->params.rc.i_rc_method == X264_RC_CQP &&
  178. x4->cqp >= 0 &&
  179. x4->params.rc.i_qp_constant != x4->cqp) {
  180. x4->params.rc.i_qp_constant = x4->cqp;
  181. x264_encoder_reconfig(x4->enc, &x4->params);
  182. }
  183. if (x4->crf_max >= 0 &&
  184. x4->params.rc.f_rf_constant_max != x4->crf_max) {
  185. x4->params.rc.f_rf_constant_max = x4->crf_max;
  186. x264_encoder_reconfig(x4->enc, &x4->params);
  187. }
  188. }
  189. side_data = av_frame_get_side_data(frame, AV_FRAME_DATA_STEREO3D);
  190. if (side_data) {
  191. AVStereo3D *stereo = (AVStereo3D *)side_data->data;
  192. int fpa_type;
  193. switch (stereo->type) {
  194. case AV_STEREO3D_CHECKERBOARD:
  195. fpa_type = 0;
  196. break;
  197. case AV_STEREO3D_COLUMNS:
  198. fpa_type = 1;
  199. break;
  200. case AV_STEREO3D_LINES:
  201. fpa_type = 2;
  202. break;
  203. case AV_STEREO3D_SIDEBYSIDE:
  204. fpa_type = 3;
  205. break;
  206. case AV_STEREO3D_TOPBOTTOM:
  207. fpa_type = 4;
  208. break;
  209. case AV_STEREO3D_FRAMESEQUENCE:
  210. fpa_type = 5;
  211. break;
  212. default:
  213. fpa_type = -1;
  214. break;
  215. }
  216. if (fpa_type != x4->params.i_frame_packing) {
  217. x4->params.i_frame_packing = fpa_type;
  218. x264_encoder_reconfig(x4->enc, &x4->params);
  219. }
  220. }
  221. }
  222. static int X264_frame(AVCodecContext *ctx, AVPacket *pkt, const AVFrame *frame,
  223. int *got_packet)
  224. {
  225. X264Context *x4 = ctx->priv_data;
  226. x264_nal_t *nal;
  227. int nnal, i, ret;
  228. x264_picture_t pic_out = {0};
  229. int pict_type;
  230. AVFrameSideData *side_data;
  231. x264_picture_init( &x4->pic );
  232. x4->pic.img.i_csp = x4->params.i_csp;
  233. if (x264_bit_depth > 8)
  234. x4->pic.img.i_csp |= X264_CSP_HIGH_DEPTH;
  235. x4->pic.img.i_plane = avfmt2_num_planes(ctx->pix_fmt);
  236. if (frame) {
  237. for (i = 0; i < x4->pic.img.i_plane; i++) {
  238. x4->pic.img.plane[i] = frame->data[i];
  239. x4->pic.img.i_stride[i] = frame->linesize[i];
  240. }
  241. x4->pic.i_pts = frame->pts;
  242. switch (frame->pict_type) {
  243. case AV_PICTURE_TYPE_I:
  244. x4->pic.i_type = x4->forced_idr >= 0 ? X264_TYPE_IDR
  245. : X264_TYPE_KEYFRAME;
  246. break;
  247. case AV_PICTURE_TYPE_P:
  248. x4->pic.i_type = X264_TYPE_P;
  249. break;
  250. case AV_PICTURE_TYPE_B:
  251. x4->pic.i_type = X264_TYPE_B;
  252. break;
  253. default:
  254. x4->pic.i_type = X264_TYPE_AUTO;
  255. break;
  256. }
  257. reconfig_encoder(ctx, frame);
  258. if (x4->a53_cc) {
  259. side_data = av_frame_get_side_data(frame, AV_FRAME_DATA_A53_CC);
  260. if (side_data) {
  261. x4->pic.extra_sei.payloads = av_mallocz(sizeof(x4->pic.extra_sei.payloads[0]));
  262. if (x4->pic.extra_sei.payloads == NULL) {
  263. av_log(ctx, AV_LOG_ERROR, "Not enough memory for closed captions, skipping\n");
  264. goto skip_a53cc;
  265. }
  266. x4->pic.extra_sei.sei_free = av_free;
  267. x4->pic.extra_sei.payloads[0].payload_size = side_data->size + 11;
  268. x4->pic.extra_sei.payloads[0].payload = av_mallocz(x4->pic.extra_sei.payloads[0].payload_size);
  269. if (x4->pic.extra_sei.payloads[0].payload == NULL) {
  270. av_log(ctx, AV_LOG_ERROR, "Not enough memory for closed captions, skipping\n");
  271. av_freep(&x4->pic.extra_sei.payloads);
  272. goto skip_a53cc;
  273. }
  274. x4->pic.extra_sei.num_payloads = 1;
  275. x4->pic.extra_sei.payloads[0].payload_type = 4;
  276. memcpy(x4->pic.extra_sei.payloads[0].payload + 10, side_data->data, side_data->size);
  277. x4->pic.extra_sei.payloads[0].payload[0] = 181;
  278. x4->pic.extra_sei.payloads[0].payload[1] = 0;
  279. x4->pic.extra_sei.payloads[0].payload[2] = 49;
  280. /**
  281. * 'GA94' is standard in North America for ATSC, but hard coding
  282. * this style may not be the right thing to do -- other formats
  283. * do exist. This information is not available in the side_data
  284. * so we are going with this right now.
  285. */
  286. AV_WL32(x4->pic.extra_sei.payloads[0].payload + 3,
  287. MKTAG('G', 'A', '9', '4'));
  288. x4->pic.extra_sei.payloads[0].payload[7] = 3;
  289. x4->pic.extra_sei.payloads[0].payload[8] =
  290. ((side_data->size/3) & 0x1f) | 0x40;
  291. x4->pic.extra_sei.payloads[0].payload[9] = 0;
  292. x4->pic.extra_sei.payloads[0].payload[side_data->size+10] = 255;
  293. }
  294. }
  295. }
  296. skip_a53cc:
  297. do {
  298. if (x264_encoder_encode(x4->enc, &nal, &nnal, frame? &x4->pic: NULL, &pic_out) < 0)
  299. return AVERROR_EXTERNAL;
  300. ret = encode_nals(ctx, pkt, nal, nnal);
  301. if (ret < 0)
  302. return ret;
  303. } while (!ret && !frame && x264_encoder_delayed_frames(x4->enc));
  304. pkt->pts = pic_out.i_pts;
  305. pkt->dts = pic_out.i_dts;
  306. switch (pic_out.i_type) {
  307. case X264_TYPE_IDR:
  308. case X264_TYPE_I:
  309. pict_type = AV_PICTURE_TYPE_I;
  310. break;
  311. case X264_TYPE_P:
  312. pict_type = AV_PICTURE_TYPE_P;
  313. break;
  314. case X264_TYPE_B:
  315. case X264_TYPE_BREF:
  316. pict_type = AV_PICTURE_TYPE_B;
  317. break;
  318. default:
  319. pict_type = AV_PICTURE_TYPE_NONE;
  320. }
  321. #if FF_API_CODED_FRAME
  322. FF_DISABLE_DEPRECATION_WARNINGS
  323. ctx->coded_frame->pict_type = pict_type;
  324. FF_ENABLE_DEPRECATION_WARNINGS
  325. #endif
  326. pkt->flags |= AV_PKT_FLAG_KEY*pic_out.b_keyframe;
  327. if (ret) {
  328. ff_side_data_set_encoder_stats(pkt, (pic_out.i_qpplus1 - 1) * FF_QP2LAMBDA, NULL, 0, pict_type);
  329. #if FF_API_CODED_FRAME
  330. FF_DISABLE_DEPRECATION_WARNINGS
  331. ctx->coded_frame->quality = (pic_out.i_qpplus1 - 1) * FF_QP2LAMBDA;
  332. FF_ENABLE_DEPRECATION_WARNINGS
  333. #endif
  334. }
  335. *got_packet = ret;
  336. return 0;
  337. }
  338. static av_cold int X264_close(AVCodecContext *avctx)
  339. {
  340. X264Context *x4 = avctx->priv_data;
  341. av_freep(&avctx->extradata);
  342. av_freep(&x4->sei);
  343. if (x4->enc) {
  344. x264_encoder_close(x4->enc);
  345. x4->enc = NULL;
  346. }
  347. return 0;
  348. }
  349. #define OPT_STR(opt, param) \
  350. do { \
  351. int ret; \
  352. if ((ret = x264_param_parse(&x4->params, opt, param)) < 0) { \
  353. if(ret == X264_PARAM_BAD_NAME) \
  354. av_log(avctx, AV_LOG_ERROR, \
  355. "bad option '%s': '%s'\n", opt, param); \
  356. else \
  357. av_log(avctx, AV_LOG_ERROR, \
  358. "bad value for '%s': '%s'\n", opt, param); \
  359. return -1; \
  360. } \
  361. } while (0)
  362. static int convert_pix_fmt(enum AVPixelFormat pix_fmt)
  363. {
  364. switch (pix_fmt) {
  365. case AV_PIX_FMT_YUV420P:
  366. case AV_PIX_FMT_YUVJ420P:
  367. case AV_PIX_FMT_YUV420P9:
  368. case AV_PIX_FMT_YUV420P10: return X264_CSP_I420;
  369. case AV_PIX_FMT_YUV422P:
  370. case AV_PIX_FMT_YUVJ422P:
  371. case AV_PIX_FMT_YUV422P10: return X264_CSP_I422;
  372. case AV_PIX_FMT_YUV444P:
  373. case AV_PIX_FMT_YUVJ444P:
  374. case AV_PIX_FMT_YUV444P9:
  375. case AV_PIX_FMT_YUV444P10: return X264_CSP_I444;
  376. #ifdef X264_CSP_BGR
  377. case AV_PIX_FMT_BGR0:
  378. return X264_CSP_BGRA;
  379. case AV_PIX_FMT_BGR24:
  380. return X264_CSP_BGR;
  381. case AV_PIX_FMT_RGB24:
  382. return X264_CSP_RGB;
  383. #endif
  384. case AV_PIX_FMT_NV12: return X264_CSP_NV12;
  385. case AV_PIX_FMT_NV16:
  386. case AV_PIX_FMT_NV20: return X264_CSP_NV16;
  387. #ifdef X264_CSP_NV21
  388. case AV_PIX_FMT_NV21: return X264_CSP_NV21;
  389. #endif
  390. };
  391. return 0;
  392. }
  393. #define PARSE_X264_OPT(name, var)\
  394. if (x4->var && x264_param_parse(&x4->params, name, x4->var) < 0) {\
  395. av_log(avctx, AV_LOG_ERROR, "Error parsing option '%s' with value '%s'.\n", name, x4->var);\
  396. return AVERROR(EINVAL);\
  397. }
  398. static av_cold int X264_init(AVCodecContext *avctx)
  399. {
  400. X264Context *x4 = avctx->priv_data;
  401. AVCPBProperties *cpb_props;
  402. int sw,sh;
  403. if (avctx->global_quality > 0)
  404. av_log(avctx, AV_LOG_WARNING, "-qscale is ignored, -crf is recommended.\n");
  405. #if CONFIG_LIBX262_ENCODER
  406. if (avctx->codec_id == AV_CODEC_ID_MPEG2VIDEO) {
  407. x4->params.b_mpeg2 = 1;
  408. x264_param_default_mpeg2(&x4->params);
  409. } else
  410. #endif
  411. x264_param_default(&x4->params);
  412. x4->params.b_deblocking_filter = avctx->flags & AV_CODEC_FLAG_LOOP_FILTER;
  413. if (x4->preset || x4->tune)
  414. if (x264_param_default_preset(&x4->params, x4->preset, x4->tune) < 0) {
  415. int i;
  416. av_log(avctx, AV_LOG_ERROR, "Error setting preset/tune %s/%s.\n", x4->preset, x4->tune);
  417. av_log(avctx, AV_LOG_INFO, "Possible presets:");
  418. for (i = 0; x264_preset_names[i]; i++)
  419. av_log(avctx, AV_LOG_INFO, " %s", x264_preset_names[i]);
  420. av_log(avctx, AV_LOG_INFO, "\n");
  421. av_log(avctx, AV_LOG_INFO, "Possible tunes:");
  422. for (i = 0; x264_tune_names[i]; i++)
  423. av_log(avctx, AV_LOG_INFO, " %s", x264_tune_names[i]);
  424. av_log(avctx, AV_LOG_INFO, "\n");
  425. return AVERROR(EINVAL);
  426. }
  427. if (avctx->level > 0)
  428. x4->params.i_level_idc = avctx->level;
  429. x4->params.pf_log = X264_log;
  430. x4->params.p_log_private = avctx;
  431. x4->params.i_log_level = X264_LOG_DEBUG;
  432. x4->params.i_csp = convert_pix_fmt(avctx->pix_fmt);
  433. PARSE_X264_OPT("weightp", wpredp);
  434. if (avctx->bit_rate) {
  435. x4->params.rc.i_bitrate = avctx->bit_rate / 1000;
  436. x4->params.rc.i_rc_method = X264_RC_ABR;
  437. }
  438. x4->params.rc.i_vbv_buffer_size = avctx->rc_buffer_size / 1000;
  439. x4->params.rc.i_vbv_max_bitrate = avctx->rc_max_rate / 1000;
  440. x4->params.rc.b_stat_write = avctx->flags & AV_CODEC_FLAG_PASS1;
  441. if (avctx->flags & AV_CODEC_FLAG_PASS2) {
  442. x4->params.rc.b_stat_read = 1;
  443. } else {
  444. if (x4->crf >= 0) {
  445. x4->params.rc.i_rc_method = X264_RC_CRF;
  446. x4->params.rc.f_rf_constant = x4->crf;
  447. } else if (x4->cqp >= 0) {
  448. x4->params.rc.i_rc_method = X264_RC_CQP;
  449. x4->params.rc.i_qp_constant = x4->cqp;
  450. }
  451. if (x4->crf_max >= 0)
  452. x4->params.rc.f_rf_constant_max = x4->crf_max;
  453. }
  454. if (avctx->rc_buffer_size && avctx->rc_initial_buffer_occupancy > 0 &&
  455. (avctx->rc_initial_buffer_occupancy <= avctx->rc_buffer_size)) {
  456. x4->params.rc.f_vbv_buffer_init =
  457. (float)avctx->rc_initial_buffer_occupancy / avctx->rc_buffer_size;
  458. }
  459. PARSE_X264_OPT("level", level);
  460. if (avctx->i_quant_factor > 0)
  461. x4->params.rc.f_ip_factor = 1 / fabs(avctx->i_quant_factor);
  462. if (avctx->b_quant_factor > 0)
  463. x4->params.rc.f_pb_factor = avctx->b_quant_factor;
  464. if (avctx->chromaoffset)
  465. x4->params.analyse.i_chroma_qp_offset = avctx->chromaoffset;
  466. if (avctx->gop_size >= 0)
  467. x4->params.i_keyint_max = avctx->gop_size;
  468. if (avctx->max_b_frames >= 0)
  469. x4->params.i_bframe = avctx->max_b_frames;
  470. if (avctx->scenechange_threshold >= 0)
  471. x4->params.i_scenecut_threshold = avctx->scenechange_threshold;
  472. if (avctx->qmin >= 0)
  473. x4->params.rc.i_qp_min = avctx->qmin;
  474. if (avctx->qmax >= 0)
  475. x4->params.rc.i_qp_max = avctx->qmax;
  476. if (avctx->max_qdiff >= 0)
  477. x4->params.rc.i_qp_step = avctx->max_qdiff;
  478. if (avctx->qblur >= 0)
  479. x4->params.rc.f_qblur = avctx->qblur; /* temporally blur quants */
  480. if (avctx->qcompress >= 0)
  481. x4->params.rc.f_qcompress = avctx->qcompress; /* 0.0 => cbr, 1.0 => constant qp */
  482. if (avctx->refs >= 0)
  483. x4->params.i_frame_reference = avctx->refs;
  484. else if (x4->level) {
  485. int i;
  486. int mbn = AV_CEIL_RSHIFT(avctx->width, 4) * AV_CEIL_RSHIFT(avctx->height, 4);
  487. int level_id = -1;
  488. char *tail;
  489. int scale = X264_BUILD < 129 ? 384 : 1;
  490. if (!strcmp(x4->level, "1b")) {
  491. level_id = 9;
  492. } else if (strlen(x4->level) <= 3){
  493. level_id = av_strtod(x4->level, &tail) * 10 + 0.5;
  494. if (*tail)
  495. level_id = -1;
  496. }
  497. if (level_id <= 0)
  498. av_log(avctx, AV_LOG_WARNING, "Failed to parse level\n");
  499. for (i = 0; i<x264_levels[i].level_idc; i++)
  500. if (x264_levels[i].level_idc == level_id)
  501. x4->params.i_frame_reference = av_clip(x264_levels[i].dpb / mbn / scale, 1, x4->params.i_frame_reference);
  502. }
  503. if (avctx->trellis >= 0)
  504. x4->params.analyse.i_trellis = avctx->trellis;
  505. if (avctx->me_range >= 0)
  506. x4->params.analyse.i_me_range = avctx->me_range;
  507. if (avctx->noise_reduction >= 0)
  508. x4->params.analyse.i_noise_reduction = avctx->noise_reduction;
  509. if (avctx->me_subpel_quality >= 0)
  510. x4->params.analyse.i_subpel_refine = avctx->me_subpel_quality;
  511. if (avctx->b_frame_strategy >= 0)
  512. x4->params.i_bframe_adaptive = avctx->b_frame_strategy;
  513. if (avctx->keyint_min >= 0)
  514. x4->params.i_keyint_min = avctx->keyint_min;
  515. #if FF_API_CODER_TYPE
  516. FF_DISABLE_DEPRECATION_WARNINGS
  517. if (avctx->coder_type >= 0)
  518. x4->coder = avctx->coder_type == FF_CODER_TYPE_AC;
  519. FF_ENABLE_DEPRECATION_WARNINGS
  520. #endif
  521. if (avctx->me_cmp >= 0)
  522. x4->params.analyse.b_chroma_me = avctx->me_cmp & FF_CMP_CHROMA;
  523. if (x4->aq_mode >= 0)
  524. x4->params.rc.i_aq_mode = x4->aq_mode;
  525. if (x4->aq_strength >= 0)
  526. x4->params.rc.f_aq_strength = x4->aq_strength;
  527. PARSE_X264_OPT("psy-rd", psy_rd);
  528. PARSE_X264_OPT("deblock", deblock);
  529. PARSE_X264_OPT("partitions", partitions);
  530. PARSE_X264_OPT("stats", stats);
  531. if (x4->psy >= 0)
  532. x4->params.analyse.b_psy = x4->psy;
  533. if (x4->rc_lookahead >= 0)
  534. x4->params.rc.i_lookahead = x4->rc_lookahead;
  535. if (x4->weightp >= 0)
  536. x4->params.analyse.i_weighted_pred = x4->weightp;
  537. if (x4->weightb >= 0)
  538. x4->params.analyse.b_weighted_bipred = x4->weightb;
  539. if (x4->cplxblur >= 0)
  540. x4->params.rc.f_complexity_blur = x4->cplxblur;
  541. if (x4->ssim >= 0)
  542. x4->params.analyse.b_ssim = x4->ssim;
  543. if (x4->intra_refresh >= 0)
  544. x4->params.b_intra_refresh = x4->intra_refresh;
  545. if (x4->bluray_compat >= 0) {
  546. x4->params.b_bluray_compat = x4->bluray_compat;
  547. x4->params.b_vfr_input = 0;
  548. }
  549. if (x4->avcintra_class >= 0)
  550. #if X264_BUILD >= 142
  551. x4->params.i_avcintra_class = x4->avcintra_class;
  552. #else
  553. av_log(avctx, AV_LOG_ERROR,
  554. "x264 too old for AVC Intra, at least version 142 needed\n");
  555. #endif
  556. if (x4->b_bias != INT_MIN)
  557. x4->params.i_bframe_bias = x4->b_bias;
  558. if (x4->b_pyramid >= 0)
  559. x4->params.i_bframe_pyramid = x4->b_pyramid;
  560. if (x4->mixed_refs >= 0)
  561. x4->params.analyse.b_mixed_references = x4->mixed_refs;
  562. if (x4->dct8x8 >= 0)
  563. x4->params.analyse.b_transform_8x8 = x4->dct8x8;
  564. if (x4->fast_pskip >= 0)
  565. x4->params.analyse.b_fast_pskip = x4->fast_pskip;
  566. if (x4->aud >= 0)
  567. x4->params.b_aud = x4->aud;
  568. if (x4->mbtree >= 0)
  569. x4->params.rc.b_mb_tree = x4->mbtree;
  570. if (x4->direct_pred >= 0)
  571. x4->params.analyse.i_direct_mv_pred = x4->direct_pred;
  572. if (x4->slice_max_size >= 0)
  573. x4->params.i_slice_max_size = x4->slice_max_size;
  574. else {
  575. /*
  576. * Allow x264 to be instructed through AVCodecContext about the maximum
  577. * size of the RTP payload. For example, this enables the production of
  578. * payload suitable for the H.264 RTP packetization-mode 0 i.e. single
  579. * NAL unit per RTP packet.
  580. */
  581. if (avctx->rtp_payload_size)
  582. x4->params.i_slice_max_size = avctx->rtp_payload_size;
  583. }
  584. if (x4->fastfirstpass)
  585. x264_param_apply_fastfirstpass(&x4->params);
  586. /* Allow specifying the x264 profile through AVCodecContext. */
  587. if (!x4->profile)
  588. switch (avctx->profile) {
  589. case FF_PROFILE_H264_BASELINE:
  590. x4->profile = av_strdup("baseline");
  591. break;
  592. case FF_PROFILE_H264_HIGH:
  593. x4->profile = av_strdup("high");
  594. break;
  595. case FF_PROFILE_H264_HIGH_10:
  596. x4->profile = av_strdup("high10");
  597. break;
  598. case FF_PROFILE_H264_HIGH_422:
  599. x4->profile = av_strdup("high422");
  600. break;
  601. case FF_PROFILE_H264_HIGH_444:
  602. x4->profile = av_strdup("high444");
  603. break;
  604. case FF_PROFILE_H264_MAIN:
  605. x4->profile = av_strdup("main");
  606. break;
  607. default:
  608. break;
  609. }
  610. if (x4->nal_hrd >= 0)
  611. x4->params.i_nal_hrd = x4->nal_hrd;
  612. if (x4->motion_est >= 0) {
  613. x4->params.analyse.i_me_method = x4->motion_est;
  614. #if FF_API_MOTION_EST
  615. FF_DISABLE_DEPRECATION_WARNINGS
  616. } else {
  617. if (avctx->me_method == ME_EPZS)
  618. x4->params.analyse.i_me_method = X264_ME_DIA;
  619. else if (avctx->me_method == ME_HEX)
  620. x4->params.analyse.i_me_method = X264_ME_HEX;
  621. else if (avctx->me_method == ME_UMH)
  622. x4->params.analyse.i_me_method = X264_ME_UMH;
  623. else if (avctx->me_method == ME_FULL)
  624. x4->params.analyse.i_me_method = X264_ME_ESA;
  625. else if (avctx->me_method == ME_TESA)
  626. x4->params.analyse.i_me_method = X264_ME_TESA;
  627. FF_ENABLE_DEPRECATION_WARNINGS
  628. #endif
  629. }
  630. if (x4->coder >= 0)
  631. x4->params.b_cabac = x4->coder;
  632. if (x4->profile)
  633. if (x264_param_apply_profile(&x4->params, x4->profile) < 0) {
  634. int i;
  635. av_log(avctx, AV_LOG_ERROR, "Error setting profile %s.\n", x4->profile);
  636. av_log(avctx, AV_LOG_INFO, "Possible profiles:");
  637. for (i = 0; x264_profile_names[i]; i++)
  638. av_log(avctx, AV_LOG_INFO, " %s", x264_profile_names[i]);
  639. av_log(avctx, AV_LOG_INFO, "\n");
  640. return AVERROR(EINVAL);
  641. }
  642. x4->params.i_width = avctx->width;
  643. x4->params.i_height = avctx->height;
  644. av_reduce(&sw, &sh, avctx->sample_aspect_ratio.num, avctx->sample_aspect_ratio.den, 4096);
  645. x4->params.vui.i_sar_width = sw;
  646. x4->params.vui.i_sar_height = sh;
  647. x4->params.i_timebase_den = avctx->time_base.den;
  648. x4->params.i_timebase_num = avctx->time_base.num;
  649. x4->params.i_fps_num = avctx->time_base.den;
  650. x4->params.i_fps_den = avctx->time_base.num * avctx->ticks_per_frame;
  651. x4->params.analyse.b_psnr = avctx->flags & AV_CODEC_FLAG_PSNR;
  652. x4->params.i_threads = avctx->thread_count;
  653. if (avctx->thread_type)
  654. x4->params.b_sliced_threads = avctx->thread_type == FF_THREAD_SLICE;
  655. x4->params.b_interlaced = avctx->flags & AV_CODEC_FLAG_INTERLACED_DCT;
  656. x4->params.b_open_gop = !(avctx->flags & AV_CODEC_FLAG_CLOSED_GOP);
  657. x4->params.i_slice_count = avctx->slices;
  658. x4->params.vui.b_fullrange = avctx->pix_fmt == AV_PIX_FMT_YUVJ420P ||
  659. avctx->pix_fmt == AV_PIX_FMT_YUVJ422P ||
  660. avctx->pix_fmt == AV_PIX_FMT_YUVJ444P ||
  661. avctx->color_range == AVCOL_RANGE_JPEG;
  662. if (avctx->colorspace != AVCOL_SPC_UNSPECIFIED)
  663. x4->params.vui.i_colmatrix = avctx->colorspace;
  664. if (avctx->color_primaries != AVCOL_PRI_UNSPECIFIED)
  665. x4->params.vui.i_colorprim = avctx->color_primaries;
  666. if (avctx->color_trc != AVCOL_TRC_UNSPECIFIED)
  667. x4->params.vui.i_transfer = avctx->color_trc;
  668. if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER)
  669. x4->params.b_repeat_headers = 0;
  670. if(x4->x264opts){
  671. const char *p= x4->x264opts;
  672. while(p){
  673. char param[256]={0}, val[256]={0};
  674. if(sscanf(p, "%255[^:=]=%255[^:]", param, val) == 1){
  675. OPT_STR(param, "1");
  676. }else
  677. OPT_STR(param, val);
  678. p= strchr(p, ':');
  679. p+=!!p;
  680. }
  681. }
  682. if (x4->x264_params) {
  683. AVDictionary *dict = NULL;
  684. AVDictionaryEntry *en = NULL;
  685. if (!av_dict_parse_string(&dict, x4->x264_params, "=", ":", 0)) {
  686. while ((en = av_dict_get(dict, "", en, AV_DICT_IGNORE_SUFFIX))) {
  687. if (x264_param_parse(&x4->params, en->key, en->value) < 0)
  688. av_log(avctx, AV_LOG_WARNING,
  689. "Error parsing option '%s = %s'.\n",
  690. en->key, en->value);
  691. }
  692. av_dict_free(&dict);
  693. }
  694. }
  695. // update AVCodecContext with x264 parameters
  696. avctx->has_b_frames = x4->params.i_bframe ?
  697. x4->params.i_bframe_pyramid ? 2 : 1 : 0;
  698. if (avctx->max_b_frames < 0)
  699. avctx->max_b_frames = 0;
  700. avctx->bit_rate = x4->params.rc.i_bitrate*1000;
  701. x4->enc = x264_encoder_open(&x4->params);
  702. if (!x4->enc)
  703. return AVERROR_EXTERNAL;
  704. if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER) {
  705. x264_nal_t *nal;
  706. uint8_t *p;
  707. int nnal, s, i;
  708. s = x264_encoder_headers(x4->enc, &nal, &nnal);
  709. avctx->extradata = p = av_mallocz(s + AV_INPUT_BUFFER_PADDING_SIZE);
  710. if (!p)
  711. return AVERROR(ENOMEM);
  712. for (i = 0; i < nnal; i++) {
  713. /* Don't put the SEI in extradata. */
  714. if (nal[i].i_type == NAL_SEI) {
  715. av_log(avctx, AV_LOG_INFO, "%s\n", nal[i].p_payload+25);
  716. x4->sei_size = nal[i].i_payload;
  717. x4->sei = av_malloc(x4->sei_size);
  718. if (!x4->sei)
  719. return AVERROR(ENOMEM);
  720. memcpy(x4->sei, nal[i].p_payload, nal[i].i_payload);
  721. continue;
  722. }
  723. memcpy(p, nal[i].p_payload, nal[i].i_payload);
  724. p += nal[i].i_payload;
  725. }
  726. avctx->extradata_size = p - avctx->extradata;
  727. }
  728. cpb_props = ff_add_cpb_side_data(avctx);
  729. if (!cpb_props)
  730. return AVERROR(ENOMEM);
  731. cpb_props->buffer_size = x4->params.rc.i_vbv_buffer_size * 1000;
  732. cpb_props->max_bitrate = x4->params.rc.i_vbv_max_bitrate * 1000;
  733. cpb_props->avg_bitrate = x4->params.rc.i_bitrate * 1000;
  734. return 0;
  735. }
  736. static const enum AVPixelFormat pix_fmts_8bit[] = {
  737. AV_PIX_FMT_YUV420P,
  738. AV_PIX_FMT_YUVJ420P,
  739. AV_PIX_FMT_YUV422P,
  740. AV_PIX_FMT_YUVJ422P,
  741. AV_PIX_FMT_YUV444P,
  742. AV_PIX_FMT_YUVJ444P,
  743. AV_PIX_FMT_NV12,
  744. AV_PIX_FMT_NV16,
  745. #ifdef X264_CSP_NV21
  746. AV_PIX_FMT_NV21,
  747. #endif
  748. AV_PIX_FMT_NONE
  749. };
  750. static const enum AVPixelFormat pix_fmts_9bit[] = {
  751. AV_PIX_FMT_YUV420P9,
  752. AV_PIX_FMT_YUV444P9,
  753. AV_PIX_FMT_NONE
  754. };
  755. static const enum AVPixelFormat pix_fmts_10bit[] = {
  756. AV_PIX_FMT_YUV420P10,
  757. AV_PIX_FMT_YUV422P10,
  758. AV_PIX_FMT_YUV444P10,
  759. AV_PIX_FMT_NV20,
  760. AV_PIX_FMT_NONE
  761. };
  762. static const enum AVPixelFormat pix_fmts_8bit_rgb[] = {
  763. #ifdef X264_CSP_BGR
  764. AV_PIX_FMT_BGR0,
  765. AV_PIX_FMT_BGR24,
  766. AV_PIX_FMT_RGB24,
  767. #endif
  768. AV_PIX_FMT_NONE
  769. };
  770. static av_cold void X264_init_static(AVCodec *codec)
  771. {
  772. if (x264_bit_depth == 8)
  773. codec->pix_fmts = pix_fmts_8bit;
  774. else if (x264_bit_depth == 9)
  775. codec->pix_fmts = pix_fmts_9bit;
  776. else if (x264_bit_depth == 10)
  777. codec->pix_fmts = pix_fmts_10bit;
  778. }
  779. #define OFFSET(x) offsetof(X264Context, x)
  780. #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
  781. static const AVOption options[] = {
  782. { "preset", "Set the encoding preset (cf. x264 --fullhelp)", OFFSET(preset), AV_OPT_TYPE_STRING, { .str = "medium" }, 0, 0, VE},
  783. { "tune", "Tune the encoding params (cf. x264 --fullhelp)", OFFSET(tune), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
  784. { "profile", "Set profile restrictions (cf. x264 --fullhelp) ", OFFSET(profile), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
  785. { "fastfirstpass", "Use fast settings when encoding first pass", OFFSET(fastfirstpass), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, VE},
  786. {"level", "Specify level (as defined by Annex A)", OFFSET(level), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
  787. {"passlogfile", "Filename for 2 pass stats", OFFSET(stats), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
  788. {"wpredp", "Weighted prediction for P-frames", OFFSET(wpredp), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
  789. {"a53cc", "Use A53 Closed Captions (if available)", OFFSET(a53_cc), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, VE},
  790. {"x264opts", "x264 options", OFFSET(x264opts), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
  791. { "crf", "Select the quality for constant quality mode", OFFSET(crf), AV_OPT_TYPE_FLOAT, {.dbl = -1 }, -1, FLT_MAX, VE },
  792. { "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 },
  793. { "qp", "Constant quantization parameter rate control method",OFFSET(cqp), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE },
  794. { "aq-mode", "AQ method", OFFSET(aq_mode), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE, "aq_mode"},
  795. { "none", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_NONE}, INT_MIN, INT_MAX, VE, "aq_mode" },
  796. { "variance", "Variance AQ (complexity mask)", 0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_VARIANCE}, INT_MIN, INT_MAX, VE, "aq_mode" },
  797. { "autovariance", "Auto-variance AQ", 0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_AUTOVARIANCE}, INT_MIN, INT_MAX, VE, "aq_mode" },
  798. #if X264_BUILD >= 144
  799. { "autovariance-biased", "Auto-variance AQ with bias to dark scenes", 0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_AUTOVARIANCE_BIASED}, INT_MIN, INT_MAX, VE, "aq_mode" },
  800. #endif
  801. { "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},
  802. { "psy", "Use psychovisual optimizations.", OFFSET(psy), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE },
  803. { "psy-rd", "Strength of psychovisual optimization, in <psy-rd>:<psy-trellis> format.", OFFSET(psy_rd), AV_OPT_TYPE_STRING, {0 }, 0, 0, VE},
  804. { "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 },
  805. { "weightb", "Weighted prediction for B-frames.", OFFSET(weightb), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE },
  806. { "weightp", "Weighted prediction analysis method.", OFFSET(weightp), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE, "weightp" },
  807. { "none", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_NONE}, INT_MIN, INT_MAX, VE, "weightp" },
  808. { "simple", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_SIMPLE}, INT_MIN, INT_MAX, VE, "weightp" },
  809. { "smart", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_SMART}, INT_MIN, INT_MAX, VE, "weightp" },
  810. { "ssim", "Calculate and print SSIM stats.", OFFSET(ssim), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE },
  811. { "intra-refresh", "Use Periodic Intra Refresh instead of IDR frames.",OFFSET(intra_refresh),AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE },
  812. { "bluray-compat", "Bluray compatibility workarounds.", OFFSET(bluray_compat) ,AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE },
  813. { "b-bias", "Influences how often B-frames are used", OFFSET(b_bias), AV_OPT_TYPE_INT, { .i64 = INT_MIN}, INT_MIN, INT_MAX, VE },
  814. { "b-pyramid", "Keep some B-frames as references.", OFFSET(b_pyramid), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE, "b_pyramid" },
  815. { "none", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_B_PYRAMID_NONE}, INT_MIN, INT_MAX, VE, "b_pyramid" },
  816. { "strict", "Strictly hierarchical pyramid", 0, AV_OPT_TYPE_CONST, {.i64 = X264_B_PYRAMID_STRICT}, INT_MIN, INT_MAX, VE, "b_pyramid" },
  817. { "normal", "Non-strict (not Blu-ray compatible)", 0, AV_OPT_TYPE_CONST, {.i64 = X264_B_PYRAMID_NORMAL}, INT_MIN, INT_MAX, VE, "b_pyramid" },
  818. { "mixed-refs", "One reference per partition, as opposed to one reference per macroblock", OFFSET(mixed_refs), AV_OPT_TYPE_BOOL, { .i64 = -1}, -1, 1, VE },
  819. { "8x8dct", "High profile 8x8 transform.", OFFSET(dct8x8), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE},
  820. { "fast-pskip", NULL, OFFSET(fast_pskip), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE},
  821. { "aud", "Use access unit delimiters.", OFFSET(aud), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE},
  822. { "mbtree", "Use macroblock tree ratecontrol.", OFFSET(mbtree), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE},
  823. { "deblock", "Loop filter parameters, in <alpha:beta> form.", OFFSET(deblock), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
  824. { "cplxblur", "Reduce fluctuations in QP (before curve compression)", OFFSET(cplxblur), AV_OPT_TYPE_FLOAT, {.dbl = -1 }, -1, FLT_MAX, VE},
  825. { "partitions", "A comma-separated list of partitions to consider. "
  826. "Possible values: p8x8, p4x4, b8x8, i8x8, i4x4, none, all", OFFSET(partitions), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
  827. { "direct-pred", "Direct MV prediction mode", OFFSET(direct_pred), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE, "direct-pred" },
  828. { "none", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_NONE }, 0, 0, VE, "direct-pred" },
  829. { "spatial", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_SPATIAL }, 0, 0, VE, "direct-pred" },
  830. { "temporal", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_TEMPORAL }, 0, 0, VE, "direct-pred" },
  831. { "auto", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_AUTO }, 0, 0, VE, "direct-pred" },
  832. { "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 },
  833. { "stats", "Filename for 2 pass stats", OFFSET(stats), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE },
  834. { "nal-hrd", "Signal HRD information (requires vbv-bufsize; "
  835. "cbr not allowed in .mp4)", OFFSET(nal_hrd), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE, "nal-hrd" },
  836. { "none", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_NONE}, INT_MIN, INT_MAX, VE, "nal-hrd" },
  837. { "vbr", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_VBR}, INT_MIN, INT_MAX, VE, "nal-hrd" },
  838. { "cbr", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_CBR}, INT_MIN, INT_MAX, VE, "nal-hrd" },
  839. { "avcintra-class","AVC-Intra class 50/100/200", OFFSET(avcintra_class),AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 200 , VE},
  840. { "motion-est", "Set motion estimation method", OFFSET(motion_est), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, X264_ME_TESA, VE, "motion-est"},
  841. { "dia", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_DIA }, INT_MIN, INT_MAX, VE, "motion-est" },
  842. { "hex", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_HEX }, INT_MIN, INT_MAX, VE, "motion-est" },
  843. { "umh", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_UMH }, INT_MIN, INT_MAX, VE, "motion-est" },
  844. { "esa", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_ESA }, INT_MIN, INT_MAX, VE, "motion-est" },
  845. { "tesa", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_TESA }, INT_MIN, INT_MAX, VE, "motion-est" },
  846. { "forced-idr", "If forcing keyframes, force them as IDR frames.", OFFSET(forced_idr), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE },
  847. { "coder", "Coder type", OFFSET(coder), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE, "coder" },
  848. { "default", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = -1 }, INT_MIN, INT_MAX, VE, "coder" },
  849. { "cavlc", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, INT_MIN, INT_MAX, VE, "coder" },
  850. { "cabac", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, INT_MIN, INT_MAX, VE, "coder" },
  851. { "vlc", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, INT_MIN, INT_MAX, VE, "coder" },
  852. { "ac", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, INT_MIN, INT_MAX, VE, "coder" },
  853. { "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 },
  854. { NULL },
  855. };
  856. static const AVCodecDefault x264_defaults[] = {
  857. { "b", "0" },
  858. { "bf", "-1" },
  859. { "flags2", "0" },
  860. { "g", "-1" },
  861. { "i_qfactor", "-1" },
  862. { "b_qfactor", "-1" },
  863. { "qmin", "-1" },
  864. { "qmax", "-1" },
  865. { "qdiff", "-1" },
  866. { "qblur", "-1" },
  867. { "qcomp", "-1" },
  868. // { "rc_lookahead", "-1" },
  869. { "refs", "-1" },
  870. { "sc_threshold", "-1" },
  871. { "trellis", "-1" },
  872. { "nr", "-1" },
  873. { "me_range", "-1" },
  874. #if FF_API_MOTION_EST
  875. { "me_method", "-1" },
  876. #endif
  877. { "subq", "-1" },
  878. { "b_strategy", "-1" },
  879. { "keyint_min", "-1" },
  880. #if FF_API_CODER_TYPE
  881. { "coder", "-1" },
  882. #endif
  883. { "cmp", "-1" },
  884. { "threads", AV_STRINGIFY(X264_THREADS_AUTO) },
  885. { "thread_type", "0" },
  886. { "flags", "+cgop" },
  887. { "rc_init_occupancy","-1" },
  888. { NULL },
  889. };
  890. #if CONFIG_LIBX264_ENCODER
  891. static const AVClass x264_class = {
  892. .class_name = "libx264",
  893. .item_name = av_default_item_name,
  894. .option = options,
  895. .version = LIBAVUTIL_VERSION_INT,
  896. };
  897. static const AVClass rgbclass = {
  898. .class_name = "libx264rgb",
  899. .item_name = av_default_item_name,
  900. .option = options,
  901. .version = LIBAVUTIL_VERSION_INT,
  902. };
  903. AVCodec ff_libx264_encoder = {
  904. .name = "libx264",
  905. .long_name = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
  906. .type = AVMEDIA_TYPE_VIDEO,
  907. .id = AV_CODEC_ID_H264,
  908. .priv_data_size = sizeof(X264Context),
  909. .init = X264_init,
  910. .encode2 = X264_frame,
  911. .close = X264_close,
  912. .capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AUTO_THREADS,
  913. .priv_class = &x264_class,
  914. .defaults = x264_defaults,
  915. .init_static_data = X264_init_static,
  916. .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE |
  917. FF_CODEC_CAP_INIT_CLEANUP,
  918. };
  919. AVCodec ff_libx264rgb_encoder = {
  920. .name = "libx264rgb",
  921. .long_name = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 RGB"),
  922. .type = AVMEDIA_TYPE_VIDEO,
  923. .id = AV_CODEC_ID_H264,
  924. .priv_data_size = sizeof(X264Context),
  925. .init = X264_init,
  926. .encode2 = X264_frame,
  927. .close = X264_close,
  928. .capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AUTO_THREADS,
  929. .priv_class = &rgbclass,
  930. .defaults = x264_defaults,
  931. .pix_fmts = pix_fmts_8bit_rgb,
  932. };
  933. #endif
  934. #if CONFIG_LIBX262_ENCODER
  935. static const AVClass X262_class = {
  936. .class_name = "libx262",
  937. .item_name = av_default_item_name,
  938. .option = options,
  939. .version = LIBAVUTIL_VERSION_INT,
  940. };
  941. AVCodec ff_libx262_encoder = {
  942. .name = "libx262",
  943. .long_name = NULL_IF_CONFIG_SMALL("libx262 MPEG2VIDEO"),
  944. .type = AVMEDIA_TYPE_VIDEO,
  945. .id = AV_CODEC_ID_MPEG2VIDEO,
  946. .priv_data_size = sizeof(X264Context),
  947. .init = X264_init,
  948. .encode2 = X264_frame,
  949. .close = X264_close,
  950. .capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AUTO_THREADS,
  951. .priv_class = &X262_class,
  952. .defaults = x264_defaults,
  953. .pix_fmts = pix_fmts_8bit,
  954. .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE |
  955. FF_CODEC_CAP_INIT_CLEANUP,
  956. };
  957. #endif