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.

547 lines
23KB

  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 Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "libavutil/opt.h"
  22. #include "avcodec.h"
  23. #include "internal.h"
  24. #include <x264.h>
  25. #include <float.h>
  26. #include <math.h>
  27. #include <stdio.h>
  28. #include <stdlib.h>
  29. #include <string.h>
  30. typedef struct X264Context {
  31. AVClass *class;
  32. x264_param_t params;
  33. x264_t *enc;
  34. x264_picture_t pic;
  35. uint8_t *sei;
  36. int sei_size;
  37. AVFrame out_pic;
  38. char *preset;
  39. char *tune;
  40. char *profile;
  41. int fastfirstpass;
  42. float crf;
  43. float crf_max;
  44. int cqp;
  45. int aq_mode;
  46. float aq_strength;
  47. char *psy_rd;
  48. int psy;
  49. int rc_lookahead;
  50. int weightp;
  51. int weightb;
  52. int ssim;
  53. int intra_refresh;
  54. int b_bias;
  55. int b_pyramid;
  56. int mixed_refs;
  57. int dct8x8;
  58. int fast_pskip;
  59. int aud;
  60. int mbtree;
  61. char *deblock;
  62. float cplxblur;
  63. char *partitions;
  64. int direct_pred;
  65. } X264Context;
  66. static void X264_log(void *p, int level, const char *fmt, va_list args)
  67. {
  68. static const int level_map[] = {
  69. [X264_LOG_ERROR] = AV_LOG_ERROR,
  70. [X264_LOG_WARNING] = AV_LOG_WARNING,
  71. [X264_LOG_INFO] = AV_LOG_INFO,
  72. [X264_LOG_DEBUG] = AV_LOG_DEBUG
  73. };
  74. if (level < 0 || level > X264_LOG_DEBUG)
  75. return;
  76. av_vlog(p, level_map[level], fmt, args);
  77. }
  78. static int encode_nals(AVCodecContext *ctx, uint8_t *buf, int size,
  79. x264_nal_t *nals, int nnal, int skip_sei)
  80. {
  81. X264Context *x4 = ctx->priv_data;
  82. uint8_t *p = buf;
  83. int i;
  84. /* Write the SEI as part of the first frame. */
  85. if (x4->sei_size > 0 && nnal > 0) {
  86. memcpy(p, x4->sei, x4->sei_size);
  87. p += x4->sei_size;
  88. x4->sei_size = 0;
  89. }
  90. for (i = 0; i < nnal; i++){
  91. /* Don't put the SEI in extradata. */
  92. if (skip_sei && nals[i].i_type == NAL_SEI) {
  93. x4->sei_size = nals[i].i_payload;
  94. x4->sei = av_malloc(x4->sei_size);
  95. memcpy(x4->sei, nals[i].p_payload, nals[i].i_payload);
  96. continue;
  97. }
  98. memcpy(p, nals[i].p_payload, nals[i].i_payload);
  99. p += nals[i].i_payload;
  100. }
  101. return p - buf;
  102. }
  103. static int X264_frame(AVCodecContext *ctx, uint8_t *buf,
  104. int bufsize, void *data)
  105. {
  106. X264Context *x4 = ctx->priv_data;
  107. AVFrame *frame = data;
  108. x264_nal_t *nal;
  109. int nnal, i;
  110. x264_picture_t pic_out;
  111. x264_picture_init( &x4->pic );
  112. x4->pic.img.i_csp = X264_CSP_I420;
  113. x4->pic.img.i_plane = 3;
  114. if (frame) {
  115. for (i = 0; i < 3; i++) {
  116. x4->pic.img.plane[i] = frame->data[i];
  117. x4->pic.img.i_stride[i] = frame->linesize[i];
  118. }
  119. x4->pic.i_pts = frame->pts;
  120. x4->pic.i_type =
  121. frame->pict_type == AV_PICTURE_TYPE_I ? X264_TYPE_KEYFRAME :
  122. frame->pict_type == AV_PICTURE_TYPE_P ? X264_TYPE_P :
  123. frame->pict_type == AV_PICTURE_TYPE_B ? X264_TYPE_B :
  124. X264_TYPE_AUTO;
  125. if (x4->params.b_tff != frame->top_field_first) {
  126. x4->params.b_tff = frame->top_field_first;
  127. x264_encoder_reconfig(x4->enc, &x4->params);
  128. }
  129. }
  130. do {
  131. if (x264_encoder_encode(x4->enc, &nal, &nnal, frame? &x4->pic: NULL, &pic_out) < 0)
  132. return -1;
  133. bufsize = encode_nals(ctx, buf, bufsize, nal, nnal, 0);
  134. if (bufsize < 0)
  135. return -1;
  136. } while (!bufsize && !frame && x264_encoder_delayed_frames(x4->enc));
  137. /* FIXME: libx264 now provides DTS, but AVFrame doesn't have a field for it. */
  138. x4->out_pic.pts = pic_out.i_pts;
  139. switch (pic_out.i_type) {
  140. case X264_TYPE_IDR:
  141. case X264_TYPE_I:
  142. x4->out_pic.pict_type = AV_PICTURE_TYPE_I;
  143. break;
  144. case X264_TYPE_P:
  145. x4->out_pic.pict_type = AV_PICTURE_TYPE_P;
  146. break;
  147. case X264_TYPE_B:
  148. case X264_TYPE_BREF:
  149. x4->out_pic.pict_type = AV_PICTURE_TYPE_B;
  150. break;
  151. }
  152. x4->out_pic.key_frame = pic_out.b_keyframe;
  153. if (bufsize)
  154. x4->out_pic.quality = (pic_out.i_qpplus1 - 1) * FF_QP2LAMBDA;
  155. return bufsize;
  156. }
  157. static av_cold int X264_close(AVCodecContext *avctx)
  158. {
  159. X264Context *x4 = avctx->priv_data;
  160. av_freep(&avctx->extradata);
  161. av_free(x4->sei);
  162. if (x4->enc)
  163. x264_encoder_close(x4->enc);
  164. return 0;
  165. }
  166. #define PARSE_X264_OPT(name, var)\
  167. if (x4->var && x264_param_parse(&x4->params, name, x4->var) < 0) {\
  168. av_log(avctx, AV_LOG_ERROR, "Error parsing option '%s' with value '%s'.\n", name, x4->var);\
  169. return AVERROR(EINVAL);\
  170. }
  171. static av_cold int X264_init(AVCodecContext *avctx)
  172. {
  173. X264Context *x4 = avctx->priv_data;
  174. x264_param_default(&x4->params);
  175. x4->params.b_deblocking_filter = avctx->flags & CODEC_FLAG_LOOP_FILTER;
  176. if (x4->preset || x4->tune)
  177. if (x264_param_default_preset(&x4->params, x4->preset, x4->tune) < 0) {
  178. av_log(avctx, AV_LOG_ERROR, "Error setting preset/tune %s/%s.\n", x4->preset, x4->tune);
  179. return AVERROR(EINVAL);
  180. }
  181. if (avctx->level > 0)
  182. x4->params.i_level_idc = avctx->level;
  183. x4->params.pf_log = X264_log;
  184. x4->params.p_log_private = avctx;
  185. x4->params.i_log_level = X264_LOG_DEBUG;
  186. if (avctx->bit_rate) {
  187. x4->params.rc.i_bitrate = avctx->bit_rate / 1000;
  188. x4->params.rc.i_rc_method = X264_RC_ABR;
  189. }
  190. x4->params.rc.i_vbv_buffer_size = avctx->rc_buffer_size / 1000;
  191. x4->params.rc.i_vbv_max_bitrate = avctx->rc_max_rate / 1000;
  192. x4->params.rc.b_stat_write = avctx->flags & CODEC_FLAG_PASS1;
  193. if (avctx->flags & CODEC_FLAG_PASS2) {
  194. x4->params.rc.b_stat_read = 1;
  195. } else {
  196. #if FF_API_X264_GLOBAL_OPTS
  197. if (avctx->crf) {
  198. x4->params.rc.i_rc_method = X264_RC_CRF;
  199. x4->params.rc.f_rf_constant = avctx->crf;
  200. x4->params.rc.f_rf_constant_max = avctx->crf_max;
  201. } else if (avctx->cqp > -1) {
  202. x4->params.rc.i_rc_method = X264_RC_CQP;
  203. x4->params.rc.i_qp_constant = avctx->cqp;
  204. }
  205. #endif
  206. if (x4->crf >= 0) {
  207. x4->params.rc.i_rc_method = X264_RC_CRF;
  208. x4->params.rc.f_rf_constant = x4->crf;
  209. } else if (x4->cqp >= 0) {
  210. x4->params.rc.i_rc_method = X264_RC_CQP;
  211. x4->params.rc.i_qp_constant = x4->cqp;
  212. }
  213. if (x4->crf_max >= 0)
  214. x4->params.rc.f_rf_constant_max = x4->crf_max;
  215. }
  216. if (avctx->rc_buffer_size && avctx->rc_initial_buffer_occupancy &&
  217. (avctx->rc_initial_buffer_occupancy <= avctx->rc_buffer_size)) {
  218. x4->params.rc.f_vbv_buffer_init =
  219. (float)avctx->rc_initial_buffer_occupancy / avctx->rc_buffer_size;
  220. }
  221. x4->params.rc.f_ip_factor = 1 / fabs(avctx->i_quant_factor);
  222. x4->params.rc.f_pb_factor = avctx->b_quant_factor;
  223. x4->params.analyse.i_chroma_qp_offset = avctx->chromaoffset;
  224. #if FF_API_X264_GLOBAL_OPTS
  225. if (avctx->aq_mode >= 0)
  226. x4->params.rc.i_aq_mode = avctx->aq_mode;
  227. if (avctx->aq_strength >= 0)
  228. x4->params.rc.f_aq_strength = avctx->aq_strength;
  229. if (avctx->psy_rd >= 0)
  230. x4->params.analyse.f_psy_rd = avctx->psy_rd;
  231. if (avctx->psy_trellis >= 0)
  232. x4->params.analyse.f_psy_trellis = avctx->psy_trellis;
  233. if (avctx->rc_lookahead >= 0)
  234. x4->params.rc.i_lookahead = avctx->rc_lookahead;
  235. if (avctx->weighted_p_pred >= 0)
  236. x4->params.analyse.i_weighted_pred = avctx->weighted_p_pred;
  237. if (avctx->bframebias)
  238. x4->params.i_bframe_bias = avctx->bframebias;
  239. if (avctx->deblockalpha)
  240. x4->params.i_deblocking_filter_alphac0 = avctx->deblockalpha;
  241. if (avctx->deblockbeta)
  242. x4->params.i_deblocking_filter_beta = avctx->deblockbeta;
  243. if (avctx->complexityblur >= 0)
  244. x4->params.rc.f_complexity_blur = avctx->complexityblur;
  245. if (avctx->directpred >= 0)
  246. x4->params.analyse.i_direct_mv_pred = avctx->directpred;
  247. if (avctx->partitions) {
  248. if (avctx->partitions & X264_PART_I4X4)
  249. x4->params.analyse.inter |= X264_ANALYSE_I4x4;
  250. if (avctx->partitions & X264_PART_I8X8)
  251. x4->params.analyse.inter |= X264_ANALYSE_I8x8;
  252. if (avctx->partitions & X264_PART_P8X8)
  253. x4->params.analyse.inter |= X264_ANALYSE_PSUB16x16;
  254. if (avctx->partitions & X264_PART_P4X4)
  255. x4->params.analyse.inter |= X264_ANALYSE_PSUB8x8;
  256. if (avctx->partitions & X264_PART_B8X8)
  257. x4->params.analyse.inter |= X264_ANALYSE_BSUB16x16;
  258. }
  259. x4->params.analyse.b_ssim = avctx->flags2 & CODEC_FLAG2_SSIM;
  260. x4->params.b_intra_refresh = avctx->flags2 & CODEC_FLAG2_INTRA_REFRESH;
  261. x4->params.i_bframe_pyramid = avctx->flags2 & CODEC_FLAG2_BPYRAMID ? X264_B_PYRAMID_NORMAL : X264_B_PYRAMID_NONE;
  262. x4->params.analyse.b_weighted_bipred = avctx->flags2 & CODEC_FLAG2_WPRED;
  263. x4->params.analyse.b_mixed_references = avctx->flags2 & CODEC_FLAG2_MIXED_REFS;
  264. x4->params.analyse.b_transform_8x8 = avctx->flags2 & CODEC_FLAG2_8X8DCT;
  265. x4->params.analyse.b_fast_pskip = avctx->flags2 & CODEC_FLAG2_FASTPSKIP;
  266. x4->params.b_aud = avctx->flags2 & CODEC_FLAG2_AUD;
  267. x4->params.analyse.b_psy = avctx->flags2 & CODEC_FLAG2_PSY;
  268. x4->params.rc.b_mb_tree = !!(avctx->flags2 & CODEC_FLAG2_MBTREE);
  269. #endif
  270. if (avctx->me_method == ME_EPZS)
  271. x4->params.analyse.i_me_method = X264_ME_DIA;
  272. else if (avctx->me_method == ME_HEX)
  273. x4->params.analyse.i_me_method = X264_ME_HEX;
  274. else if (avctx->me_method == ME_UMH)
  275. x4->params.analyse.i_me_method = X264_ME_UMH;
  276. else if (avctx->me_method == ME_FULL)
  277. x4->params.analyse.i_me_method = X264_ME_ESA;
  278. else if (avctx->me_method == ME_TESA)
  279. x4->params.analyse.i_me_method = X264_ME_TESA;
  280. if (avctx->gop_size >= 0)
  281. x4->params.i_keyint_max = avctx->gop_size;
  282. if (avctx->max_b_frames >= 0)
  283. x4->params.i_bframe = avctx->max_b_frames;
  284. if (avctx->scenechange_threshold >= 0)
  285. x4->params.i_scenecut_threshold = avctx->scenechange_threshold;
  286. if (avctx->qmin >= 0)
  287. x4->params.rc.i_qp_min = avctx->qmin;
  288. if (avctx->qmax >= 0)
  289. x4->params.rc.i_qp_max = avctx->qmax;
  290. if (avctx->max_qdiff >= 0)
  291. x4->params.rc.i_qp_step = avctx->max_qdiff;
  292. if (avctx->qblur >= 0)
  293. x4->params.rc.f_qblur = avctx->qblur; /* temporally blur quants */
  294. if (avctx->qcompress >= 0)
  295. x4->params.rc.f_qcompress = avctx->qcompress; /* 0.0 => cbr, 1.0 => constant qp */
  296. if (avctx->refs >= 0)
  297. x4->params.i_frame_reference = avctx->refs;
  298. if (avctx->trellis >= 0)
  299. x4->params.analyse.i_trellis = avctx->trellis;
  300. if (avctx->me_range >= 0)
  301. x4->params.analyse.i_me_range = avctx->me_range;
  302. if (avctx->noise_reduction >= 0)
  303. x4->params.analyse.i_noise_reduction = avctx->noise_reduction;
  304. if (avctx->me_subpel_quality >= 0)
  305. x4->params.analyse.i_subpel_refine = avctx->me_subpel_quality;
  306. if (avctx->b_frame_strategy >= 0)
  307. x4->params.i_bframe_adaptive = avctx->b_frame_strategy;
  308. if (avctx->keyint_min >= 0)
  309. x4->params.i_keyint_min = avctx->keyint_min;
  310. if (avctx->coder_type >= 0)
  311. x4->params.b_cabac = avctx->coder_type == FF_CODER_TYPE_AC;
  312. if (avctx->me_cmp >= 0)
  313. x4->params.analyse.b_chroma_me = avctx->me_cmp & FF_CMP_CHROMA;
  314. if (x4->aq_mode >= 0)
  315. x4->params.rc.i_aq_mode = x4->aq_mode;
  316. if (x4->aq_strength >= 0)
  317. x4->params.rc.f_aq_strength = x4->aq_strength;
  318. PARSE_X264_OPT("psy-rd", psy_rd);
  319. PARSE_X264_OPT("deblock", deblock);
  320. PARSE_X264_OPT("partitions", partitions);
  321. if (x4->psy >= 0)
  322. x4->params.analyse.b_psy = x4->psy;
  323. if (x4->rc_lookahead >= 0)
  324. x4->params.rc.i_lookahead = x4->rc_lookahead;
  325. if (x4->weightp >= 0)
  326. x4->params.analyse.i_weighted_pred = x4->weightp;
  327. if (x4->weightb >= 0)
  328. x4->params.analyse.b_weighted_bipred = x4->weightb;
  329. if (x4->cplxblur >= 0)
  330. x4->params.rc.f_complexity_blur = x4->cplxblur;
  331. if (x4->ssim >= 0)
  332. x4->params.analyse.b_ssim = x4->ssim;
  333. if (x4->intra_refresh >= 0)
  334. x4->params.b_intra_refresh = x4->intra_refresh;
  335. if (x4->b_bias != INT_MIN)
  336. x4->params.i_bframe_bias = x4->b_bias;
  337. if (x4->b_pyramid >= 0)
  338. x4->params.i_bframe_pyramid = x4->b_pyramid;
  339. if (x4->mixed_refs >= 0)
  340. x4->params.analyse.b_mixed_references = x4->mixed_refs;
  341. if (x4->dct8x8 >= 0)
  342. x4->params.analyse.b_transform_8x8 = x4->dct8x8;
  343. if (x4->fast_pskip >= 0)
  344. x4->params.analyse.b_fast_pskip = x4->fast_pskip;
  345. if (x4->aud >= 0)
  346. x4->params.b_aud = x4->aud;
  347. if (x4->mbtree >= 0)
  348. x4->params.rc.b_mb_tree = x4->mbtree;
  349. if (x4->direct_pred >= 0)
  350. x4->params.analyse.i_direct_mv_pred = x4->direct_pred;
  351. if (x4->fastfirstpass)
  352. x264_param_apply_fastfirstpass(&x4->params);
  353. if (x4->profile)
  354. if (x264_param_apply_profile(&x4->params, x4->profile) < 0) {
  355. av_log(avctx, AV_LOG_ERROR, "Error setting profile %s.\n", x4->profile);
  356. return AVERROR(EINVAL);
  357. }
  358. x4->params.i_width = avctx->width;
  359. x4->params.i_height = avctx->height;
  360. x4->params.vui.i_sar_width = avctx->sample_aspect_ratio.num;
  361. x4->params.vui.i_sar_height = avctx->sample_aspect_ratio.den;
  362. x4->params.i_fps_num = x4->params.i_timebase_den = avctx->time_base.den;
  363. x4->params.i_fps_den = x4->params.i_timebase_num = avctx->time_base.num;
  364. x4->params.analyse.b_psnr = avctx->flags & CODEC_FLAG_PSNR;
  365. x4->params.i_threads = avctx->thread_count;
  366. x4->params.b_interlaced = avctx->flags & CODEC_FLAG_INTERLACED_DCT;
  367. x4->params.b_open_gop = !(avctx->flags & CODEC_FLAG_CLOSED_GOP);
  368. x4->params.i_slice_count = avctx->slices;
  369. x4->params.vui.b_fullrange = avctx->pix_fmt == PIX_FMT_YUVJ420P;
  370. if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER)
  371. x4->params.b_repeat_headers = 0;
  372. // update AVCodecContext with x264 parameters
  373. avctx->has_b_frames = x4->params.i_bframe ?
  374. x4->params.i_bframe_pyramid ? 2 : 1 : 0;
  375. avctx->bit_rate = x4->params.rc.i_bitrate*1000;
  376. #if FF_API_X264_GLOBAL_OPTS
  377. avctx->crf = x4->params.rc.f_rf_constant;
  378. #endif
  379. x4->enc = x264_encoder_open(&x4->params);
  380. if (!x4->enc)
  381. return -1;
  382. avctx->coded_frame = &x4->out_pic;
  383. if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER) {
  384. x264_nal_t *nal;
  385. int nnal, s, i;
  386. s = x264_encoder_headers(x4->enc, &nal, &nnal);
  387. for (i = 0; i < nnal; i++)
  388. if (nal[i].i_type == NAL_SEI)
  389. av_log(avctx, AV_LOG_INFO, "%s\n", nal[i].p_payload+25);
  390. avctx->extradata = av_malloc(s);
  391. avctx->extradata_size = encode_nals(avctx, avctx->extradata, s, nal, nnal, 1);
  392. }
  393. return 0;
  394. }
  395. #define OFFSET(x) offsetof(X264Context, x)
  396. #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
  397. static const AVOption options[] = {
  398. { "preset", "Set the encoding preset (cf. x264 --fullhelp)", OFFSET(preset), FF_OPT_TYPE_STRING, { .str = "medium" }, 0, 0, VE},
  399. { "tune", "Tune the encoding params (cf. x264 --fullhelp)", OFFSET(tune), FF_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
  400. { "profile", "Set profile restrictions (cf. x264 --fullhelp) ", OFFSET(profile), FF_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
  401. { "fastfirstpass", "Use fast settings when encoding first pass", OFFSET(fastfirstpass), FF_OPT_TYPE_INT, { 1 }, 0, 1, VE},
  402. { "crf", "Select the quality for constant quality mode", OFFSET(crf), FF_OPT_TYPE_FLOAT, {-1 }, -1, FLT_MAX, VE },
  403. { "crf_max", "In CRF mode, prevents VBV from lowering quality beyond this point.",OFFSET(crf_max), FF_OPT_TYPE_FLOAT, {-1 }, -1, FLT_MAX, VE },
  404. { "qp", "Constant quantization parameter rate control method",OFFSET(cqp), FF_OPT_TYPE_INT, {-1 }, -1, INT_MAX, VE },
  405. { "aq-mode", "AQ method", OFFSET(aq_mode), FF_OPT_TYPE_INT, {-1 }, -1, INT_MAX, VE, "aq_mode"},
  406. { "none", NULL, 0, FF_OPT_TYPE_CONST, {X264_AQ_NONE}, INT_MIN, INT_MAX, VE, "aq_mode" },
  407. { "variance", "Variance AQ (complexity mask)", 0, FF_OPT_TYPE_CONST, {X264_AQ_VARIANCE}, INT_MIN, INT_MAX, VE, "aq_mode" },
  408. { "autovariance", "Auto-variance AQ (experimental)", 0, FF_OPT_TYPE_CONST, {X264_AQ_AUTOVARIANCE}, INT_MIN, INT_MAX, VE, "aq_mode" },
  409. { "aq-strength", "AQ strength. Reduces blocking and blurring in flat and textured areas.", OFFSET(aq_strength), FF_OPT_TYPE_FLOAT, {-1}, -1, FLT_MAX, VE},
  410. { "psy", "Use psychovisual optimizations.", OFFSET(psy), FF_OPT_TYPE_INT, {-1 }, -1, 1, VE },
  411. { "psy-rd", "Strength of psychovisual optimization, in <psy-rd>:<psy-trellis> format.", OFFSET(psy_rd), FF_OPT_TYPE_STRING, {0 }, 0, 0, VE},
  412. { "rc-lookahead", "Number of frames to look ahead for frametype and ratecontrol", OFFSET(rc_lookahead), FF_OPT_TYPE_INT, {-1 }, -1, INT_MAX, VE },
  413. { "weightb", "Weighted prediction for B-frames.", OFFSET(weightb), FF_OPT_TYPE_INT, {-1 }, -1, 1, VE },
  414. { "weightp", "Weighted prediction analysis method.", OFFSET(weightp), FF_OPT_TYPE_INT, {-1 }, -1, INT_MAX, VE, "weightp" },
  415. { "none", NULL, 0, FF_OPT_TYPE_CONST, {X264_WEIGHTP_NONE}, INT_MIN, INT_MAX, VE, "weightp" },
  416. { "simple", NULL, 0, FF_OPT_TYPE_CONST, {X264_WEIGHTP_SIMPLE}, INT_MIN, INT_MAX, VE, "weightp" },
  417. { "smart", NULL, 0, FF_OPT_TYPE_CONST, {X264_WEIGHTP_SMART}, INT_MIN, INT_MAX, VE, "weightp" },
  418. { "ssim", "Calculate and print SSIM stats.", OFFSET(ssim), FF_OPT_TYPE_INT, {-1 }, -1, 1, VE },
  419. { "intra-refresh", "Use Periodic Intra Refresh instead of IDR frames.",OFFSET(intra_refresh),FF_OPT_TYPE_INT, {-1 }, -1, 1, VE },
  420. { "b-bias", "Influences how often B-frames are used", OFFSET(b_bias), FF_OPT_TYPE_INT, {INT_MIN}, INT_MIN, INT_MAX, VE },
  421. { "b-pyramid", "Keep some B-frames as references.", OFFSET(b_pyramid), FF_OPT_TYPE_INT, {-1 }, -1, INT_MAX, VE, "b_pyramid" },
  422. { "none", NULL, 0, FF_OPT_TYPE_CONST, {X264_B_PYRAMID_NONE}, INT_MIN, INT_MAX, VE, "b_pyramid" },
  423. { "strict", "Strictly hierarchical pyramid", 0, FF_OPT_TYPE_CONST, {X264_B_PYRAMID_STRICT}, INT_MIN, INT_MAX, VE, "b_pyramid" },
  424. { "normal", "Non-strict (not Blu-ray compatible)", 0, FF_OPT_TYPE_CONST, {X264_B_PYRAMID_NORMAL}, INT_MIN, INT_MAX, VE, "b_pyramid" },
  425. { "mixed-refs", "One reference per partition, as opposed to one reference per macroblock", OFFSET(mixed_refs), FF_OPT_TYPE_INT, {-1}, -1, 1, VE },
  426. { "8x8dct", "High profile 8x8 transform.", OFFSET(dct8x8), FF_OPT_TYPE_INT, {-1 }, -1, 1, VE},
  427. { "fast-pskip", NULL, OFFSET(fast_pskip), FF_OPT_TYPE_INT, {-1 }, -1, 1, VE},
  428. { "aud", "Use access unit delimiters.", OFFSET(aud), FF_OPT_TYPE_INT, {-1 }, -1, 1, VE},
  429. { "mbtree", "Use macroblock tree ratecontrol.", OFFSET(mbtree), FF_OPT_TYPE_INT, {-1 }, -1, 1, VE},
  430. { "deblock", "Loop filter parameters, in <alpha:beta> form.", OFFSET(deblock), FF_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
  431. { "cplxblur", "Reduce fluctuations in QP (before curve compression)", OFFSET(cplxblur), FF_OPT_TYPE_FLOAT, {-1 }, -1, FLT_MAX, VE},
  432. { "partitions", "A comma-separated list of partitions to consider. "
  433. "Possible values: p8x8, p4x4, b8x8, i8x8, i4x4, none, all", OFFSET(partitions), FF_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
  434. { "direct-pred", "Direct MV prediction mode", OFFSET(direct_pred), FF_OPT_TYPE_INT, {-1 }, -1, INT_MAX, VE, "direct-pred" },
  435. { "none", NULL, 0, FF_OPT_TYPE_CONST, { X264_DIRECT_PRED_NONE }, 0, 0, VE, "direct-pred" },
  436. { "spatial", NULL, 0, FF_OPT_TYPE_CONST, { X264_DIRECT_PRED_SPATIAL }, 0, 0, VE, "direct-pred" },
  437. { "temporal", NULL, 0, FF_OPT_TYPE_CONST, { X264_DIRECT_PRED_TEMPORAL }, 0, 0, VE, "direct-pred" },
  438. { "auto", NULL, 0, FF_OPT_TYPE_CONST, { X264_DIRECT_PRED_AUTO }, 0, 0, VE, "direct-pred" },
  439. { NULL },
  440. };
  441. static const AVClass class = {
  442. .class_name = "libx264",
  443. .item_name = av_default_item_name,
  444. .option = options,
  445. .version = LIBAVUTIL_VERSION_INT,
  446. };
  447. static const AVCodecDefault x264_defaults[] = {
  448. { "b", "0" },
  449. { "bf", "-1" },
  450. { "g", "-1" },
  451. { "qmin", "-1" },
  452. { "qmax", "-1" },
  453. { "qdiff", "-1" },
  454. { "qblur", "-1" },
  455. { "qcomp", "-1" },
  456. { "refs", "-1" },
  457. { "sc_threshold", "-1" },
  458. { "trellis", "-1" },
  459. { "nr", "-1" },
  460. { "me_range", "-1" },
  461. { "me_method", "-1" },
  462. { "subq", "-1" },
  463. { "b_strategy", "-1" },
  464. { "keyint_min", "-1" },
  465. { "coder", "-1" },
  466. { "cmp", "-1" },
  467. { "threads", AV_STRINGIFY(X264_THREADS_AUTO) },
  468. { NULL },
  469. };
  470. AVCodec ff_libx264_encoder = {
  471. .name = "libx264",
  472. .type = AVMEDIA_TYPE_VIDEO,
  473. .id = CODEC_ID_H264,
  474. .priv_data_size = sizeof(X264Context),
  475. .init = X264_init,
  476. .encode = X264_frame,
  477. .close = X264_close,
  478. .capabilities = CODEC_CAP_DELAY,
  479. .pix_fmts = (const enum PixelFormat[]) { PIX_FMT_YUV420P, PIX_FMT_YUVJ420P, PIX_FMT_NONE },
  480. .long_name = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
  481. .priv_class = &class,
  482. .defaults = x264_defaults,
  483. };