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.

392 lines
14KB

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