FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
libx264.c
Go to the documentation of this file.
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 
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"
29 #include "avcodec.h"
30 #include "internal.h"
31 
32 #if defined(_MSC_VER)
33 #define X264_API_IMPORTS 1
34 #endif
35 
36 #include <x264.h>
37 #include <float.h>
38 #include <math.h>
39 #include <stdio.h>
40 #include <stdlib.h>
41 #include <string.h>
42 
43 typedef struct X264Context {
44  AVClass *class;
45  x264_param_t params;
46  x264_t *enc;
47  x264_picture_t pic;
49  int sei_size;
50  char *preset;
51  char *tune;
52  char *profile;
53  char *level;
55  char *wpredp;
56  char *x264opts;
57  float crf;
58  float crf_max;
59  int cqp;
60  int aq_mode;
61  float aq_strength;
62  char *psy_rd;
63  int psy;
65  int weightp;
66  int weightb;
67  int ssim;
70  int b_bias;
71  int b_pyramid;
73  int dct8x8;
75  int aud;
76  int mbtree;
77  char *deblock;
78  float cplxblur;
79  char *partitions;
82  char *stats;
83  int nal_hrd;
87  int coder;
88  int a53_cc;
93 
94  char *x264_params;
95 } X264Context;
96 
97 static void X264_log(void *p, int level, const char *fmt, va_list args)
98 {
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
104  };
105 
106  if (level < 0 || level > X264_LOG_DEBUG)
107  return;
108 
109  av_vlog(p, level_map[level], fmt, args);
110 }
111 
112 
114  const x264_nal_t *nals, int nnal)
115 {
116  X264Context *x4 = ctx->priv_data;
117  uint8_t *p;
118  int i, size = x4->sei_size, ret;
119 
120  if (!nnal)
121  return 0;
122 
123  for (i = 0; i < nnal; i++)
124  size += nals[i].i_payload;
125 
126  if ((ret = ff_alloc_packet2(ctx, pkt, size, 0)) < 0)
127  return ret;
128 
129  p = pkt->data;
130 
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");
135  return -1;
136  }
137  memcpy(p, x4->sei, x4->sei_size);
138  p += x4->sei_size;
139  x4->sei_size = 0;
140  av_freep(&x4->sei);
141  }
142 
143  for (i = 0; i < nnal; i++){
144  memcpy(p, nals[i].p_payload, nals[i].i_payload);
145  p += nals[i].i_payload;
146  }
147 
148  return 1;
149 }
150 
151 static int avfmt2_num_planes(int avfmt)
152 {
153  switch (avfmt) {
154  case AV_PIX_FMT_YUV420P:
155  case AV_PIX_FMT_YUVJ420P:
156  case AV_PIX_FMT_YUV420P9:
158  case AV_PIX_FMT_YUV444P:
159  return 3;
160 
161  case AV_PIX_FMT_BGR0:
162  case AV_PIX_FMT_BGR24:
163  case AV_PIX_FMT_RGB24:
164  return 1;
165 
166  default:
167  return 3;
168  }
169 }
170 
172 {
173  X264Context *x4 = ctx->priv_data;
174  AVFrameSideData *side_data;
175 
176 
177  if (x4->avcintra_class < 0) {
178  if (x4->params.b_interlaced && x4->params.b_tff != frame->top_field_first) {
179 
180  x4->params.b_tff = frame->top_field_first;
181  x264_encoder_reconfig(x4->enc, &x4->params);
182  }
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);
187  }
188 
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);
194  }
195 
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);
200  }
201 
202  if (x4->crf >= 0 &&
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);
207  }
208 
209  if (x4->params.rc.i_rc_method == X264_RC_CQP &&
210  x4->cqp >= 0 &&
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);
214  }
215 
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);
220  }
221  }
222 
224  if (side_data) {
225  AVStereo3D *stereo = (AVStereo3D *)side_data->data;
226  int fpa_type;
227 
228  switch (stereo->type) {
230  fpa_type = 0;
231  break;
232  case AV_STEREO3D_COLUMNS:
233  fpa_type = 1;
234  break;
235  case AV_STEREO3D_LINES:
236  fpa_type = 2;
237  break;
239  fpa_type = 3;
240  break;
242  fpa_type = 4;
243  break;
245  fpa_type = 5;
246  break;
247 #if X264_BUILD >= 145
248  case AV_STEREO3D_2D:
249  fpa_type = 6;
250  break;
251 #endif
252  default:
253  fpa_type = -1;
254  break;
255  }
256 
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);
261  fpa_type = -1;
262  }
263 
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);
267  }
268  }
269 }
270 
272  int *got_packet)
273 {
274  X264Context *x4 = ctx->priv_data;
275  x264_nal_t *nal;
276  int nnal, i, ret;
277  x264_picture_t pic_out = {0};
278  int pict_type;
279 
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)
284 #else
285  if (x264_bit_depth > 8)
286 #endif
287  x4->pic.img.i_csp |= X264_CSP_HIGH_DEPTH;
288  x4->pic.img.i_plane = avfmt2_num_planes(ctx->pix_fmt);
289 
290  if (frame) {
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];
294  }
295 
296  x4->pic.i_pts = frame->pts;
297 
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;
302  break;
303  case AV_PICTURE_TYPE_P:
304  x4->pic.i_type = X264_TYPE_P;
305  break;
306  case AV_PICTURE_TYPE_B:
307  x4->pic.i_type = X264_TYPE_B;
308  break;
309  default:
310  x4->pic.i_type = X264_TYPE_AUTO;
311  break;
312  }
313  reconfig_encoder(ctx, frame);
314 
315  if (x4->a53_cc) {
316  void *sei_data;
317  size_t sei_size;
318 
319  ret = ff_alloc_a53_sei(frame, 0, &sei_data, &sei_size);
320  if (ret < 0) {
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");
326  av_free(sei_data);
327  } else {
328  x4->pic.extra_sei.sei_free = av_free;
329 
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;
334  }
335  }
336  }
337  }
338 
339  do {
340  if (x264_encoder_encode(x4->enc, &nal, &nnal, frame? &x4->pic: NULL, &pic_out) < 0)
341  return AVERROR_EXTERNAL;
342 
343  ret = encode_nals(ctx, pkt, nal, nnal);
344  if (ret < 0)
345  return ret;
346  } while (!ret && !frame && x264_encoder_delayed_frames(x4->enc));
347 
348  pkt->pts = pic_out.i_pts;
349  pkt->dts = pic_out.i_dts;
350 
351 
352  switch (pic_out.i_type) {
353  case X264_TYPE_IDR:
354  case X264_TYPE_I:
355  pict_type = AV_PICTURE_TYPE_I;
356  break;
357  case X264_TYPE_P:
358  pict_type = AV_PICTURE_TYPE_P;
359  break;
360  case X264_TYPE_B:
361  case X264_TYPE_BREF:
362  pict_type = AV_PICTURE_TYPE_B;
363  break;
364  default:
365  pict_type = AV_PICTURE_TYPE_NONE;
366  }
367 #if FF_API_CODED_FRAME
369  ctx->coded_frame->pict_type = pict_type;
371 #endif
372 
373  pkt->flags |= AV_PKT_FLAG_KEY*pic_out.b_keyframe;
374  if (ret) {
375  ff_side_data_set_encoder_stats(pkt, (pic_out.i_qpplus1 - 1) * FF_QP2LAMBDA, NULL, 0, pict_type);
376 
377 #if FF_API_CODED_FRAME
379  ctx->coded_frame->quality = (pic_out.i_qpplus1 - 1) * FF_QP2LAMBDA;
381 #endif
382  }
383 
384  *got_packet = ret;
385  return 0;
386 }
387 
389 {
390  X264Context *x4 = avctx->priv_data;
391 
392  av_freep(&avctx->extradata);
393  av_freep(&x4->sei);
394 
395  if (x4->enc) {
396  x264_encoder_close(x4->enc);
397  x4->enc = NULL;
398  }
399 
400  return 0;
401 }
402 
403 #define OPT_STR(opt, param) \
404  do { \
405  int ret; \
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); \
410  else \
411  av_log(avctx, AV_LOG_ERROR, \
412  "bad value for '%s': '%s'\n", opt, param); \
413  return -1; \
414  } \
415  } while (0)
416 
418 {
419  switch (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:
435  return X264_CSP_BGR;
436 
437  case AV_PIX_FMT_RGB24:
438  return X264_CSP_RGB;
439 #endif
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;
443 #ifdef X264_CSP_NV21
444  case AV_PIX_FMT_NV21: return X264_CSP_NV21;
445 #endif
446  };
447  return 0;
448 }
449 
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);\
454  }
455 
456 static av_cold int X264_init(AVCodecContext *avctx)
457 {
458  X264Context *x4 = avctx->priv_data;
459  AVCPBProperties *cpb_props;
460  int sw,sh;
461 
462  if (avctx->global_quality > 0)
463  av_log(avctx, AV_LOG_WARNING, "-qscale is ignored, -crf is recommended.\n");
464 
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);
469  } else
470 #endif
471  x264_param_default(&x4->params);
472 
473  x4->params.b_deblocking_filter = avctx->flags & AV_CODEC_FLAG_LOOP_FILTER;
474 
475  if (x4->preset || x4->tune)
476  if (x264_param_default_preset(&x4->params, x4->preset, x4->tune) < 0) {
477  int i;
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);
488  }
489 
490  if (avctx->level > 0)
491  x4->params.i_level_idc = avctx->level;
492 
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;
499 #endif
500 
501  PARSE_X264_OPT("weightp", wpredp);
502 
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;
506  }
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;
512  } else {
513  if (x4->crf >= 0) {
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;
519  }
520 
521  if (x4->crf_max >= 0)
522  x4->params.rc.f_rf_constant_max = x4->crf_max;
523  }
524 
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;
529  }
530 
531  PARSE_X264_OPT("level", level);
532 
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;
537 
538 #if FF_API_PRIVATE_OPT
540  if (avctx->chromaoffset >= 0)
541  x4->chroma_offset = avctx->chromaoffset;
543 #endif
544  if (x4->chroma_offset >= 0)
545  x4->params.analyse.i_chroma_qp_offset = x4->chroma_offset;
546 
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;
551 
552 #if FF_API_PRIVATE_OPT
554  if (avctx->scenechange_threshold >= 0)
557 #endif
558  if (x4->scenechange_threshold >= 0)
559  x4->params.i_scenecut_threshold = x4->scenechange_threshold;
560 
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) {
574  int i;
575  int mbn = AV_CEIL_RSHIFT(avctx->width, 4) * AV_CEIL_RSHIFT(avctx->height, 4);
576  int level_id = -1;
577  char *tail;
578  int scale = X264_BUILD < 129 ? 384 : 1;
579 
580  if (!strcmp(x4->level, "1b")) {
581  level_id = 9;
582  } else if (strlen(x4->level) <= 3){
583  level_id = av_strtod(x4->level, &tail) * 10 + 0.5;
584  if (*tail)
585  level_id = -1;
586  }
587  if (level_id <= 0)
588  av_log(avctx, AV_LOG_WARNING, "Failed to parse level\n");
589 
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);
593  }
594 
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
601  if (avctx->noise_reduction >= 0)
602  x4->noise_reduction = avctx->noise_reduction;
604 #endif
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
611  if (avctx->b_frame_strategy >= 0)
612  x4->b_frame_strategy = avctx->b_frame_strategy;
614 #endif
615  if (avctx->keyint_min >= 0)
616  x4->params.i_keyint_min = avctx->keyint_min;
617 #if FF_API_CODER_TYPE
619  if (avctx->coder_type >= 0)
620  x4->coder = avctx->coder_type == FF_CODER_TYPE_AC;
622 #endif
623  if (avctx->me_cmp >= 0)
624  x4->params.analyse.b_chroma_me = avctx->me_cmp & FF_CMP_CHROMA;
625 
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);
634  if (x4->psy >= 0)
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;
644 
645  if (x4->ssim >= 0)
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;
652  }
653  if (x4->avcintra_class >= 0)
654 #if X264_BUILD >= 142
655  x4->params.i_avcintra_class = x4->avcintra_class;
656 #else
657  av_log(avctx, AV_LOG_ERROR,
658  "x264 too old for AVC Intra, at least version 142 needed\n");
659 #endif
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;
666  if (x4->dct8x8 >= 0)
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;
670  if (x4->aud >= 0)
671  x4->params.b_aud = x4->aud;
672  if (x4->mbtree >= 0)
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;
676 
677  if (x4->slice_max_size >= 0)
678  x4->params.i_slice_max_size = x4->slice_max_size;
679 
680  if (x4->fastfirstpass)
681  x264_param_apply_fastfirstpass(&x4->params);
682 
683  /* Allow specifying the x264 profile through AVCodecContext. */
684  if (!x4->profile)
685  switch (avctx->profile) {
687  x4->profile = av_strdup("baseline");
688  break;
690  x4->profile = av_strdup("high");
691  break;
693  x4->profile = av_strdup("high10");
694  break;
696  x4->profile = av_strdup("high422");
697  break;
699  x4->profile = av_strdup("high444");
700  break;
702  x4->profile = av_strdup("main");
703  break;
704  default:
705  break;
706  }
707 
708  if (x4->nal_hrd >= 0)
709  x4->params.i_nal_hrd = x4->nal_hrd;
710 
711  if (x4->motion_est >= 0) {
712  x4->params.analyse.i_me_method = x4->motion_est;
713 #if FF_API_MOTION_EST
715  } else {
716  if (avctx->me_method == ME_EPZS)
717  x4->params.analyse.i_me_method = X264_ME_DIA;
718  else if (avctx->me_method == ME_HEX)
719  x4->params.analyse.i_me_method = X264_ME_HEX;
720  else if (avctx->me_method == ME_UMH)
721  x4->params.analyse.i_me_method = X264_ME_UMH;
722  else if (avctx->me_method == ME_FULL)
723  x4->params.analyse.i_me_method = X264_ME_ESA;
724  else if (avctx->me_method == ME_TESA)
725  x4->params.analyse.i_me_method = X264_ME_TESA;
727 #endif
728  }
729 
730  if (x4->coder >= 0)
731  x4->params.b_cabac = x4->coder;
732 
733  if (x4->b_frame_strategy >= 0)
734  x4->params.i_bframe_adaptive = x4->b_frame_strategy;
735 
736  if (x4->profile)
737  if (x264_param_apply_profile(&x4->params, x4->profile) < 0) {
738  int i;
739  av_log(avctx, AV_LOG_ERROR, "Error setting profile %s.\n", x4->profile);
740  av_log(avctx, AV_LOG_INFO, "Possible profiles:");
741  for (i = 0; x264_profile_names[i]; i++)
742  av_log(avctx, AV_LOG_INFO, " %s", x264_profile_names[i]);
743  av_log(avctx, AV_LOG_INFO, "\n");
744  return AVERROR(EINVAL);
745  }
746 
747  x4->params.i_width = avctx->width;
748  x4->params.i_height = avctx->height;
749  av_reduce(&sw, &sh, avctx->sample_aspect_ratio.num, avctx->sample_aspect_ratio.den, 4096);
750  x4->params.vui.i_sar_width = sw;
751  x4->params.vui.i_sar_height = sh;
752  x4->params.i_timebase_den = avctx->time_base.den;
753  x4->params.i_timebase_num = avctx->time_base.num;
754  x4->params.i_fps_num = avctx->time_base.den;
755  x4->params.i_fps_den = avctx->time_base.num * avctx->ticks_per_frame;
756 
757  x4->params.analyse.b_psnr = avctx->flags & AV_CODEC_FLAG_PSNR;
758 
759  x4->params.i_threads = avctx->thread_count;
760  if (avctx->thread_type)
761  x4->params.b_sliced_threads = avctx->thread_type == FF_THREAD_SLICE;
762 
763  x4->params.b_interlaced = avctx->flags & AV_CODEC_FLAG_INTERLACED_DCT;
764 
765  x4->params.b_open_gop = !(avctx->flags & AV_CODEC_FLAG_CLOSED_GOP);
766 
767  x4->params.i_slice_count = avctx->slices;
768 
769  x4->params.vui.b_fullrange = avctx->pix_fmt == AV_PIX_FMT_YUVJ420P ||
770  avctx->pix_fmt == AV_PIX_FMT_YUVJ422P ||
771  avctx->pix_fmt == AV_PIX_FMT_YUVJ444P ||
772  avctx->color_range == AVCOL_RANGE_JPEG;
773 
774  if (avctx->colorspace != AVCOL_SPC_UNSPECIFIED)
775  x4->params.vui.i_colmatrix = avctx->colorspace;
777  x4->params.vui.i_colorprim = avctx->color_primaries;
778  if (avctx->color_trc != AVCOL_TRC_UNSPECIFIED)
779  x4->params.vui.i_transfer = avctx->color_trc;
780 
781  if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER)
782  x4->params.b_repeat_headers = 0;
783 
784  if(x4->x264opts){
785  const char *p= x4->x264opts;
786  while(p){
787  char param[4096]={0}, val[4096]={0};
788  if(sscanf(p, "%4095[^:=]=%4095[^:]", param, val) == 1){
789  OPT_STR(param, "1");
790  }else
791  OPT_STR(param, val);
792  p= strchr(p, ':');
793  p+=!!p;
794  }
795  }
796 
797  if (x4->x264_params) {
798  AVDictionary *dict = NULL;
799  AVDictionaryEntry *en = NULL;
800 
801  if (!av_dict_parse_string(&dict, x4->x264_params, "=", ":", 0)) {
802  while ((en = av_dict_get(dict, "", en, AV_DICT_IGNORE_SUFFIX))) {
803  if (x264_param_parse(&x4->params, en->key, en->value) < 0)
804  av_log(avctx, AV_LOG_WARNING,
805  "Error parsing option '%s = %s'.\n",
806  en->key, en->value);
807  }
808 
809  av_dict_free(&dict);
810  }
811  }
812 
813  // update AVCodecContext with x264 parameters
814  avctx->has_b_frames = x4->params.i_bframe ?
815  x4->params.i_bframe_pyramid ? 2 : 1 : 0;
816  if (avctx->max_b_frames < 0)
817  avctx->max_b_frames = 0;
818 
819  avctx->bit_rate = x4->params.rc.i_bitrate*1000;
820 
821  x4->enc = x264_encoder_open(&x4->params);
822  if (!x4->enc)
823  return AVERROR_EXTERNAL;
824 
825  if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER) {
826  x264_nal_t *nal;
827  uint8_t *p;
828  int nnal, s, i;
829 
830  s = x264_encoder_headers(x4->enc, &nal, &nnal);
832  if (!p)
833  return AVERROR(ENOMEM);
834 
835  for (i = 0; i < nnal; i++) {
836  /* Don't put the SEI in extradata. */
837  if (nal[i].i_type == NAL_SEI) {
838  av_log(avctx, AV_LOG_INFO, "%s\n", nal[i].p_payload+25);
839  x4->sei_size = nal[i].i_payload;
840  x4->sei = av_malloc(x4->sei_size);
841  if (!x4->sei)
842  return AVERROR(ENOMEM);
843  memcpy(x4->sei, nal[i].p_payload, nal[i].i_payload);
844  continue;
845  }
846  memcpy(p, nal[i].p_payload, nal[i].i_payload);
847  p += nal[i].i_payload;
848  }
849  avctx->extradata_size = p - avctx->extradata;
850  }
851 
852  cpb_props = ff_add_cpb_side_data(avctx);
853  if (!cpb_props)
854  return AVERROR(ENOMEM);
855  cpb_props->buffer_size = x4->params.rc.i_vbv_buffer_size * 1000;
856  cpb_props->max_bitrate = x4->params.rc.i_vbv_max_bitrate * 1000;
857  cpb_props->avg_bitrate = x4->params.rc.i_bitrate * 1000;
858 
859  return 0;
860 }
861 
862 static const enum AVPixelFormat pix_fmts_8bit[] = {
871 #ifdef X264_CSP_NV21
873 #endif
875 };
876 static const enum AVPixelFormat pix_fmts_9bit[] = {
880 };
881 static const enum AVPixelFormat pix_fmts_10bit[] = {
887 };
888 static const enum AVPixelFormat pix_fmts_all[] = {
897 #ifdef X264_CSP_NV21
899 #endif
905 };
906 #if CONFIG_LIBX264RGB_ENCODER
907 static const enum AVPixelFormat pix_fmts_8bit_rgb[] = {
912 };
913 #endif
914 
915 static av_cold void X264_init_static(AVCodec *codec)
916 {
917 #if X264_BUILD < 153
918  if (x264_bit_depth == 8)
919  codec->pix_fmts = pix_fmts_8bit;
920  else if (x264_bit_depth == 9)
921  codec->pix_fmts = pix_fmts_9bit;
922  else if (x264_bit_depth == 10)
923  codec->pix_fmts = pix_fmts_10bit;
924 #else
925  codec->pix_fmts = pix_fmts_all;
926 #endif
927 }
928 
929 #define OFFSET(x) offsetof(X264Context, x)
930 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
931 static const AVOption options[] = {
932  { "preset", "Set the encoding preset (cf. x264 --fullhelp)", OFFSET(preset), AV_OPT_TYPE_STRING, { .str = "medium" }, 0, 0, VE},
933  { "tune", "Tune the encoding params (cf. x264 --fullhelp)", OFFSET(tune), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
934  { "profile", "Set profile restrictions (cf. x264 --fullhelp) ", OFFSET(profile), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
935  { "fastfirstpass", "Use fast settings when encoding first pass", OFFSET(fastfirstpass), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, VE},
936  {"level", "Specify level (as defined by Annex A)", OFFSET(level), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
937  {"passlogfile", "Filename for 2 pass stats", OFFSET(stats), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
938  {"wpredp", "Weighted prediction for P-frames", OFFSET(wpredp), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
939  {"a53cc", "Use A53 Closed Captions (if available)", OFFSET(a53_cc), AV_OPT_TYPE_BOOL, {.i64 = 1}, 0, 1, VE},
940  {"x264opts", "x264 options", OFFSET(x264opts), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
941  { "crf", "Select the quality for constant quality mode", OFFSET(crf), AV_OPT_TYPE_FLOAT, {.dbl = -1 }, -1, FLT_MAX, VE },
942  { "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 },
943  { "qp", "Constant quantization parameter rate control method",OFFSET(cqp), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE },
944  { "aq-mode", "AQ method", OFFSET(aq_mode), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE, "aq_mode"},
945  { "none", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_NONE}, INT_MIN, INT_MAX, VE, "aq_mode" },
946  { "variance", "Variance AQ (complexity mask)", 0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_VARIANCE}, INT_MIN, INT_MAX, VE, "aq_mode" },
947  { "autovariance", "Auto-variance AQ", 0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_AUTOVARIANCE}, INT_MIN, INT_MAX, VE, "aq_mode" },
948 #if X264_BUILD >= 144
949  { "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" },
950 #endif
951  { "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},
952  { "psy", "Use psychovisual optimizations.", OFFSET(psy), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE },
953  { "psy-rd", "Strength of psychovisual optimization, in <psy-rd>:<psy-trellis> format.", OFFSET(psy_rd), AV_OPT_TYPE_STRING, {0 }, 0, 0, VE},
954  { "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 },
955  { "weightb", "Weighted prediction for B-frames.", OFFSET(weightb), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE },
956  { "weightp", "Weighted prediction analysis method.", OFFSET(weightp), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE, "weightp" },
957  { "none", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_NONE}, INT_MIN, INT_MAX, VE, "weightp" },
958  { "simple", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_SIMPLE}, INT_MIN, INT_MAX, VE, "weightp" },
959  { "smart", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_SMART}, INT_MIN, INT_MAX, VE, "weightp" },
960  { "ssim", "Calculate and print SSIM stats.", OFFSET(ssim), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE },
961  { "intra-refresh", "Use Periodic Intra Refresh instead of IDR frames.",OFFSET(intra_refresh),AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE },
962  { "bluray-compat", "Bluray compatibility workarounds.", OFFSET(bluray_compat) ,AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE },
963  { "b-bias", "Influences how often B-frames are used", OFFSET(b_bias), AV_OPT_TYPE_INT, { .i64 = INT_MIN}, INT_MIN, INT_MAX, VE },
964  { "b-pyramid", "Keep some B-frames as references.", OFFSET(b_pyramid), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE, "b_pyramid" },
965  { "none", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_B_PYRAMID_NONE}, INT_MIN, INT_MAX, VE, "b_pyramid" },
966  { "strict", "Strictly hierarchical pyramid", 0, AV_OPT_TYPE_CONST, {.i64 = X264_B_PYRAMID_STRICT}, INT_MIN, INT_MAX, VE, "b_pyramid" },
967  { "normal", "Non-strict (not Blu-ray compatible)", 0, AV_OPT_TYPE_CONST, {.i64 = X264_B_PYRAMID_NORMAL}, INT_MIN, INT_MAX, VE, "b_pyramid" },
968  { "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 },
969  { "8x8dct", "High profile 8x8 transform.", OFFSET(dct8x8), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE},
970  { "fast-pskip", NULL, OFFSET(fast_pskip), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE},
971  { "aud", "Use access unit delimiters.", OFFSET(aud), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE},
972  { "mbtree", "Use macroblock tree ratecontrol.", OFFSET(mbtree), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, VE},
973  { "deblock", "Loop filter parameters, in <alpha:beta> form.", OFFSET(deblock), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
974  { "cplxblur", "Reduce fluctuations in QP (before curve compression)", OFFSET(cplxblur), AV_OPT_TYPE_FLOAT, {.dbl = -1 }, -1, FLT_MAX, VE},
975  { "partitions", "A comma-separated list of partitions to consider. "
976  "Possible values: p8x8, p4x4, b8x8, i8x8, i4x4, none, all", OFFSET(partitions), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
977  { "direct-pred", "Direct MV prediction mode", OFFSET(direct_pred), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE, "direct-pred" },
978  { "none", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_NONE }, 0, 0, VE, "direct-pred" },
979  { "spatial", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_SPATIAL }, 0, 0, VE, "direct-pred" },
980  { "temporal", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_TEMPORAL }, 0, 0, VE, "direct-pred" },
981  { "auto", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_AUTO }, 0, 0, VE, "direct-pred" },
982  { "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 },
983  { "stats", "Filename for 2 pass stats", OFFSET(stats), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE },
984  { "nal-hrd", "Signal HRD information (requires vbv-bufsize; "
985  "cbr not allowed in .mp4)", OFFSET(nal_hrd), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, VE, "nal-hrd" },
986  { "none", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_NONE}, INT_MIN, INT_MAX, VE, "nal-hrd" },
987  { "vbr", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_VBR}, INT_MIN, INT_MAX, VE, "nal-hrd" },
988  { "cbr", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_CBR}, INT_MIN, INT_MAX, VE, "nal-hrd" },
989  { "avcintra-class","AVC-Intra class 50/100/200", OFFSET(avcintra_class),AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 200 , VE},
990  { "motion-est", "Set motion estimation method", OFFSET(motion_est), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, X264_ME_TESA, VE, "motion-est"},
991  { "dia", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_DIA }, INT_MIN, INT_MAX, VE, "motion-est" },
992  { "hex", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_HEX }, INT_MIN, INT_MAX, VE, "motion-est" },
993  { "umh", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_UMH }, INT_MIN, INT_MAX, VE, "motion-est" },
994  { "esa", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_ESA }, INT_MIN, INT_MAX, VE, "motion-est" },
995  { "tesa", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_TESA }, INT_MIN, INT_MAX, VE, "motion-est" },
996  { "forced-idr", "If forcing keyframes, force them as IDR frames.", OFFSET(forced_idr), AV_OPT_TYPE_BOOL, { .i64 = 0 }, -1, 1, VE },
997  { "coder", "Coder type", OFFSET(coder), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE, "coder" },
998  { "default", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = -1 }, INT_MIN, INT_MAX, VE, "coder" },
999  { "cavlc", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, INT_MIN, INT_MAX, VE, "coder" },
1000  { "cabac", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, INT_MIN, INT_MAX, VE, "coder" },
1001  { "vlc", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, INT_MIN, INT_MAX, VE, "coder" },
1002  { "ac", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, INT_MIN, INT_MAX, VE, "coder" },
1003  { "b_strategy", "Strategy to choose between I/P/B-frames", OFFSET(b_frame_strategy), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 2, VE },
1004  { "chromaoffset", "QP difference between chroma and luma", OFFSET(chroma_offset), AV_OPT_TYPE_INT, { .i64 = -1 }, INT_MIN, INT_MAX, VE },
1005  { "sc_threshold", "Scene change threshold", OFFSET(scenechange_threshold), AV_OPT_TYPE_INT, { .i64 = -1 }, INT_MIN, INT_MAX, VE },
1006  { "noise_reduction", "Noise reduction", OFFSET(noise_reduction), AV_OPT_TYPE_INT, { .i64 = -1 }, INT_MIN, INT_MAX, VE },
1007 
1008  { "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 },
1009  { NULL },
1010 };
1011 
1012 static const AVCodecDefault x264_defaults[] = {
1013  { "b", "0" },
1014  { "bf", "-1" },
1015  { "flags2", "0" },
1016  { "g", "-1" },
1017  { "i_qfactor", "-1" },
1018  { "b_qfactor", "-1" },
1019  { "qmin", "-1" },
1020  { "qmax", "-1" },
1021  { "qdiff", "-1" },
1022  { "qblur", "-1" },
1023  { "qcomp", "-1" },
1024 // { "rc_lookahead", "-1" },
1025  { "refs", "-1" },
1026 #if FF_API_PRIVATE_OPT
1027  { "sc_threshold", "-1" },
1028 #endif
1029  { "trellis", "-1" },
1030 #if FF_API_PRIVATE_OPT
1031  { "nr", "-1" },
1032 #endif
1033  { "me_range", "-1" },
1034 #if FF_API_MOTION_EST
1035  { "me_method", "-1" },
1036 #endif
1037  { "subq", "-1" },
1038 #if FF_API_PRIVATE_OPT
1039  { "b_strategy", "-1" },
1040 #endif
1041  { "keyint_min", "-1" },
1042 #if FF_API_CODER_TYPE
1043  { "coder", "-1" },
1044 #endif
1045  { "cmp", "-1" },
1046  { "threads", AV_STRINGIFY(X264_THREADS_AUTO) },
1047  { "thread_type", "0" },
1048  { "flags", "+cgop" },
1049  { "rc_init_occupancy","-1" },
1050  { NULL },
1051 };
1052 
1053 #if CONFIG_LIBX264_ENCODER
1054 static const AVClass x264_class = {
1055  .class_name = "libx264",
1056  .item_name = av_default_item_name,
1057  .option = options,
1058  .version = LIBAVUTIL_VERSION_INT,
1059 };
1060 
1061 AVCodec ff_libx264_encoder = {
1062  .name = "libx264",
1063  .long_name = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
1064  .type = AVMEDIA_TYPE_VIDEO,
1065  .id = AV_CODEC_ID_H264,
1066  .priv_data_size = sizeof(X264Context),
1067  .init = X264_init,
1068  .encode2 = X264_frame,
1069  .close = X264_close,
1071  .priv_class = &x264_class,
1072  .defaults = x264_defaults,
1073  .init_static_data = X264_init_static,
1074  .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE |
1076 };
1077 #endif
1078 
1079 #if CONFIG_LIBX264RGB_ENCODER
1080 static const AVClass rgbclass = {
1081  .class_name = "libx264rgb",
1082  .item_name = av_default_item_name,
1083  .option = options,
1084  .version = LIBAVUTIL_VERSION_INT,
1085 };
1086 
1087 AVCodec ff_libx264rgb_encoder = {
1088  .name = "libx264rgb",
1089  .long_name = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 RGB"),
1090  .type = AVMEDIA_TYPE_VIDEO,
1091  .id = AV_CODEC_ID_H264,
1092  .priv_data_size = sizeof(X264Context),
1093  .init = X264_init,
1094  .encode2 = X264_frame,
1095  .close = X264_close,
1097  .priv_class = &rgbclass,
1098  .defaults = x264_defaults,
1099  .pix_fmts = pix_fmts_8bit_rgb,
1100 };
1101 #endif
1102 
1103 #if CONFIG_LIBX262_ENCODER
1104 static const AVClass X262_class = {
1105  .class_name = "libx262",
1106  .item_name = av_default_item_name,
1107  .option = options,
1108  .version = LIBAVUTIL_VERSION_INT,
1109 };
1110 
1111 AVCodec ff_libx262_encoder = {
1112  .name = "libx262",
1113  .long_name = NULL_IF_CONFIG_SMALL("libx262 MPEG2VIDEO"),
1114  .type = AVMEDIA_TYPE_VIDEO,
1115  .id = AV_CODEC_ID_MPEG2VIDEO,
1116  .priv_data_size = sizeof(X264Context),
1117  .init = X264_init,
1118  .encode2 = X264_frame,
1119  .close = X264_close,
1121  .priv_class = &X262_class,
1122  .defaults = x264_defaults,
1124  .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE |
1126 };
1127 #endif
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Definition: internal.h:48
#define FF_PROFILE_H264_MAIN
Definition: avcodec.h:3276
static int convert_pix_fmt(enum AVPixelFormat pix_fmt)
Definition: libx264.c:417
#define NULL
Definition: coverity.c:32
const char const char void * val
Definition: avisynth_c.h:771
const char * s
Definition: avisynth_c.h:768
static enum AVPixelFormat pix_fmt
static int avfmt2_num_planes(int avfmt)
Definition: libx264.c:151
char * partitions
Definition: libx264.c:79
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
Definition: pixdesc.c:2333
This structure describes decoded (raw) audio or video data.
Definition: frame.h:187
int dct8x8
Definition: libx264.c:73
AVOption.
Definition: opt.h:246
int ff_side_data_set_encoder_stats(AVPacket *pkt, int quality, int64_t *error, int error_count, int pict_type)
Definition: avpacket.c:668
#define AV_CODEC_FLAG_INTERLACED_DCT
Use interlaced DCT.
Definition: avcodec.h:909
#define AV_CODEC_FLAG_LOOP_FILTER
loop filter.
Definition: avcodec.h:892
const char * fmt
Definition: avisynth_c.h:769
float qblur
amount of qscale smoothing over time (0.0-1.0)
Definition: avcodec.h:2668
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition: pixfmt.h:67
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
int64_t bit_rate
the average bitrate
Definition: avcodec.h:1797
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition: pixfmt.h:64
Memory handling functions.
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
int max_bitrate
Maximum bitrate of the stream, in bits per second.
Definition: avcodec.h:1351
int max_b_frames
maximum number of B-frames between non-B-frames Note: The output will be delayed by max_b_frames+1 re...
Definition: avcodec.h:2018
int noise_reduction
Definition: libx264.c:92
int rc_initial_buffer_occupancy
Number of bits which should be loaded into the rc buffer before decoding starts.
Definition: avcodec.h:2771
enum AVColorRange color_range
MPEG vs JPEG YUV range.
Definition: avcodec.h:2469
int num
Numerator.
Definition: rational.h:59
enhanced predictive zonal search
Definition: avcodec.h:801
AVRational sample_aspect_ratio
sample aspect ratio (0 if unknown) That is the width of a pixel divided by the height of the pixel...
Definition: avcodec.h:2143
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1960
int bluray_compat
Definition: libx264.c:69
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
Definition: mem.c:222
char * wpredp
Definition: libx264.c:55
static void X264_log(void *p, int level, const char *fmt, va_list args)
Definition: libx264.c:97
static AVPacket pkt
#define AV_CODEC_CAP_AUTO_THREADS
Codec supports avctx->thread_count == 0 (auto).
Definition: avcodec.h:1069
int profile
profile
Definition: avcodec.h:3235
Views are next to each other.
Definition: stereo3d.h:45
AVCodec.
Definition: avcodec.h:3681
static av_cold int X264_init(AVCodecContext *avctx)
Definition: libx264.c:456
attribute_deprecated int me_method
This option does nothing.
Definition: avcodec.h:1967
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
Definition: avcodec.h:1869
Undefined.
Definition: avutil.h:273
AVFrameSideData * av_frame_get_side_data(const AVFrame *frame, enum AVFrameSideDataType type)
Definition: frame.c:675
x264_param_t params
Definition: libx264.c:45
char * x264opts
Definition: libx264.c:56
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
Definition: avcodec.h:1019
#define FF_PROFILE_H264_BASELINE
Definition: avcodec.h:3274
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
Definition: internal.h:40
AVComponentDescriptor comp[4]
Parameters that describe how pixels are packed.
Definition: pixdesc.h:117
uint8_t
#define av_cold
Definition: attributes.h:82
#define av_malloc(s)
AVOptions.
Stereo 3D type: this structure describes how two videos are packed within a single video surface...
Definition: stereo3d.h:123
int me_range
maximum motion estimation search range in subpel units If 0 then no limit.
Definition: avcodec.h:2255
float b_quant_factor
qscale factor between IP and B-frames If > 0 then the last P-frame quantizer will be used (q= lastp_q...
Definition: avcodec.h:2027
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition: frame.h:271
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
Definition: avcodec.h:1847
int me_cmp
motion estimation comparison function
Definition: avcodec.h:2150
static AVFrame * frame
Structure to hold side data for an AVFrame.
Definition: frame.h:149
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
Definition: dict.c:40
uint8_t * data
Definition: avcodec.h:1657
int b_pyramid
Definition: libx264.c:71
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
Definition: pixfmt.h:75
x264_picture_t pic
Definition: libx264.c:47
float cplxblur
Definition: libx264.c:78
int buffer_size
The size of the buffer to which the ratecontrol is applied, in bits.
Definition: avcodec.h:1367
ptrdiff_t size
Definition: opengl_enc.c:101
#define FF_CMP_CHROMA
Definition: avcodec.h:2185
char * stats
Definition: libx264.c:82
int av_reduce(int *dst_num, int *dst_den, int64_t num, int64_t den, int64_t max)
Reduce a fraction.
Definition: rational.c:35
static enum AVPixelFormat pix_fmts_all[]
Definition: libx264.c:888
int intra_refresh
Definition: libx264.c:68
#define AV_PIX_FMT_NV20
Definition: pixfmt.h:392
Views are alternated temporally.
Definition: stereo3d.h:66
#define av_log(a,...)
int rc_lookahead
Definition: libx264.c:64
hexagon based search
Definition: avcodec.h:803
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: avcodec.h:1689
static enum AVPixelFormat pix_fmts_10bit[]
Definition: libx264.c:881
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
int has_b_frames
Size of the frame reordering buffer in the decoder.
Definition: avcodec.h:2054
int flags
Additional information about the frame packing.
Definition: stereo3d.h:132
static void dct8x8(int16_t *coef, int bit_depth)
Definition: h264dsp.c:162
av_default_item_name
#define AVERROR(e)
Definition: error.h:43
int qmax
maximum quantizer
Definition: avcodec.h:2682
char * profile
Definition: libx264.c:52
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:179
int coder
Definition: libx264.c:87
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:197
int fastfirstpass
Definition: libx264.c:54
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values. ...
Definition: dict.c:203
#define FF_PROFILE_H264_HIGH_422
Definition: avcodec.h:3282
#define FF_PROFILE_H264_HIGH
Definition: avcodec.h:3278
int flags
AV_CODEC_FLAG_*.
Definition: avcodec.h:1827
planar YUV 4:2:0, 12bpp, 1 plane for Y and 1 plane for the UV components, which are interleaved (firs...
Definition: pixfmt.h:90
int mbtree
Definition: libx264.c:76
const char * name
Name of the codec implementation.
Definition: avcodec.h:3688
float i_quant_factor
qscale factor between P- and I-frames If > 0 then the last P-frame quantizer will be used (q = lastp_...
Definition: avcodec.h:2069
#define AV_PIX_FMT_YUV444P10
Definition: pixfmt.h:354
char * deblock
Definition: libx264.c:77
transformed exhaustive search algorithm
Definition: avcodec.h:805
int b_frame_strategy
Definition: libx264.c:89
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1663
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:66
int rc_buffer_size
decoder bitstream buffer size
Definition: avcodec.h:2709
common internal API header
char * psy_rd
Definition: libx264.c:62
as above, but U and V bytes are swapped
Definition: pixfmt.h:91
int refs
number of reference frames
Definition: avcodec.h:2413
int motion_est
Definition: libx264.c:85
static enum AVPixelFormat pix_fmts_9bit[]
Definition: libx264.c:876
Views are packed per line, as if interlaced.
Definition: stereo3d.h:97
#define PARSE_X264_OPT(name, var)
Definition: libx264.c:450
enum AVPixelFormat * pix_fmts
array of supported pixel formats, or NULL if unknown, array is terminated by -1
Definition: avcodec.h:3702
enum AVPictureType pict_type
Picture type of the frame.
Definition: frame.h:261
#define OPT_STR(opt, param)
Definition: libx264.c:403
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
Definition: pixfmt.h:74
int width
picture width / height.
Definition: avcodec.h:1919
int cqp
Definition: libx264.c:59
attribute_deprecated int noise_reduction
Definition: avcodec.h:2321
x264_t * enc
Definition: libx264.c:46
AVFormatContext * ctx
Definition: movenc.c:48
#define AV_CODEC_FLAG_PSNR
error[?] variables will be set during encoding.
Definition: avcodec.h:900
#define AV_CODEC_FLAG_PASS1
Use internal 2pass ratecontrol in first pass mode.
Definition: avcodec.h:884
enum AVColorPrimaries color_primaries
Chromaticity coordinates of the source primaries.
Definition: avcodec.h:2448
#define FF_THREAD_SLICE
Decode more than one part of a single frame at once.
Definition: avcodec.h:3173
int level
level
Definition: avcodec.h:3333
int quality
quality (between 1 (good) and FF_LAMBDA_MAX (bad))
Definition: frame.h:301
int scenechange_threshold
Definition: libx264.c:91
int slice_max_size
Definition: libx264.c:81
int ticks_per_frame
For some codecs, the time base is closer to the field rate than the frame rate.
Definition: avcodec.h:1878
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition: pixfmt.h:65
int nal_hrd
Definition: libx264.c:83
int max_qdiff
maximum quantizer difference between frames
Definition: avcodec.h:2689
int weightp
Definition: libx264.c:65
#define AV_PIX_FMT_YUV444P9
Definition: pixfmt.h:350
#define AV_STEREO3D_FLAG_INVERT
Inverted views, Right/Bottom represents the left view.
Definition: stereo3d.h:114
attribute_deprecated int coder_type
Definition: avcodec.h:2785
preferred ID for MPEG-1/2 video decoding
Definition: avcodec.h:219
char * x264_params
Definition: libx264.c:94
int thread_count
thread count is used to decide how many independent tasks should be passed to execute() ...
Definition: avcodec.h:3161
the normal 2^n-1 "JPEG" YUV ranges
Definition: pixfmt.h:476
Views are packed per column.
Definition: stereo3d.h:107
static enum AVPixelFormat pix_fmts_8bit[]
Definition: libx264.c:862
static const AVCodecDefault x264_defaults[]
Definition: libx264.c:1012
double av_strtod(const char *numstr, char **tail)
Parse the string in numstr and return its value as a double.
Definition: eval.c:99
int av_dict_parse_string(AVDictionary **pm, const char *str, const char *key_val_sep, const char *pairs_sep, int flags)
Parse the key/value pairs list and add the parsed entries to a dictionary.
Definition: dict.c:180
This structure describes the bitrate properties of an encoded bitstream.
Definition: avcodec.h:1346
int avcintra_class
Definition: libx264.c:84
enum AVStereo3DType type
How views are packed within the video.
Definition: stereo3d.h:127
#define AV_LOG_INFO
Standard information.
Definition: log.h:187
char * level
Definition: libx264.c:53
char * av_strdup(const char *s)
Duplicate a string.
Definition: mem.c:237
Libavcodec external API header.
static av_cold int X264_close(AVCodecContext *avctx)
Definition: libx264.c:388
attribute_deprecated int scenechange_threshold
Definition: avcodec.h:2317
enum AVCodecID codec_id
Definition: avcodec.h:1749
int forced_idr
Definition: libx264.c:86
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
Definition: frame.h:218
attribute_deprecated int b_frame_strategy
Definition: avcodec.h:2038
main external API structure.
Definition: avcodec.h:1732
static const AVOption options[]
Definition: libx264.c:931
int qmin
minimum quantizer
Definition: avcodec.h:2675
uint8_t * data
Definition: frame.h:151
#define FF_CODER_TYPE_AC
Definition: avcodec.h:2775
int extradata_size
Definition: avcodec.h:1848
#define AV_PIX_FMT_YUV420P10
Definition: pixfmt.h:351
float crf
Definition: libx264.c:57
int aq_mode
Definition: libx264.c:60
int aud
Definition: libx264.c:75
#define AV_STRINGIFY(s)
Definition: macros.h:36
Describe the class of an AVClass context structure.
Definition: log.h:67
int a53_cc
Definition: libx264.c:88
enum AVColorSpace colorspace
YUV colorspace type.
Definition: avcodec.h:2462
enum AVColorTransferCharacteristic color_trc
Color Transfer Characteristic.
Definition: avcodec.h:2455
uint8_t * sei
Definition: libx264.c:48
void av_vlog(void *avcl, int level, const char *fmt, va_list vl)
Send the specified message to the log if the level is less than or equal to the current av_log_level...
Definition: log.c:379
int psy
Definition: libx264.c:63
static int encode_nals(AVCodecContext *ctx, AVPacket *pkt, const x264_nal_t *nals, int nnal)
Definition: libx264.c:113
packed BGR 8:8:8, 32bpp, BGRXBGRX... X=unused/undefined
Definition: pixfmt.h:254
#define FF_PROFILE_H264_HIGH_444
Definition: avcodec.h:3285
#define AV_PIX_FMT_YUV420P9
Definition: pixfmt.h:348
attribute_deprecated int chromaoffset
Definition: avcodec.h:2418
int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int64_t min_size)
Check AVPacket size and/or allocate data.
Definition: utils.c:1736
float qcompress
amount of qscale change between easy & hard scenes (0.0-1.0)
Definition: avcodec.h:2667
int sei_size
Definition: libx264.c:49
static void reconfig_encoder(AVCodecContext *ctx, const AVFrame *frame)
Definition: libx264.c:171
char * preset
Definition: libx264.c:50
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:262
mfxU16 profile
Definition: qsvenc.c:44
int global_quality
Global quality for codecs which cannot change it per frame.
Definition: avcodec.h:1813
#define AV_PIX_FMT_YUV422P10
Definition: pixfmt.h:352
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:201
uint8_t level
Definition: svq3.c:207
int b_bias
Definition: libx264.c:70
#define AV_CODEC_FLAG_GLOBAL_HEADER
Place global headers in extradata instead of every keyframe.
Definition: avcodec.h:917
int fast_pskip
Definition: libx264.c:74
int gop_size
the number of pictures in a group of pictures, or 0 for intra_only
Definition: avcodec.h:1945
int chroma_offset
Definition: libx264.c:90
static av_cold void X264_init_static(AVCodec *codec)
Definition: libx264.c:915
int mixed_refs
Definition: libx264.c:72
preset
Definition: vf_curves.c:46
char * tune
Definition: libx264.c:51
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition: pixfmt.h:62
#define FF_DISABLE_DEPRECATION_WARNINGS
Definition: internal.h:83
#define VE
Definition: libx264.c:930
int weightb
Definition: libx264.c:66
float aq_strength
Definition: libx264.c:61
common internal api header.
Video is not stereoscopic (and metadata has to be there).
Definition: stereo3d.h:35
Views are packed in a checkerboard-like structure per pixel.
Definition: stereo3d.h:76
Bi-dir predicted.
Definition: avutil.h:276
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV444P and setting col...
Definition: pixfmt.h:76
attribute_deprecated AVFrame * coded_frame
the picture in the bitstream
Definition: avcodec.h:3152
char * key
Definition: dict.h:86
int den
Denominator.
Definition: rational.h:60
interleaved chroma YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition: pixfmt.h:213
int trellis
trellis RD quantization
Definition: avcodec.h:2831
AVCPBProperties * ff_add_cpb_side_data(AVCodecContext *avctx)
Add a CPB properties side data to an encoding context.
Definition: utils.c:4122
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
Definition: avcodec.h:769
#define AV_CODEC_FLAG_PASS2
Use internal 2pass ratecontrol in second pass mode.
Definition: avcodec.h:888
int slices
Number of slices.
Definition: avcodec.h:2485
void * priv_data
Definition: avcodec.h:1774
#define av_free(p)
char * value
Definition: dict.h:87
#define FF_ENABLE_DEPRECATION_WARNINGS
Definition: internal.h:84
int top_field_first
If the content is interlaced, is top field displayed first.
Definition: frame.h:330
uneven multi-hexagon search
Definition: avcodec.h:804
int avg_bitrate
Average bitrate of the stream, in bits per second.
Definition: avcodec.h:1361
Views are on top of each other.
Definition: stereo3d.h:55
int ssim
Definition: libx264.c:67
#define FF_QP2LAMBDA
factor to convert from H.263 QP to lambda
Definition: avutil.h:227
static void stats(const struct CachedBuf *in, int n_in, unsigned *_max, unsigned *_sum)
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed...
Definition: avcodec.h:1656
float crf_max
Definition: libx264.c:58
int ff_alloc_a53_sei(const AVFrame *frame, size_t prefix_len, void **data, size_t *sei_size)
Check AVFrame for A53 side data and allocate and fill SEI message with A53 info.
Definition: utils.c:4321
#define OFFSET(x)
Definition: libx264.c:929
int direct_pred
Definition: libx264.c:80
#define av_freep(p)
#define AV_DICT_IGNORE_SUFFIX
Return first entry in a dictionary whose first part corresponds to the search key, ignoring the suffix of the found key string.
Definition: dict.h:70
static int X264_frame(AVCodecContext *ctx, AVPacket *pkt, const AVFrame *frame, int *got_packet)
Definition: libx264.c:271
#define AV_CODEC_FLAG_CLOSED_GOP
Definition: avcodec.h:931
static const AVCodecDefault defaults[]
Definition: dcaenc.c:1095
int depth
Number of bits in the component.
Definition: pixdesc.h:58
#define FF_PROFILE_H264_HIGH_10
Definition: avcodec.h:3279
Stereoscopic 3d metadata.
Definition: frame.h:62
#define AVERROR_EXTERNAL
Generic error in an external library.
Definition: error.h:57
AVPixelFormat
Pixel format.
Definition: pixfmt.h:60
This structure stores compressed data.
Definition: avcodec.h:1634
int me_subpel_quality
subpel ME quality
Definition: avcodec.h:2226
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: avcodec.h:1650
Predicted.
Definition: avutil.h:275
int thread_type
Which multithreading methods to use.
Definition: avcodec.h:3171
int64_t rc_max_rate
maximum bitrate
Definition: avcodec.h:2732
simple arithmetic expression evaluator
#define AV_CEIL_RSHIFT(a, b)
Definition: common.h:58
int keyint_min
minimum GOP size
Definition: avcodec.h:2406