2 * H.264 encoding using the x264 library
3 * Copyright (C) 2005 Mans Rullgard <mans@mansr.com>
5 * This file is part of FFmpeg.
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.
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.
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
22 #include "libavutil/eval.h"
23 #include "libavutil/internal.h"
24 #include "libavutil/opt.h"
25 #include "libavutil/mem.h"
26 #include "libavutil/pixdesc.h"
27 #include "libavutil/stereo3d.h"
28 #include "libavutil/intreadwrite.h"
33 #define X264_API_IMPORTS 1
43 typedef struct X264Context {
91 int scenechange_threshold;
97 static void X264_log(void *p, int level, const char *fmt, va_list args)
99 static const int level_map[] = {
100 [X264_LOG_ERROR] = AV_LOG_ERROR,
101 [X264_LOG_WARNING] = AV_LOG_WARNING,
102 [X264_LOG_INFO] = AV_LOG_INFO,
103 [X264_LOG_DEBUG] = AV_LOG_DEBUG
106 if (level < 0 || level > X264_LOG_DEBUG)
109 av_vlog(p, level_map[level], fmt, args);
113 static int encode_nals(AVCodecContext *ctx, AVPacket *pkt,
114 const x264_nal_t *nals, int nnal)
116 X264Context *x4 = ctx->priv_data;
118 int i, size = x4->sei_size, ret;
123 for (i = 0; i < nnal; i++)
124 size += nals[i].i_payload;
126 if ((ret = ff_alloc_packet2(ctx, pkt, size, 0)) < 0)
131 /* Write the SEI as part of the first frame. */
132 if (x4->sei_size > 0 && nnal > 0) {
133 if (x4->sei_size > size) {
134 av_log(ctx, AV_LOG_ERROR, "Error: nal buffer is too small\n");
137 memcpy(p, x4->sei, x4->sei_size);
143 for (i = 0; i < nnal; i++){
144 memcpy(p, nals[i].p_payload, nals[i].i_payload);
145 p += nals[i].i_payload;
151 static int avfmt2_num_planes(int avfmt)
154 case AV_PIX_FMT_YUV420P:
155 case AV_PIX_FMT_YUVJ420P:
156 case AV_PIX_FMT_YUV420P9:
157 case AV_PIX_FMT_YUV420P10:
158 case AV_PIX_FMT_YUV444P:
161 case AV_PIX_FMT_BGR0:
162 case AV_PIX_FMT_BGR24:
163 case AV_PIX_FMT_RGB24:
171 static void reconfig_encoder(AVCodecContext *ctx, const AVFrame *frame)
173 X264Context *x4 = ctx->priv_data;
174 AVFrameSideData *side_data;
177 if (x4->avcintra_class < 0) {
178 if (x4->params.b_interlaced && x4->params.b_tff != frame->top_field_first) {
180 x4->params.b_tff = frame->top_field_first;
181 x264_encoder_reconfig(x4->enc, &x4->params);
183 if (x4->params.vui.i_sar_height*ctx->sample_aspect_ratio.num != ctx->sample_aspect_ratio.den * x4->params.vui.i_sar_width) {
184 x4->params.vui.i_sar_height = ctx->sample_aspect_ratio.den;
185 x4->params.vui.i_sar_width = ctx->sample_aspect_ratio.num;
186 x264_encoder_reconfig(x4->enc, &x4->params);
189 if (x4->params.rc.i_vbv_buffer_size != ctx->rc_buffer_size / 1000 ||
190 x4->params.rc.i_vbv_max_bitrate != ctx->rc_max_rate / 1000) {
191 x4->params.rc.i_vbv_buffer_size = ctx->rc_buffer_size / 1000;
192 x4->params.rc.i_vbv_max_bitrate = ctx->rc_max_rate / 1000;
193 x264_encoder_reconfig(x4->enc, &x4->params);
196 if (x4->params.rc.i_rc_method == X264_RC_ABR &&
197 x4->params.rc.i_bitrate != ctx->bit_rate / 1000) {
198 x4->params.rc.i_bitrate = ctx->bit_rate / 1000;
199 x264_encoder_reconfig(x4->enc, &x4->params);
203 x4->params.rc.i_rc_method == X264_RC_CRF &&
204 x4->params.rc.f_rf_constant != x4->crf) {
205 x4->params.rc.f_rf_constant = x4->crf;
206 x264_encoder_reconfig(x4->enc, &x4->params);
209 if (x4->params.rc.i_rc_method == X264_RC_CQP &&
211 x4->params.rc.i_qp_constant != x4->cqp) {
212 x4->params.rc.i_qp_constant = x4->cqp;
213 x264_encoder_reconfig(x4->enc, &x4->params);
216 if (x4->crf_max >= 0 &&
217 x4->params.rc.f_rf_constant_max != x4->crf_max) {
218 x4->params.rc.f_rf_constant_max = x4->crf_max;
219 x264_encoder_reconfig(x4->enc, &x4->params);
223 side_data = av_frame_get_side_data(frame, AV_FRAME_DATA_STEREO3D);
225 AVStereo3D *stereo = (AVStereo3D *)side_data->data;
228 switch (stereo->type) {
229 case AV_STEREO3D_CHECKERBOARD:
232 case AV_STEREO3D_COLUMNS:
235 case AV_STEREO3D_LINES:
238 case AV_STEREO3D_SIDEBYSIDE:
241 case AV_STEREO3D_TOPBOTTOM:
244 case AV_STEREO3D_FRAMESEQUENCE:
247 #if X264_BUILD >= 145
257 /* Inverted mode is not supported by x264 */
258 if (stereo->flags & AV_STEREO3D_FLAG_INVERT) {
259 av_log(ctx, AV_LOG_WARNING,
260 "Ignoring unsupported inverted stereo value %d\n", fpa_type);
264 if (fpa_type != x4->params.i_frame_packing) {
265 x4->params.i_frame_packing = fpa_type;
266 x264_encoder_reconfig(x4->enc, &x4->params);
271 static int X264_frame(AVCodecContext *ctx, AVPacket *pkt, const AVFrame *frame,
274 X264Context *x4 = ctx->priv_data;
277 x264_picture_t pic_out = {0};
280 x264_picture_init( &x4->pic );
281 x4->pic.img.i_csp = x4->params.i_csp;
282 #if X264_BUILD >= 153
283 if (x4->params.i_bitdepth > 8)
285 if (x264_bit_depth > 8)
287 x4->pic.img.i_csp |= X264_CSP_HIGH_DEPTH;
288 x4->pic.img.i_plane = avfmt2_num_planes(ctx->pix_fmt);
291 for (i = 0; i < x4->pic.img.i_plane; i++) {
292 x4->pic.img.plane[i] = frame->data[i];
293 x4->pic.img.i_stride[i] = frame->linesize[i];
296 x4->pic.i_pts = frame->pts;
298 switch (frame->pict_type) {
299 case AV_PICTURE_TYPE_I:
300 x4->pic.i_type = x4->forced_idr > 0 ? X264_TYPE_IDR
301 : X264_TYPE_KEYFRAME;
303 case AV_PICTURE_TYPE_P:
304 x4->pic.i_type = X264_TYPE_P;
306 case AV_PICTURE_TYPE_B:
307 x4->pic.i_type = X264_TYPE_B;
310 x4->pic.i_type = X264_TYPE_AUTO;
313 reconfig_encoder(ctx, frame);
319 ret = ff_alloc_a53_sei(frame, 0, &sei_data, &sei_size);
321 av_log(ctx, AV_LOG_ERROR, "Not enough memory for closed captions, skipping\n");
322 } else if (sei_data) {
323 x4->pic.extra_sei.payloads = av_mallocz(sizeof(x4->pic.extra_sei.payloads[0]));
324 if (x4->pic.extra_sei.payloads == NULL) {
325 av_log(ctx, AV_LOG_ERROR, "Not enough memory for closed captions, skipping\n");
328 x4->pic.extra_sei.sei_free = av_free;
330 x4->pic.extra_sei.payloads[0].payload_size = sei_size;
331 x4->pic.extra_sei.payloads[0].payload = sei_data;
332 x4->pic.extra_sei.num_payloads = 1;
333 x4->pic.extra_sei.payloads[0].payload_type = 4;
340 if (x264_encoder_encode(x4->enc, &nal, &nnal, frame? &x4->pic: NULL, &pic_out) < 0)
341 return AVERROR_EXTERNAL;
343 ret = encode_nals(ctx, pkt, nal, nnal);
346 } while (!ret && !frame && x264_encoder_delayed_frames(x4->enc));
348 pkt->pts = pic_out.i_pts;
349 pkt->dts = pic_out.i_dts;
352 switch (pic_out.i_type) {
355 pict_type = AV_PICTURE_TYPE_I;
358 pict_type = AV_PICTURE_TYPE_P;
362 pict_type = AV_PICTURE_TYPE_B;
365 pict_type = AV_PICTURE_TYPE_NONE;
367 #if FF_API_CODED_FRAME
368 FF_DISABLE_DEPRECATION_WARNINGS
369 ctx->coded_frame->pict_type = pict_type;
370 FF_ENABLE_DEPRECATION_WARNINGS
373 pkt->flags |= AV_PKT_FLAG_KEY*pic_out.b_keyframe;
375 ff_side_data_set_encoder_stats(pkt, (pic_out.i_qpplus1 - 1) * FF_QP2LAMBDA, NULL, 0, pict_type);
377 #if FF_API_CODED_FRAME
378 FF_DISABLE_DEPRECATION_WARNINGS
379 ctx->coded_frame->quality = (pic_out.i_qpplus1 - 1) * FF_QP2LAMBDA;
380 FF_ENABLE_DEPRECATION_WARNINGS
388 static av_cold int X264_close(AVCodecContext *avctx)
390 X264Context *x4 = avctx->priv_data;
392 av_freep(&avctx->extradata);
396 x264_encoder_close(x4->enc);
403 #define OPT_STR(opt, param) \
406 if ((ret = x264_param_parse(&x4->params, opt, param)) < 0) { \
407 if(ret == X264_PARAM_BAD_NAME) \
408 av_log(avctx, AV_LOG_ERROR, \
409 "bad option '%s': '%s'\n", opt, param); \
411 av_log(avctx, AV_LOG_ERROR, \
412 "bad value for '%s': '%s'\n", opt, param); \
417 static int convert_pix_fmt(enum AVPixelFormat pix_fmt)
420 case AV_PIX_FMT_YUV420P:
421 case AV_PIX_FMT_YUVJ420P:
422 case AV_PIX_FMT_YUV420P9:
423 case AV_PIX_FMT_YUV420P10: return X264_CSP_I420;
424 case AV_PIX_FMT_YUV422P:
425 case AV_PIX_FMT_YUVJ422P:
426 case AV_PIX_FMT_YUV422P10: return X264_CSP_I422;
427 case AV_PIX_FMT_YUV444P:
428 case AV_PIX_FMT_YUVJ444P:
429 case AV_PIX_FMT_YUV444P9:
430 case AV_PIX_FMT_YUV444P10: return X264_CSP_I444;
431 #if CONFIG_LIBX264RGB_ENCODER
432 case AV_PIX_FMT_BGR0:
433 return X264_CSP_BGRA;
434 case AV_PIX_FMT_BGR24:
437 case AV_PIX_FMT_RGB24:
440 case AV_PIX_FMT_NV12: return X264_CSP_NV12;
441 case AV_PIX_FMT_NV16:
442 case AV_PIX_FMT_NV20: return X264_CSP_NV16;
444 case AV_PIX_FMT_NV21: return X264_CSP_NV21;
450 #define PARSE_X264_OPT(name, var)\
451 if (x4->var && x264_param_parse(&x4->params, name, x4->var) < 0) {\
452 av_log(avctx, AV_LOG_ERROR, "Error parsing option '%s' with value '%s'.\n", name, x4->var);\
453 return AVERROR(EINVAL);\
456 static av_cold int X264_init(AVCodecContext *avctx)
458 X264Context *x4 = avctx->priv_data;
459 AVCPBProperties *cpb_props;
462 if (avctx->global_quality > 0)
463 av_log(avctx, AV_LOG_WARNING, "-qscale is ignored, -crf is recommended.\n");
465 #if CONFIG_LIBX262_ENCODER
466 if (avctx->codec_id == AV_CODEC_ID_MPEG2VIDEO) {
467 x4->params.b_mpeg2 = 1;
468 x264_param_default_mpeg2(&x4->params);
471 x264_param_default(&x4->params);
473 x4->params.b_deblocking_filter = avctx->flags & AV_CODEC_FLAG_LOOP_FILTER;
475 if (x4->preset || x4->tune)
476 if (x264_param_default_preset(&x4->params, x4->preset, x4->tune) < 0) {
478 av_log(avctx, AV_LOG_ERROR, "Error setting preset/tune %s/%s.\n", x4->preset, x4->tune);
479 av_log(avctx, AV_LOG_INFO, "Possible presets:");
480 for (i = 0; x264_preset_names[i]; i++)
481 av_log(avctx, AV_LOG_INFO, " %s", x264_preset_names[i]);
482 av_log(avctx, AV_LOG_INFO, "\n");
483 av_log(avctx, AV_LOG_INFO, "Possible tunes:");
484 for (i = 0; x264_tune_names[i]; i++)
485 av_log(avctx, AV_LOG_INFO, " %s", x264_tune_names[i]);
486 av_log(avctx, AV_LOG_INFO, "\n");
487 return AVERROR(EINVAL);
490 if (avctx->level > 0)
491 x4->params.i_level_idc = avctx->level;
493 x4->params.pf_log = X264_log;
494 x4->params.p_log_private = avctx;
495 x4->params.i_log_level = X264_LOG_DEBUG;
496 x4->params.i_csp = convert_pix_fmt(avctx->pix_fmt);
497 #if X264_BUILD >= 153
498 x4->params.i_bitdepth = av_pix_fmt_desc_get(avctx->pix_fmt)->comp[0].depth;
501 PARSE_X264_OPT("weightp", wpredp);
503 if (avctx->bit_rate) {
504 x4->params.rc.i_bitrate = avctx->bit_rate / 1000;
505 x4->params.rc.i_rc_method = X264_RC_ABR;
507 x4->params.rc.i_vbv_buffer_size = avctx->rc_buffer_size / 1000;
508 x4->params.rc.i_vbv_max_bitrate = avctx->rc_max_rate / 1000;
509 x4->params.rc.b_stat_write = avctx->flags & AV_CODEC_FLAG_PASS1;
510 if (avctx->flags & AV_CODEC_FLAG_PASS2) {
511 x4->params.rc.b_stat_read = 1;
514 x4->params.rc.i_rc_method = X264_RC_CRF;
515 x4->params.rc.f_rf_constant = x4->crf;
516 } else if (x4->cqp >= 0) {
517 x4->params.rc.i_rc_method = X264_RC_CQP;
518 x4->params.rc.i_qp_constant = x4->cqp;
521 if (x4->crf_max >= 0)
522 x4->params.rc.f_rf_constant_max = x4->crf_max;
525 if (avctx->rc_buffer_size && avctx->rc_initial_buffer_occupancy > 0 &&
526 (avctx->rc_initial_buffer_occupancy <= avctx->rc_buffer_size)) {
527 x4->params.rc.f_vbv_buffer_init =
528 (float)avctx->rc_initial_buffer_occupancy / avctx->rc_buffer_size;
531 PARSE_X264_OPT("level", level);
533 if (avctx->i_quant_factor > 0)
534 x4->params.rc.f_ip_factor = 1 / fabs(avctx->i_quant_factor);
535 if (avctx->b_quant_factor > 0)
536 x4->params.rc.f_pb_factor = avctx->b_quant_factor;
538 #if FF_API_PRIVATE_OPT
539 FF_DISABLE_DEPRECATION_WARNINGS
540 if (avctx->chromaoffset >= 0)
541 x4->chroma_offset = avctx->chromaoffset;
542 FF_ENABLE_DEPRECATION_WARNINGS
544 if (x4->chroma_offset >= 0)
545 x4->params.analyse.i_chroma_qp_offset = x4->chroma_offset;
547 if (avctx->gop_size >= 0)
548 x4->params.i_keyint_max = avctx->gop_size;
549 if (avctx->max_b_frames >= 0)
550 x4->params.i_bframe = avctx->max_b_frames;
552 #if FF_API_PRIVATE_OPT
553 FF_DISABLE_DEPRECATION_WARNINGS
554 if (avctx->scenechange_threshold >= 0)
555 x4->scenechange_threshold = avctx->scenechange_threshold;
556 FF_ENABLE_DEPRECATION_WARNINGS
558 if (x4->scenechange_threshold >= 0)
559 x4->params.i_scenecut_threshold = x4->scenechange_threshold;
561 if (avctx->qmin >= 0)
562 x4->params.rc.i_qp_min = avctx->qmin;
563 if (avctx->qmax >= 0)
564 x4->params.rc.i_qp_max = avctx->qmax;
565 if (avctx->max_qdiff >= 0)
566 x4->params.rc.i_qp_step = avctx->max_qdiff;
567 if (avctx->qblur >= 0)
568 x4->params.rc.f_qblur = avctx->qblur; /* temporally blur quants */
569 if (avctx->qcompress >= 0)
570 x4->params.rc.f_qcompress = avctx->qcompress; /* 0.0 => cbr, 1.0 => constant qp */
571 if (avctx->refs >= 0)
572 x4->params.i_frame_reference = avctx->refs;
573 else if (x4->level) {
575 int mbn = AV_CEIL_RSHIFT(avctx->width, 4) * AV_CEIL_RSHIFT(avctx->height, 4);
578 int scale = X264_BUILD < 129 ? 384 : 1;
580 if (!strcmp(x4->level, "1b")) {
582 } else if (strlen(x4->level) <= 3){
583 level_id = av_strtod(x4->level, &tail) * 10 + 0.5;
588 av_log(avctx, AV_LOG_WARNING, "Failed to parse level\n");
590 for (i = 0; i<x264_levels[i].level_idc; i++)
591 if (x264_levels[i].level_idc == level_id)
592 x4->params.i_frame_reference = av_clip(x264_levels[i].dpb / mbn / scale, 1, x4->params.i_frame_reference);
595 if (avctx->trellis >= 0)
596 x4->params.analyse.i_trellis = avctx->trellis;
597 if (avctx->me_range >= 0)
598 x4->params.analyse.i_me_range = avctx->me_range;
599 #if FF_API_PRIVATE_OPT
600 FF_DISABLE_DEPRECATION_WARNINGS
601 if (avctx->noise_reduction >= 0)
602 x4->noise_reduction = avctx->noise_reduction;
603 FF_ENABLE_DEPRECATION_WARNINGS
605 if (x4->noise_reduction >= 0)
606 x4->params.analyse.i_noise_reduction = x4->noise_reduction;
607 if (avctx->me_subpel_quality >= 0)
608 x4->params.analyse.i_subpel_refine = avctx->me_subpel_quality;
609 #if FF_API_PRIVATE_OPT
610 FF_DISABLE_DEPRECATION_WARNINGS
611 if (avctx->b_frame_strategy >= 0)
612 x4->b_frame_strategy = avctx->b_frame_strategy;
613 FF_ENABLE_DEPRECATION_WARNINGS
615 if (avctx->keyint_min >= 0)
616 x4->params.i_keyint_min = avctx->keyint_min;
617 #if FF_API_CODER_TYPE
618 FF_DISABLE_DEPRECATION_WARNINGS
619 if (avctx->coder_type >= 0)
620 x4->coder = avctx->coder_type == FF_CODER_TYPE_AC;
621 FF_ENABLE_DEPRECATION_WARNINGS
623 if (avctx->me_cmp >= 0)
624 x4->params.analyse.b_chroma_me = avctx->me_cmp & FF_CMP_CHROMA;
626 if (x4->aq_mode >= 0)
627 x4->params.rc.i_aq_mode = x4->aq_mode;
628 if (x4->aq_strength >= 0)
629 x4->params.rc.f_aq_strength = x4->aq_strength;
630 PARSE_X264_OPT("psy-rd", psy_rd);
631 PARSE_X264_OPT("deblock", deblock);
632 PARSE_X264_OPT("partitions", partitions);
633 PARSE_X264_OPT("stats", stats);
635 x4->params.analyse.b_psy = x4->psy;
636 if (x4->rc_lookahead >= 0)
637 x4->params.rc.i_lookahead = x4->rc_lookahead;
638 if (x4->weightp >= 0)
639 x4->params.analyse.i_weighted_pred = x4->weightp;
640 if (x4->weightb >= 0)
641 x4->params.analyse.b_weighted_bipred = x4->weightb;
642 if (x4->cplxblur >= 0)
643 x4->params.rc.f_complexity_blur = x4->cplxblur;
646 x4->params.analyse.b_ssim = x4->ssim;
647 if (x4->intra_refresh >= 0)
648 x4->params.b_intra_refresh = x4->intra_refresh;
649 if (x4->bluray_compat >= 0) {
650 x4->params.b_bluray_compat = x4->bluray_compat;
651 x4->params.b_vfr_input = 0;
653 if (x4->avcintra_class >= 0)
654 #if X264_BUILD >= 142
655 x4->params.i_avcintra_class = x4->avcintra_class;
657 av_log(avctx, AV_LOG_ERROR,
658 "x264 too old for AVC Intra, at least version 142 needed\n");
660 if (x4->b_bias != INT_MIN)
661 x4->params.i_bframe_bias = x4->b_bias;
662 if (x4->b_pyramid >= 0)
663 x4->params.i_bframe_pyramid = x4->b_pyramid;
664 if (x4->mixed_refs >= 0)
665 x4->params.analyse.b_mixed_references = x4->mixed_refs;
667 x4->params.analyse.b_transform_8x8 = x4->dct8x8;
668 if (x4->fast_pskip >= 0)
669 x4->params.analyse.b_fast_pskip = x4->fast_pskip;
671 x4->params.b_aud = x4->aud;
673 x4->params.rc.b_mb_tree = x4->mbtree;
674 if (x4->direct_pred >= 0)
675 x4->params.analyse.i_direct_mv_pred = x4->direct_pred;
677 if (x4->slice_max_size >= 0)
678 x4->params.i_slice_max_size = x4->slice_max_size;
680 if (x4->fastfirstpass)
681 x264_param_apply_fastfirstpass(&x4->params);
683 /* Allow specifying the x264 profile through AVCodecContext. */
685 switch (avctx->profile) {
686 case FF_PROFILE_H264_BASELINE:
687 x4->profile = av_strdup("baseline");
689 case FF_PROFILE_H264_HIGH:
690 x4->profile = av_strdup("high");
692 case FF_PROFILE_H264_HIGH_10:
693 x4->profile = av_strdup("high10");
695 case FF_PROFILE_H264_HIGH_422:
696 x4->profile = av_strdup("high422");
698 case FF_PROFILE_H264_HIGH_444:
699 x4->profile = av_strdup("high444");
701 case FF_PROFILE_H264_MAIN:
702 x4->profile = av_strdup("main");
708 if (x4->nal_hrd >= 0)
709 x4->params.i_nal_hrd = x4->nal_hrd;
711 if (x4->motion_est >= 0)
712 x4->params.analyse.i_me_method = x4->motion_est;
715 x4->params.b_cabac = x4->coder;
717 if (x4->b_frame_strategy >= 0)
718 x4->params.i_bframe_adaptive = x4->b_frame_strategy;
721 if (x264_param_apply_profile(&x4->params, x4->profile) < 0) {
723 av_log(avctx, AV_LOG_ERROR, "Error setting profile %s.\n", x4->profile);
724 av_log(avctx, AV_LOG_INFO, "Possible profiles:");
725 for (i = 0; x264_profile_names[i]; i++)
726 av_log(avctx, AV_LOG_INFO, " %s", x264_profile_names[i]);
727 av_log(avctx, AV_LOG_INFO, "\n");
728 return AVERROR(EINVAL);
731 x4->params.i_width = avctx->width;
732 x4->params.i_height = avctx->height;
733 av_reduce(&sw, &sh, avctx->sample_aspect_ratio.num, avctx->sample_aspect_ratio.den, 4096);
734 x4->params.vui.i_sar_width = sw;
735 x4->params.vui.i_sar_height = sh;
736 x4->params.i_timebase_den = avctx->time_base.den;
737 x4->params.i_timebase_num = avctx->time_base.num;
738 x4->params.i_fps_num = avctx->time_base.den;
739 x4->params.i_fps_den = avctx->time_base.num * avctx->ticks_per_frame;
741 x4->params.analyse.b_psnr = avctx->flags & AV_CODEC_FLAG_PSNR;
743 x4->params.i_threads = avctx->thread_count;
744 if (avctx->thread_type)
745 x4->params.b_sliced_threads = avctx->thread_type == FF_THREAD_SLICE;
747 x4->params.b_interlaced = avctx->flags & AV_CODEC_FLAG_INTERLACED_DCT;
749 x4->params.b_open_gop = !(avctx->flags & AV_CODEC_FLAG_CLOSED_GOP);
751 x4->params.i_slice_count = avctx->slices;
753 x4->params.vui.b_fullrange = avctx->pix_fmt == AV_PIX_FMT_YUVJ420P ||
754 avctx->pix_fmt == AV_PIX_FMT_YUVJ422P ||
755 avctx->pix_fmt == AV_PIX_FMT_YUVJ444P ||
756 avctx->color_range == AVCOL_RANGE_JPEG;
758 if (avctx->colorspace != AVCOL_SPC_UNSPECIFIED)
759 x4->params.vui.i_colmatrix = avctx->colorspace;
760 if (avctx->color_primaries != AVCOL_PRI_UNSPECIFIED)
761 x4->params.vui.i_colorprim = avctx->color_primaries;
762 if (avctx->color_trc != AVCOL_TRC_UNSPECIFIED)
763 x4->params.vui.i_transfer = avctx->color_trc;
765 if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER)
766 x4->params.b_repeat_headers = 0;
769 const char *p= x4->x264opts;
771 char param[4096]={0}, val[4096]={0};
772 if(sscanf(p, "%4095[^:=]=%4095[^:]", param, val) == 1){
781 if (x4->x264_params) {
782 AVDictionary *dict = NULL;
783 AVDictionaryEntry *en = NULL;
785 if (!av_dict_parse_string(&dict, x4->x264_params, "=", ":", 0)) {
786 while ((en = av_dict_get(dict, "", en, AV_DICT_IGNORE_SUFFIX))) {
787 if (x264_param_parse(&x4->params, en->key, en->value) < 0)
788 av_log(avctx, AV_LOG_WARNING,
789 "Error parsing option '%s = %s'.\n",
797 // update AVCodecContext with x264 parameters
798 avctx->has_b_frames = x4->params.i_bframe ?
799 x4->params.i_bframe_pyramid ? 2 : 1 : 0;
800 if (avctx->max_b_frames < 0)
801 avctx->max_b_frames = 0;
803 avctx->bit_rate = x4->params.rc.i_bitrate*1000;
805 x4->enc = x264_encoder_open(&x4->params);
807 return AVERROR_EXTERNAL;
809 if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER) {
814 s = x264_encoder_headers(x4->enc, &nal, &nnal);
815 avctx->extradata = p = av_mallocz(s + AV_INPUT_BUFFER_PADDING_SIZE);
817 return AVERROR(ENOMEM);
819 for (i = 0; i < nnal; i++) {
820 /* Don't put the SEI in extradata. */
821 if (nal[i].i_type == NAL_SEI) {
822 av_log(avctx, AV_LOG_INFO, "%s\n", nal[i].p_payload+25);
823 x4->sei_size = nal[i].i_payload;
824 x4->sei = av_malloc(x4->sei_size);
826 return AVERROR(ENOMEM);
827 memcpy(x4->sei, nal[i].p_payload, nal[i].i_payload);
830 memcpy(p, nal[i].p_payload, nal[i].i_payload);
831 p += nal[i].i_payload;
833 avctx->extradata_size = p - avctx->extradata;
836 cpb_props = ff_add_cpb_side_data(avctx);
838 return AVERROR(ENOMEM);
839 cpb_props->buffer_size = x4->params.rc.i_vbv_buffer_size * 1000;
840 cpb_props->max_bitrate = x4->params.rc.i_vbv_max_bitrate * 1000;
841 cpb_props->avg_bitrate = x4->params.rc.i_bitrate * 1000;
846 static const enum AVPixelFormat pix_fmts_8bit[] = {
860 static const enum AVPixelFormat pix_fmts_9bit[] = {
865 static const enum AVPixelFormat pix_fmts_10bit[] = {
866 AV_PIX_FMT_YUV420P10,
867 AV_PIX_FMT_YUV422P10,
868 AV_PIX_FMT_YUV444P10,
872 static const enum AVPixelFormat pix_fmts_all[] = {
884 AV_PIX_FMT_YUV420P10,
885 AV_PIX_FMT_YUV422P10,
886 AV_PIX_FMT_YUV444P10,
890 #if CONFIG_LIBX264RGB_ENCODER
891 static const enum AVPixelFormat pix_fmts_8bit_rgb[] = {
899 static av_cold void X264_init_static(AVCodec *codec)
902 if (x264_bit_depth == 8)
903 codec->pix_fmts = pix_fmts_8bit;
904 else if (x264_bit_depth == 9)
905 codec->pix_fmts = pix_fmts_9bit;
906 else if (x264_bit_depth == 10)
907 codec->pix_fmts = pix_fmts_10bit;
909 codec->pix_fmts = pix_fmts_all;
913 #define OFFSET(x) offsetof(X264Context, x)
914 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
915 static const AVOption options[] = {
916 { "preset", "Set the encoding preset (cf. x264 --fullhelp)", OFFSET(preset), AV_OPT_TYPE_STRING, { .str = "medium" }, 0, 0, VE},
917 { "tune", "Tune the encoding params (cf. x264 --fullhelp)", OFFSET(tune), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
918 { "profile", "Set profile restrictions (cf. x264 --fullhelp) ", OFFSET(profile), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
919 { "fastfirstpass", "Use fast settings when encoding first pass", OFFSET(fastfirstpass), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, VE},
920 {"level", "Specify level (as defined by Annex A)", OFFSET(level), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
921 {"passlogfile", "Filename for 2 pass stats", OFFSET(stats), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
922 {"wpredp", "Weighted prediction for P-frames", OFFSET(wpredp), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
923 {"a53cc", "Use A53 Closed Captions (if available)", OFFSET(a53_cc), AV_OPT_TYPE_BOOL, {.i64 = 1}, 0, 1, VE},
924 {"x264opts", "x264 options", OFFSET(x264opts), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
925 { "crf", "Select the quality for constant quality mode", OFFSET(crf), AV_OPT_TYPE_FLOAT, {.dbl = -1 }, -1, FLT_MAX, VE },
926 { "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 },
927 { "qp", "Constant quantization parameter rate control method",OFFSET(cqp), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE },
928 { "aq-mode", "AQ method", OFFSET(aq_mode), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE, "aq_mode"},
929 { "none", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_NONE}, INT_MIN, INT_MAX, VE, "aq_mode" },
930 { "variance", "Variance AQ (complexity mask)", 0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_VARIANCE}, INT_MIN, INT_MAX, VE, "aq_mode" },
931 { "autovariance", "Auto-variance AQ", 0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_AUTOVARIANCE}, INT_MIN, INT_MAX, VE, "aq_mode" },
932 #if X264_BUILD >= 144
933 { "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" },
935 { "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},
936 { "psy", "Use psychovisual optimizations.", OFFSET(psy), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE },
937 { "psy-rd", "Strength of psychovisual optimization, in <psy-rd>:<psy-trellis> format.", OFFSET(psy_rd), AV_OPT_TYPE_STRING, {0 }, 0, 0, VE},
938 { "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 },
939 { "weightb", "Weighted prediction for B-frames.", OFFSET(weightb), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE },
940 { "weightp", "Weighted prediction analysis method.", OFFSET(weightp), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE, "weightp" },
941 { "none", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_NONE}, INT_MIN, INT_MAX, VE, "weightp" },
942 { "simple", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_SIMPLE}, INT_MIN, INT_MAX, VE, "weightp" },
943 { "smart", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_SMART}, INT_MIN, INT_MAX, VE, "weightp" },
944 { "ssim", "Calculate and print SSIM stats.", OFFSET(ssim), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE },
945 { "intra-refresh", "Use Periodic Intra Refresh instead of IDR frames.",OFFSET(intra_refresh),AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE },
946 { "bluray-compat", "Bluray compatibility workarounds.", OFFSET(bluray_compat) ,AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE },
947 { "b-bias", "Influences how often B-frames are used", OFFSET(b_bias), AV_OPT_TYPE_INT, { .i64 = INT_MIN}, INT_MIN, INT_MAX, VE },
948 { "b-pyramid", "Keep some B-frames as references.", OFFSET(b_pyramid), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE, "b_pyramid" },
949 { "none", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_B_PYRAMID_NONE}, INT_MIN, INT_MAX, VE, "b_pyramid" },
950 { "strict", "Strictly hierarchical pyramid", 0, AV_OPT_TYPE_CONST, {.i64 = X264_B_PYRAMID_STRICT}, INT_MIN, INT_MAX, VE, "b_pyramid" },
951 { "normal", "Non-strict (not Blu-ray compatible)", 0, AV_OPT_TYPE_CONST, {.i64 = X264_B_PYRAMID_NORMAL}, INT_MIN, INT_MAX, VE, "b_pyramid" },
952 { "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 },
953 { "8x8dct", "High profile 8x8 transform.", OFFSET(dct8x8), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE},
954 { "fast-pskip", NULL, OFFSET(fast_pskip), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE},
955 { "aud", "Use access unit delimiters.", OFFSET(aud), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE},
956 { "mbtree", "Use macroblock tree ratecontrol.", OFFSET(mbtree), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE},
957 { "deblock", "Loop filter parameters, in <alpha:beta> form.", OFFSET(deblock), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
958 { "cplxblur", "Reduce fluctuations in QP (before curve compression)", OFFSET(cplxblur), AV_OPT_TYPE_FLOAT, {.dbl = -1 }, -1, FLT_MAX, VE},
959 { "partitions", "A comma-separated list of partitions to consider. "
960 "Possible values: p8x8, p4x4, b8x8, i8x8, i4x4, none, all", OFFSET(partitions), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
961 { "direct-pred", "Direct MV prediction mode", OFFSET(direct_pred), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE, "direct-pred" },
962 { "none", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_NONE }, 0, 0, VE, "direct-pred" },
963 { "spatial", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_SPATIAL }, 0, 0, VE, "direct-pred" },
964 { "temporal", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_TEMPORAL }, 0, 0, VE, "direct-pred" },
965 { "auto", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_AUTO }, 0, 0, VE, "direct-pred" },
966 { "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 },
967 { "stats", "Filename for 2 pass stats", OFFSET(stats), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE },
968 { "nal-hrd", "Signal HRD information (requires vbv-bufsize; "
969 "cbr not allowed in .mp4)", OFFSET(nal_hrd), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE, "nal-hrd" },
970 { "none", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_NONE}, INT_MIN, INT_MAX, VE, "nal-hrd" },
971 { "vbr", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_VBR}, INT_MIN, INT_MAX, VE, "nal-hrd" },
972 { "cbr", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_CBR}, INT_MIN, INT_MAX, VE, "nal-hrd" },
973 { "avcintra-class","AVC-Intra class 50/100/200", OFFSET(avcintra_class),AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 200 , VE},
974 { "me_method", "Set motion estimation method", OFFSET(motion_est), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, X264_ME_TESA, VE, "motion-est"},
975 { "motion-est", "Set motion estimation method", OFFSET(motion_est), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, X264_ME_TESA, VE, "motion-est"},
976 { "dia", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_DIA }, INT_MIN, INT_MAX, VE, "motion-est" },
977 { "hex", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_HEX }, INT_MIN, INT_MAX, VE, "motion-est" },
978 { "umh", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_UMH }, INT_MIN, INT_MAX, VE, "motion-est" },
979 { "esa", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_ESA }, INT_MIN, INT_MAX, VE, "motion-est" },
980 { "tesa", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_TESA }, INT_MIN, INT_MAX, VE, "motion-est" },
981 { "forced-idr", "If forcing keyframes, force them as IDR frames.", OFFSET(forced_idr), AV_OPT_TYPE_BOOL, { .i64 = 0 }, -1, 1, VE },
982 { "coder", "Coder type", OFFSET(coder), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE, "coder" },
983 { "default", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = -1 }, INT_MIN, INT_MAX, VE, "coder" },
984 { "cavlc", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, INT_MIN, INT_MAX, VE, "coder" },
985 { "cabac", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, INT_MIN, INT_MAX, VE, "coder" },
986 { "vlc", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, INT_MIN, INT_MAX, VE, "coder" },
987 { "ac", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, INT_MIN, INT_MAX, VE, "coder" },
988 { "b_strategy", "Strategy to choose between I/P/B-frames", OFFSET(b_frame_strategy), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 2, VE },
989 { "chromaoffset", "QP difference between chroma and luma", OFFSET(chroma_offset), AV_OPT_TYPE_INT, { .i64 = -1 }, INT_MIN, INT_MAX, VE },
990 { "sc_threshold", "Scene change threshold", OFFSET(scenechange_threshold), AV_OPT_TYPE_INT, { .i64 = -1 }, INT_MIN, INT_MAX, VE },
991 { "noise_reduction", "Noise reduction", OFFSET(noise_reduction), AV_OPT_TYPE_INT, { .i64 = -1 }, INT_MIN, INT_MAX, VE },
993 { "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 },
997 static const AVCodecDefault x264_defaults[] = {
1002 { "i_qfactor", "-1" },
1003 { "b_qfactor", "-1" },
1009 // { "rc_lookahead", "-1" },
1011 #if FF_API_PRIVATE_OPT
1012 { "sc_threshold", "-1" },
1014 { "trellis", "-1" },
1015 #if FF_API_PRIVATE_OPT
1018 { "me_range", "-1" },
1020 #if FF_API_PRIVATE_OPT
1021 { "b_strategy", "-1" },
1023 { "keyint_min", "-1" },
1024 #if FF_API_CODER_TYPE
1028 { "threads", AV_STRINGIFY(X264_THREADS_AUTO) },
1029 { "thread_type", "0" },
1030 { "flags", "+cgop" },
1031 { "rc_init_occupancy","-1" },
1035 #if CONFIG_LIBX264_ENCODER
1036 static const AVClass x264_class = {
1037 .class_name = "libx264",
1038 .item_name = av_default_item_name,
1040 .version = LIBAVUTIL_VERSION_INT,
1043 AVCodec ff_libx264_encoder = {
1045 .long_name = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
1046 .type = AVMEDIA_TYPE_VIDEO,
1047 .id = AV_CODEC_ID_H264,
1048 .priv_data_size = sizeof(X264Context),
1050 .encode2 = X264_frame,
1051 .close = X264_close,
1052 .capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AUTO_THREADS,
1053 .priv_class = &x264_class,
1054 .defaults = x264_defaults,
1055 .init_static_data = X264_init_static,
1056 .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE |
1057 FF_CODEC_CAP_INIT_CLEANUP,
1058 .wrapper_name = "libx264",
1062 #if CONFIG_LIBX264RGB_ENCODER
1063 static const AVClass rgbclass = {
1064 .class_name = "libx264rgb",
1065 .item_name = av_default_item_name,
1067 .version = LIBAVUTIL_VERSION_INT,
1070 AVCodec ff_libx264rgb_encoder = {
1071 .name = "libx264rgb",
1072 .long_name = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 RGB"),
1073 .type = AVMEDIA_TYPE_VIDEO,
1074 .id = AV_CODEC_ID_H264,
1075 .priv_data_size = sizeof(X264Context),
1077 .encode2 = X264_frame,
1078 .close = X264_close,
1079 .capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AUTO_THREADS,
1080 .priv_class = &rgbclass,
1081 .defaults = x264_defaults,
1082 .pix_fmts = pix_fmts_8bit_rgb,
1083 .wrapper_name = "libx264",
1087 #if CONFIG_LIBX262_ENCODER
1088 static const AVClass X262_class = {
1089 .class_name = "libx262",
1090 .item_name = av_default_item_name,
1092 .version = LIBAVUTIL_VERSION_INT,
1095 AVCodec ff_libx262_encoder = {
1097 .long_name = NULL_IF_CONFIG_SMALL("libx262 MPEG2VIDEO"),
1098 .type = AVMEDIA_TYPE_VIDEO,
1099 .id = AV_CODEC_ID_MPEG2VIDEO,
1100 .priv_data_size = sizeof(X264Context),
1102 .encode2 = X264_frame,
1103 .close = X264_close,
1104 .capabilities = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AUTO_THREADS,
1105 .priv_class = &X262_class,
1106 .defaults = x264_defaults,
1107 .pix_fmts = pix_fmts_8bit,
1108 .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE |
1109 FF_CODEC_CAP_INIT_CLEANUP,
1110 .wrapper_name = "libx264",