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.

458 lines
17KB

  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/opt.h"
  22. #include "avcodec.h"
  23. #include <x264.h>
  24. #include <math.h>
  25. #include <stdio.h>
  26. #include <stdlib.h>
  27. #include <string.h>
  28. typedef struct X264Context {
  29. AVClass *class;
  30. x264_param_t params;
  31. x264_t *enc;
  32. x264_picture_t pic;
  33. uint8_t *sei;
  34. int sei_size;
  35. AVFrame out_pic;
  36. char *preset;
  37. char *tune;
  38. char *profile;
  39. char *level;
  40. int fastfirstpass;
  41. char *stats;
  42. char *weightp;
  43. char *x264opts;
  44. } X264Context;
  45. static void X264_log(void *p, int level, const char *fmt, va_list args)
  46. {
  47. static const int level_map[] = {
  48. [X264_LOG_ERROR] = AV_LOG_ERROR,
  49. [X264_LOG_WARNING] = AV_LOG_WARNING,
  50. [X264_LOG_INFO] = AV_LOG_INFO,
  51. [X264_LOG_DEBUG] = AV_LOG_DEBUG
  52. };
  53. if (level < 0 || level > X264_LOG_DEBUG)
  54. return;
  55. av_vlog(p, level_map[level], fmt, args);
  56. }
  57. static int encode_nals(AVCodecContext *ctx, uint8_t *buf, int size,
  58. x264_nal_t *nals, int nnal, int skip_sei)
  59. {
  60. X264Context *x4 = ctx->priv_data;
  61. uint8_t *p = buf;
  62. int i;
  63. /* Write the SEI as part of the first frame. */
  64. if (x4->sei_size > 0 && nnal > 0) {
  65. if (x4->sei_size > size) {
  66. av_log(ctx, AV_LOG_ERROR, "Error: nal buffer is too small\n");
  67. return -1;
  68. }
  69. memcpy(p, x4->sei, x4->sei_size);
  70. p += x4->sei_size;
  71. x4->sei_size = 0;
  72. // why is x4->sei not freed?
  73. }
  74. for (i = 0; i < nnal; i++){
  75. /* Don't put the SEI in extradata. */
  76. if (skip_sei && nals[i].i_type == NAL_SEI) {
  77. x4->sei_size = nals[i].i_payload;
  78. x4->sei = av_malloc(x4->sei_size);
  79. memcpy(x4->sei, nals[i].p_payload, nals[i].i_payload);
  80. continue;
  81. }
  82. if (nals[i].i_payload > (size - (p - buf))) {
  83. // return only complete nals which fit in buf
  84. av_log(ctx, AV_LOG_ERROR, "Error: nal buffer is too small\n");
  85. break;
  86. }
  87. memcpy(p, nals[i].p_payload, nals[i].i_payload);
  88. p += nals[i].i_payload;
  89. }
  90. return p - buf;
  91. }
  92. static int X264_frame(AVCodecContext *ctx, uint8_t *buf,
  93. int bufsize, void *data)
  94. {
  95. X264Context *x4 = ctx->priv_data;
  96. AVFrame *frame = data;
  97. x264_nal_t *nal;
  98. int nnal, i;
  99. x264_picture_t pic_out;
  100. x264_picture_init( &x4->pic );
  101. x4->pic.img.i_csp = X264_CSP_I420;
  102. x4->pic.img.i_plane = 3;
  103. if (frame) {
  104. for (i = 0; i < 3; i++) {
  105. x4->pic.img.plane[i] = frame->data[i];
  106. x4->pic.img.i_stride[i] = frame->linesize[i];
  107. }
  108. x4->pic.i_pts = frame->pts;
  109. x4->pic.i_type =
  110. frame->pict_type == AV_PICTURE_TYPE_I ? X264_TYPE_KEYFRAME :
  111. frame->pict_type == AV_PICTURE_TYPE_P ? X264_TYPE_P :
  112. frame->pict_type == AV_PICTURE_TYPE_B ? X264_TYPE_B :
  113. X264_TYPE_AUTO;
  114. if (x4->params.b_tff != frame->top_field_first) {
  115. x4->params.b_tff = frame->top_field_first;
  116. x264_encoder_reconfig(x4->enc, &x4->params);
  117. }
  118. if (x4->params.vui.i_sar_height != ctx->sample_aspect_ratio.den
  119. || x4->params.vui.i_sar_width != ctx->sample_aspect_ratio.num) {
  120. x4->params.vui.i_sar_height = ctx->sample_aspect_ratio.den;
  121. x4->params.vui.i_sar_width = ctx->sample_aspect_ratio.num;
  122. x264_encoder_reconfig(x4->enc, &x4->params);
  123. }
  124. }
  125. do {
  126. if (x264_encoder_encode(x4->enc, &nal, &nnal, frame? &x4->pic: NULL, &pic_out) < 0)
  127. return -1;
  128. bufsize = encode_nals(ctx, buf, bufsize, nal, nnal, 0);
  129. if (bufsize < 0)
  130. return -1;
  131. } while (!bufsize && !frame && x264_encoder_delayed_frames(x4->enc));
  132. /* FIXME: libx264 now provides DTS, but AVFrame doesn't have a field for it. */
  133. x4->out_pic.pts = pic_out.i_pts;
  134. switch (pic_out.i_type) {
  135. case X264_TYPE_IDR:
  136. case X264_TYPE_I:
  137. x4->out_pic.pict_type = AV_PICTURE_TYPE_I;
  138. break;
  139. case X264_TYPE_P:
  140. x4->out_pic.pict_type = AV_PICTURE_TYPE_P;
  141. break;
  142. case X264_TYPE_B:
  143. case X264_TYPE_BREF:
  144. x4->out_pic.pict_type = AV_PICTURE_TYPE_B;
  145. break;
  146. }
  147. x4->out_pic.key_frame = pic_out.b_keyframe;
  148. if (bufsize)
  149. x4->out_pic.quality = (pic_out.i_qpplus1 - 1) * FF_QP2LAMBDA;
  150. return bufsize;
  151. }
  152. static av_cold int X264_close(AVCodecContext *avctx)
  153. {
  154. X264Context *x4 = avctx->priv_data;
  155. av_freep(&avctx->extradata);
  156. av_free(x4->sei);
  157. if (x4->enc)
  158. x264_encoder_close(x4->enc);
  159. return 0;
  160. }
  161. /**
  162. * Detect default settings and use default profile to avoid libx264 failure.
  163. */
  164. static void check_default_settings(AVCodecContext *avctx)
  165. {
  166. X264Context *x4 = avctx->priv_data;
  167. int score = 0;
  168. score += x4->params.analyse.i_me_range == 0;
  169. score += x4->params.rc.i_qp_step == 3;
  170. score += x4->params.i_keyint_max == 12;
  171. score += x4->params.rc.i_qp_min == 2;
  172. score += x4->params.rc.i_qp_max == 31;
  173. score += x4->params.rc.f_qcompress == 0.5;
  174. score += fabs(x4->params.rc.f_ip_factor - 1.25) < 0.01;
  175. score += fabs(x4->params.rc.f_pb_factor - 1.25) < 0.01;
  176. score += x4->params.analyse.inter == 0 && x4->params.analyse.i_subpel_refine == 8;
  177. if (score >= 5) {
  178. av_log(avctx, AV_LOG_ERROR, "Default settings detected, using medium profile\n");
  179. x4->preset = av_strdup("medium");
  180. if (avctx->bit_rate == 200*1000)
  181. avctx->crf = 23;
  182. }
  183. }
  184. #define OPT_STR(opt, param) \
  185. do { \
  186. if (param && x264_param_parse(&x4->params, opt, param) < 0) { \
  187. av_log(avctx, AV_LOG_ERROR, \
  188. "bad value for '%s': '%s'\n", opt, param); \
  189. return -1; \
  190. } \
  191. } while (0); \
  192. static av_cold int X264_init(AVCodecContext *avctx)
  193. {
  194. X264Context *x4 = avctx->priv_data;
  195. x4->sei_size = 0;
  196. x264_param_default(&x4->params);
  197. x4->params.i_keyint_max = avctx->gop_size;
  198. x4->params.i_bframe = avctx->max_b_frames;
  199. x4->params.b_cabac = avctx->coder_type == FF_CODER_TYPE_AC;
  200. x4->params.i_bframe_adaptive = avctx->b_frame_strategy;
  201. x4->params.i_bframe_bias = avctx->bframebias;
  202. x4->params.i_bframe_pyramid = avctx->flags2 & CODEC_FLAG2_BPYRAMID ? X264_B_PYRAMID_NORMAL : X264_B_PYRAMID_NONE;
  203. x4->params.i_keyint_min = avctx->keyint_min;
  204. if (x4->params.i_keyint_min > x4->params.i_keyint_max)
  205. x4->params.i_keyint_min = x4->params.i_keyint_max;
  206. x4->params.i_scenecut_threshold = avctx->scenechange_threshold;
  207. x4->params.b_deblocking_filter = avctx->flags & CODEC_FLAG_LOOP_FILTER;
  208. x4->params.i_deblocking_filter_alphac0 = avctx->deblockalpha;
  209. x4->params.i_deblocking_filter_beta = avctx->deblockbeta;
  210. x4->params.rc.i_qp_min = avctx->qmin;
  211. x4->params.rc.i_qp_max = avctx->qmax;
  212. x4->params.rc.i_qp_step = avctx->max_qdiff;
  213. x4->params.rc.f_qcompress = avctx->qcompress; /* 0.0 => cbr, 1.0 => constant qp */
  214. x4->params.rc.f_qblur = avctx->qblur; /* temporally blur quants */
  215. x4->params.rc.f_complexity_blur = avctx->complexityblur;
  216. x4->params.i_frame_reference = avctx->refs;
  217. x4->params.analyse.inter = 0;
  218. if (avctx->partitions) {
  219. if (avctx->partitions & X264_PART_I4X4)
  220. x4->params.analyse.inter |= X264_ANALYSE_I4x4;
  221. if (avctx->partitions & X264_PART_I8X8)
  222. x4->params.analyse.inter |= X264_ANALYSE_I8x8;
  223. if (avctx->partitions & X264_PART_P8X8)
  224. x4->params.analyse.inter |= X264_ANALYSE_PSUB16x16;
  225. if (avctx->partitions & X264_PART_P4X4)
  226. x4->params.analyse.inter |= X264_ANALYSE_PSUB8x8;
  227. if (avctx->partitions & X264_PART_B8X8)
  228. x4->params.analyse.inter |= X264_ANALYSE_BSUB16x16;
  229. }
  230. x4->params.analyse.i_direct_mv_pred = avctx->directpred;
  231. x4->params.analyse.b_weighted_bipred = avctx->flags2 & CODEC_FLAG2_WPRED;
  232. if (avctx->me_method == ME_EPZS)
  233. x4->params.analyse.i_me_method = X264_ME_DIA;
  234. else if (avctx->me_method == ME_HEX)
  235. x4->params.analyse.i_me_method = X264_ME_HEX;
  236. else if (avctx->me_method == ME_UMH)
  237. x4->params.analyse.i_me_method = X264_ME_UMH;
  238. else if (avctx->me_method == ME_FULL)
  239. x4->params.analyse.i_me_method = X264_ME_ESA;
  240. else if (avctx->me_method == ME_TESA)
  241. x4->params.analyse.i_me_method = X264_ME_TESA;
  242. else x4->params.analyse.i_me_method = X264_ME_HEX;
  243. x4->params.rc.i_aq_mode = avctx->aq_mode;
  244. x4->params.rc.f_aq_strength = avctx->aq_strength;
  245. x4->params.rc.i_lookahead = avctx->rc_lookahead;
  246. x4->params.analyse.b_psy = avctx->flags2 & CODEC_FLAG2_PSY;
  247. x4->params.analyse.f_psy_rd = avctx->psy_rd;
  248. x4->params.analyse.f_psy_trellis = avctx->psy_trellis;
  249. x4->params.analyse.i_me_range = avctx->me_range;
  250. x4->params.analyse.i_subpel_refine = avctx->me_subpel_quality;
  251. x4->params.analyse.b_mixed_references = avctx->flags2 & CODEC_FLAG2_MIXED_REFS;
  252. x4->params.analyse.b_chroma_me = avctx->me_cmp & FF_CMP_CHROMA;
  253. x4->params.analyse.b_transform_8x8 = avctx->flags2 & CODEC_FLAG2_8X8DCT;
  254. x4->params.analyse.b_fast_pskip = avctx->flags2 & CODEC_FLAG2_FASTPSKIP;
  255. x4->params.analyse.i_trellis = avctx->trellis;
  256. x4->params.analyse.i_noise_reduction = avctx->noise_reduction;
  257. x4->params.rc.b_mb_tree = !!(avctx->flags2 & CODEC_FLAG2_MBTREE);
  258. x4->params.rc.f_ip_factor = 1 / fabs(avctx->i_quant_factor);
  259. x4->params.rc.f_pb_factor = avctx->b_quant_factor;
  260. x4->params.analyse.i_chroma_qp_offset = avctx->chromaoffset;
  261. if (!x4->preset)
  262. check_default_settings(avctx);
  263. if (x4->preset || x4->tune) {
  264. if (x264_param_default_preset(&x4->params, x4->preset, x4->tune) < 0)
  265. return -1;
  266. }
  267. x4->params.pf_log = X264_log;
  268. x4->params.p_log_private = avctx;
  269. x4->params.i_log_level = X264_LOG_DEBUG;
  270. OPT_STR("weightp", x4->weightp);
  271. x4->params.b_intra_refresh = avctx->flags2 & CODEC_FLAG2_INTRA_REFRESH;
  272. x4->params.rc.i_bitrate = avctx->bit_rate / 1000;
  273. x4->params.rc.i_vbv_buffer_size = avctx->rc_buffer_size / 1000;
  274. x4->params.rc.i_vbv_max_bitrate = avctx->rc_max_rate / 1000;
  275. x4->params.rc.b_stat_write = avctx->flags & CODEC_FLAG_PASS1;
  276. if (avctx->flags & CODEC_FLAG_PASS2) {
  277. x4->params.rc.b_stat_read = 1;
  278. } else {
  279. if (avctx->crf) {
  280. x4->params.rc.i_rc_method = X264_RC_CRF;
  281. x4->params.rc.f_rf_constant = avctx->crf;
  282. x4->params.rc.f_rf_constant_max = avctx->crf_max;
  283. } else if (avctx->cqp > -1) {
  284. x4->params.rc.i_rc_method = X264_RC_CQP;
  285. x4->params.rc.i_qp_constant = avctx->cqp;
  286. }
  287. }
  288. OPT_STR("stats", x4->stats);
  289. // if neither crf nor cqp modes are selected we have to enable the RC
  290. // we do it this way because we cannot check if the bitrate has been set
  291. if (!(avctx->crf || (avctx->cqp > -1)))
  292. x4->params.rc.i_rc_method = X264_RC_ABR;
  293. if (avctx->rc_buffer_size && avctx->rc_initial_buffer_occupancy &&
  294. (avctx->rc_initial_buffer_occupancy <= avctx->rc_buffer_size)) {
  295. x4->params.rc.f_vbv_buffer_init =
  296. (float)avctx->rc_initial_buffer_occupancy / avctx->rc_buffer_size;
  297. }
  298. OPT_STR("level", x4->level);
  299. if(x4->x264opts){
  300. const char *p= x4->x264opts;
  301. while(p){
  302. char param[256]={0}, val[256]={0};
  303. sscanf(p, "%255[^:=]=%255[^:]", param, val);
  304. OPT_STR(param, val);
  305. p= strchr(p, ':');
  306. p+=!!p;
  307. }
  308. }
  309. if (x4->fastfirstpass)
  310. x264_param_apply_fastfirstpass(&x4->params);
  311. if (x4->profile)
  312. if (x264_param_apply_profile(&x4->params, x4->profile) < 0)
  313. return -1;
  314. x4->params.i_width = avctx->width;
  315. x4->params.i_height = avctx->height;
  316. x4->params.vui.i_sar_width = avctx->sample_aspect_ratio.num;
  317. x4->params.vui.i_sar_height = avctx->sample_aspect_ratio.den;
  318. x4->params.i_fps_num = x4->params.i_timebase_den = avctx->time_base.den;
  319. x4->params.i_fps_den = x4->params.i_timebase_num = avctx->time_base.num;
  320. x4->params.analyse.b_psnr = avctx->flags & CODEC_FLAG_PSNR;
  321. x4->params.analyse.b_ssim = avctx->flags2 & CODEC_FLAG2_SSIM;
  322. x4->params.b_aud = avctx->flags2 & CODEC_FLAG2_AUD;
  323. x4->params.i_threads = avctx->thread_count;
  324. x4->params.b_interlaced = avctx->flags & CODEC_FLAG_INTERLACED_DCT;
  325. // x4->params.b_open_gop = !(avctx->flags & CODEC_FLAG_CLOSED_GOP);
  326. x4->params.i_slice_count = avctx->slices;
  327. x4->params.vui.b_fullrange = avctx->pix_fmt == PIX_FMT_YUVJ420P;
  328. if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER)
  329. x4->params.b_repeat_headers = 0;
  330. // update AVCodecContext with x264 parameters
  331. avctx->has_b_frames = x4->params.i_bframe ?
  332. x4->params.i_bframe_pyramid ? 2 : 1 : 0;
  333. avctx->bit_rate = x4->params.rc.i_bitrate*1000;
  334. avctx->crf = x4->params.rc.f_rf_constant;
  335. x4->enc = x264_encoder_open(&x4->params);
  336. if (!x4->enc)
  337. return -1;
  338. avctx->coded_frame = &x4->out_pic;
  339. if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER) {
  340. x264_nal_t *nal;
  341. int nnal, s, i;
  342. s = x264_encoder_headers(x4->enc, &nal, &nnal);
  343. for (i = 0; i < nnal; i++)
  344. if (nal[i].i_type == NAL_SEI)
  345. av_log(avctx, AV_LOG_INFO, "%s\n", nal[i].p_payload+25);
  346. avctx->extradata = av_malloc(s);
  347. avctx->extradata_size = encode_nals(avctx, avctx->extradata, s, nal, nnal, 1);
  348. }
  349. return 0;
  350. }
  351. #define OFFSET(x) offsetof(X264Context,x)
  352. #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
  353. static const AVOption options[] = {
  354. {"preset", "Set the encoding preset", OFFSET(preset), FF_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
  355. {"tune", "Tune the encoding params", OFFSET(tune), FF_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
  356. {"fastfirstpass", "Use fast settings when encoding first pass", OFFSET(fastfirstpass), FF_OPT_TYPE_INT, {.dbl=1}, 0, 1, VE},
  357. {"profile", "Set profile restrictions", OFFSET(profile), FF_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
  358. {"level", "Specify level (as defined by Annex A)", OFFSET(level), FF_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
  359. {"passlogfile", "Filename for 2 pass stats", OFFSET(stats), FF_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
  360. {"wpredp", "Weighted prediction for P-frames", OFFSET(weightp), FF_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
  361. {"x264opts", "x264 options", OFFSET(x264opts), FF_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
  362. { NULL },
  363. };
  364. static const AVClass class = { "libx264", av_default_item_name, options, LIBAVUTIL_VERSION_INT };
  365. AVCodec ff_libx264_encoder = {
  366. .name = "libx264",
  367. .type = AVMEDIA_TYPE_VIDEO,
  368. .id = CODEC_ID_H264,
  369. .priv_data_size = sizeof(X264Context),
  370. .init = X264_init,
  371. .encode = X264_frame,
  372. .close = X264_close,
  373. .capabilities = CODEC_CAP_DELAY,
  374. .pix_fmts = (const enum PixelFormat[]) { PIX_FMT_YUV420P, PIX_FMT_YUVJ420P, PIX_FMT_NONE },
  375. .long_name = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
  376. .priv_class = &class,
  377. };