]> git.sesse.net Git - ffmpeg/blob - libavcodec/libx264.c
avcodec/sheervideo: add interlaced YCbCr(A) 4:2:2:4 8-bit support
[ffmpeg] / libavcodec / libx264.c
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;
48     uint8_t        *sei;
49     int             sei_size;
50     char *preset;
51     char *tune;
52     char *profile;
53     char *level;
54     int fastfirstpass;
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;
64     int rc_lookahead;
65     int weightp;
66     int weightb;
67     int ssim;
68     int intra_refresh;
69     int bluray_compat;
70     int b_bias;
71     int b_pyramid;
72     int mixed_refs;
73     int dct8x8;
74     int fast_pskip;
75     int aud;
76     int mbtree;
77     char *deblock;
78     float cplxblur;
79     char *partitions;
80     int direct_pred;
81     int slice_max_size;
82     char *stats;
83     int nal_hrd;
84     int avcintra_class;
85     int motion_est;
86     int forced_idr;
87     int coder;
88     int a53_cc;
89     int b_frame_strategy;
90     int chroma_offset;
91     int scenechange_threshold;
92     int noise_reduction;
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
113 static int encode_nals(AVCodecContext *ctx, AVPacket *pkt,
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:
157     case AV_PIX_FMT_YUV420P10:
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
171 static void reconfig_encoder(AVCodecContext *ctx, const AVFrame *frame)
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
223     side_data = av_frame_get_side_data(frame, AV_FRAME_DATA_STEREO3D);
224     if (side_data) {
225         AVStereo3D *stereo = (AVStereo3D *)side_data->data;
226         int fpa_type;
227
228         switch (stereo->type) {
229         case AV_STEREO3D_CHECKERBOARD:
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;
238         case AV_STEREO3D_SIDEBYSIDE:
239             fpa_type = 3;
240             break;
241         case AV_STEREO3D_TOPBOTTOM:
242             fpa_type = 4;
243             break;
244         case AV_STEREO3D_FRAMESEQUENCE:
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
271 static int X264_frame(AVCodecContext *ctx, AVPacket *pkt, const AVFrame *frame,
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     AVFrameSideData *side_data;
280
281     x264_picture_init( &x4->pic );
282     x4->pic.img.i_csp   = x4->params.i_csp;
283     if (x264_bit_depth > 8)
284         x4->pic.img.i_csp |= X264_CSP_HIGH_DEPTH;
285     x4->pic.img.i_plane = avfmt2_num_planes(ctx->pix_fmt);
286
287     if (frame) {
288         for (i = 0; i < x4->pic.img.i_plane; i++) {
289             x4->pic.img.plane[i]    = frame->data[i];
290             x4->pic.img.i_stride[i] = frame->linesize[i];
291         }
292
293         x4->pic.i_pts  = frame->pts;
294
295         switch (frame->pict_type) {
296         case AV_PICTURE_TYPE_I:
297             x4->pic.i_type = x4->forced_idr >= 0 ? X264_TYPE_IDR
298                                                  : X264_TYPE_KEYFRAME;
299             break;
300         case AV_PICTURE_TYPE_P:
301             x4->pic.i_type = X264_TYPE_P;
302             break;
303         case AV_PICTURE_TYPE_B:
304             x4->pic.i_type = X264_TYPE_B;
305             break;
306         default:
307             x4->pic.i_type = X264_TYPE_AUTO;
308             break;
309         }
310         reconfig_encoder(ctx, frame);
311
312         if (x4->a53_cc) {
313             side_data = av_frame_get_side_data(frame, AV_FRAME_DATA_A53_CC);
314             if (side_data) {
315                 x4->pic.extra_sei.payloads = av_mallocz(sizeof(x4->pic.extra_sei.payloads[0]));
316                 if (x4->pic.extra_sei.payloads == NULL) {
317                     av_log(ctx, AV_LOG_ERROR, "Not enough memory for closed captions, skipping\n");
318                     goto skip_a53cc;
319                 }
320                 x4->pic.extra_sei.sei_free = av_free;
321
322                 x4->pic.extra_sei.payloads[0].payload_size = side_data->size + 11;
323                 x4->pic.extra_sei.payloads[0].payload = av_mallocz(x4->pic.extra_sei.payloads[0].payload_size);
324                 if (x4->pic.extra_sei.payloads[0].payload == NULL) {
325                     av_log(ctx, AV_LOG_ERROR, "Not enough memory for closed captions, skipping\n");
326                     av_freep(&x4->pic.extra_sei.payloads);
327                     goto skip_a53cc;
328                 }
329                 x4->pic.extra_sei.num_payloads = 1;
330                 x4->pic.extra_sei.payloads[0].payload_type = 4;
331                 memcpy(x4->pic.extra_sei.payloads[0].payload + 10, side_data->data, side_data->size);
332                 x4->pic.extra_sei.payloads[0].payload[0] = 181;
333                 x4->pic.extra_sei.payloads[0].payload[1] = 0;
334                 x4->pic.extra_sei.payloads[0].payload[2] = 49;
335
336                 /**
337                  * 'GA94' is standard in North America for ATSC, but hard coding
338                  * this style may not be the right thing to do -- other formats
339                  * do exist. This information is not available in the side_data
340                  * so we are going with this right now.
341                  */
342                 AV_WL32(x4->pic.extra_sei.payloads[0].payload + 3,
343                     MKTAG('G', 'A', '9', '4'));
344                 x4->pic.extra_sei.payloads[0].payload[7] = 3;
345                 x4->pic.extra_sei.payloads[0].payload[8] =
346                     ((side_data->size/3) & 0x1f) | 0x40;
347                 x4->pic.extra_sei.payloads[0].payload[9] = 0;
348                 x4->pic.extra_sei.payloads[0].payload[side_data->size+10] = 255;
349             }
350         }
351     }
352 skip_a53cc:
353     do {
354         if (x264_encoder_encode(x4->enc, &nal, &nnal, frame? &x4->pic: NULL, &pic_out) < 0)
355             return AVERROR_EXTERNAL;
356
357         ret = encode_nals(ctx, pkt, nal, nnal);
358         if (ret < 0)
359             return ret;
360     } while (!ret && !frame && x264_encoder_delayed_frames(x4->enc));
361
362     pkt->pts = pic_out.i_pts;
363     pkt->dts = pic_out.i_dts;
364
365
366     switch (pic_out.i_type) {
367     case X264_TYPE_IDR:
368     case X264_TYPE_I:
369         pict_type = AV_PICTURE_TYPE_I;
370         break;
371     case X264_TYPE_P:
372         pict_type = AV_PICTURE_TYPE_P;
373         break;
374     case X264_TYPE_B:
375     case X264_TYPE_BREF:
376         pict_type = AV_PICTURE_TYPE_B;
377         break;
378     default:
379         pict_type = AV_PICTURE_TYPE_NONE;
380     }
381 #if FF_API_CODED_FRAME
382 FF_DISABLE_DEPRECATION_WARNINGS
383     ctx->coded_frame->pict_type = pict_type;
384 FF_ENABLE_DEPRECATION_WARNINGS
385 #endif
386
387     pkt->flags |= AV_PKT_FLAG_KEY*pic_out.b_keyframe;
388     if (ret) {
389         ff_side_data_set_encoder_stats(pkt, (pic_out.i_qpplus1 - 1) * FF_QP2LAMBDA, NULL, 0, pict_type);
390
391 #if FF_API_CODED_FRAME
392 FF_DISABLE_DEPRECATION_WARNINGS
393         ctx->coded_frame->quality = (pic_out.i_qpplus1 - 1) * FF_QP2LAMBDA;
394 FF_ENABLE_DEPRECATION_WARNINGS
395 #endif
396     }
397
398     *got_packet = ret;
399     return 0;
400 }
401
402 static av_cold int X264_close(AVCodecContext *avctx)
403 {
404     X264Context *x4 = avctx->priv_data;
405
406     av_freep(&avctx->extradata);
407     av_freep(&x4->sei);
408
409     if (x4->enc) {
410         x264_encoder_close(x4->enc);
411         x4->enc = NULL;
412     }
413
414     return 0;
415 }
416
417 #define OPT_STR(opt, param)                                                   \
418     do {                                                                      \
419         int ret;                                                              \
420         if ((ret = x264_param_parse(&x4->params, opt, param)) < 0) { \
421             if(ret == X264_PARAM_BAD_NAME)                                    \
422                 av_log(avctx, AV_LOG_ERROR,                                   \
423                         "bad option '%s': '%s'\n", opt, param);               \
424             else                                                              \
425                 av_log(avctx, AV_LOG_ERROR,                                   \
426                         "bad value for '%s': '%s'\n", opt, param);            \
427             return -1;                                                        \
428         }                                                                     \
429     } while (0)
430
431 static int convert_pix_fmt(enum AVPixelFormat pix_fmt)
432 {
433     switch (pix_fmt) {
434     case AV_PIX_FMT_YUV420P:
435     case AV_PIX_FMT_YUVJ420P:
436     case AV_PIX_FMT_YUV420P9:
437     case AV_PIX_FMT_YUV420P10: return X264_CSP_I420;
438     case AV_PIX_FMT_YUV422P:
439     case AV_PIX_FMT_YUVJ422P:
440     case AV_PIX_FMT_YUV422P10: return X264_CSP_I422;
441     case AV_PIX_FMT_YUV444P:
442     case AV_PIX_FMT_YUVJ444P:
443     case AV_PIX_FMT_YUV444P9:
444     case AV_PIX_FMT_YUV444P10: return X264_CSP_I444;
445 #if CONFIG_LIBX264RGB_ENCODER
446     case AV_PIX_FMT_BGR0:
447         return X264_CSP_BGRA;
448     case AV_PIX_FMT_BGR24:
449         return X264_CSP_BGR;
450
451     case AV_PIX_FMT_RGB24:
452         return X264_CSP_RGB;
453 #endif
454     case AV_PIX_FMT_NV12:      return X264_CSP_NV12;
455     case AV_PIX_FMT_NV16:
456     case AV_PIX_FMT_NV20:      return X264_CSP_NV16;
457 #ifdef X264_CSP_NV21
458     case AV_PIX_FMT_NV21:      return X264_CSP_NV21;
459 #endif
460     };
461     return 0;
462 }
463
464 #define PARSE_X264_OPT(name, var)\
465     if (x4->var && x264_param_parse(&x4->params, name, x4->var) < 0) {\
466         av_log(avctx, AV_LOG_ERROR, "Error parsing option '%s' with value '%s'.\n", name, x4->var);\
467         return AVERROR(EINVAL);\
468     }
469
470 static av_cold int X264_init(AVCodecContext *avctx)
471 {
472     X264Context *x4 = avctx->priv_data;
473     AVCPBProperties *cpb_props;
474     int sw,sh;
475
476     if (avctx->global_quality > 0)
477         av_log(avctx, AV_LOG_WARNING, "-qscale is ignored, -crf is recommended.\n");
478
479 #if CONFIG_LIBX262_ENCODER
480     if (avctx->codec_id == AV_CODEC_ID_MPEG2VIDEO) {
481         x4->params.b_mpeg2 = 1;
482         x264_param_default_mpeg2(&x4->params);
483     } else
484 #endif
485     x264_param_default(&x4->params);
486
487     x4->params.b_deblocking_filter         = avctx->flags & AV_CODEC_FLAG_LOOP_FILTER;
488
489     if (x4->preset || x4->tune)
490         if (x264_param_default_preset(&x4->params, x4->preset, x4->tune) < 0) {
491             int i;
492             av_log(avctx, AV_LOG_ERROR, "Error setting preset/tune %s/%s.\n", x4->preset, x4->tune);
493             av_log(avctx, AV_LOG_INFO, "Possible presets:");
494             for (i = 0; x264_preset_names[i]; i++)
495                 av_log(avctx, AV_LOG_INFO, " %s", x264_preset_names[i]);
496             av_log(avctx, AV_LOG_INFO, "\n");
497             av_log(avctx, AV_LOG_INFO, "Possible tunes:");
498             for (i = 0; x264_tune_names[i]; i++)
499                 av_log(avctx, AV_LOG_INFO, " %s", x264_tune_names[i]);
500             av_log(avctx, AV_LOG_INFO, "\n");
501             return AVERROR(EINVAL);
502         }
503
504     if (avctx->level > 0)
505         x4->params.i_level_idc = avctx->level;
506
507     x4->params.pf_log               = X264_log;
508     x4->params.p_log_private        = avctx;
509     x4->params.i_log_level          = X264_LOG_DEBUG;
510     x4->params.i_csp                = convert_pix_fmt(avctx->pix_fmt);
511
512     PARSE_X264_OPT("weightp", wpredp);
513
514     if (avctx->bit_rate) {
515         x4->params.rc.i_bitrate   = avctx->bit_rate / 1000;
516         x4->params.rc.i_rc_method = X264_RC_ABR;
517     }
518     x4->params.rc.i_vbv_buffer_size = avctx->rc_buffer_size / 1000;
519     x4->params.rc.i_vbv_max_bitrate = avctx->rc_max_rate    / 1000;
520     x4->params.rc.b_stat_write      = avctx->flags & AV_CODEC_FLAG_PASS1;
521     if (avctx->flags & AV_CODEC_FLAG_PASS2) {
522         x4->params.rc.b_stat_read = 1;
523     } else {
524         if (x4->crf >= 0) {
525             x4->params.rc.i_rc_method   = X264_RC_CRF;
526             x4->params.rc.f_rf_constant = x4->crf;
527         } else if (x4->cqp >= 0) {
528             x4->params.rc.i_rc_method   = X264_RC_CQP;
529             x4->params.rc.i_qp_constant = x4->cqp;
530         }
531
532         if (x4->crf_max >= 0)
533             x4->params.rc.f_rf_constant_max = x4->crf_max;
534     }
535
536     if (avctx->rc_buffer_size && avctx->rc_initial_buffer_occupancy > 0 &&
537         (avctx->rc_initial_buffer_occupancy <= avctx->rc_buffer_size)) {
538         x4->params.rc.f_vbv_buffer_init =
539             (float)avctx->rc_initial_buffer_occupancy / avctx->rc_buffer_size;
540     }
541
542     PARSE_X264_OPT("level", level);
543
544     if (avctx->i_quant_factor > 0)
545         x4->params.rc.f_ip_factor         = 1 / fabs(avctx->i_quant_factor);
546     if (avctx->b_quant_factor > 0)
547         x4->params.rc.f_pb_factor         = avctx->b_quant_factor;
548
549 #if FF_API_PRIVATE_OPT
550 FF_DISABLE_DEPRECATION_WARNINGS
551     if (avctx->chromaoffset >= 0)
552         x4->chroma_offset = avctx->chromaoffset;
553 FF_ENABLE_DEPRECATION_WARNINGS
554 #endif
555     if (x4->chroma_offset >= 0)
556         x4->params.analyse.i_chroma_qp_offset = x4->chroma_offset;
557
558     if (avctx->gop_size >= 0)
559         x4->params.i_keyint_max         = avctx->gop_size;
560     if (avctx->max_b_frames >= 0)
561         x4->params.i_bframe             = avctx->max_b_frames;
562
563 #if FF_API_PRIVATE_OPT
564 FF_DISABLE_DEPRECATION_WARNINGS
565     if (avctx->scenechange_threshold >= 0)
566         x4->scenechange_threshold = avctx->scenechange_threshold;
567 FF_ENABLE_DEPRECATION_WARNINGS
568 #endif
569     if (x4->scenechange_threshold >= 0)
570         x4->params.i_scenecut_threshold = x4->scenechange_threshold;
571
572     if (avctx->qmin >= 0)
573         x4->params.rc.i_qp_min          = avctx->qmin;
574     if (avctx->qmax >= 0)
575         x4->params.rc.i_qp_max          = avctx->qmax;
576     if (avctx->max_qdiff >= 0)
577         x4->params.rc.i_qp_step         = avctx->max_qdiff;
578     if (avctx->qblur >= 0)
579         x4->params.rc.f_qblur           = avctx->qblur;     /* temporally blur quants */
580     if (avctx->qcompress >= 0)
581         x4->params.rc.f_qcompress       = avctx->qcompress; /* 0.0 => cbr, 1.0 => constant qp */
582     if (avctx->refs >= 0)
583         x4->params.i_frame_reference    = avctx->refs;
584     else if (x4->level) {
585         int i;
586         int mbn = AV_CEIL_RSHIFT(avctx->width, 4) * AV_CEIL_RSHIFT(avctx->height, 4);
587         int level_id = -1;
588         char *tail;
589         int scale = X264_BUILD < 129 ? 384 : 1;
590
591         if (!strcmp(x4->level, "1b")) {
592             level_id = 9;
593         } else if (strlen(x4->level) <= 3){
594             level_id = av_strtod(x4->level, &tail) * 10 + 0.5;
595             if (*tail)
596                 level_id = -1;
597         }
598         if (level_id <= 0)
599             av_log(avctx, AV_LOG_WARNING, "Failed to parse level\n");
600
601         for (i = 0; i<x264_levels[i].level_idc; i++)
602             if (x264_levels[i].level_idc == level_id)
603                 x4->params.i_frame_reference = av_clip(x264_levels[i].dpb / mbn / scale, 1, x4->params.i_frame_reference);
604     }
605
606     if (avctx->trellis >= 0)
607         x4->params.analyse.i_trellis    = avctx->trellis;
608     if (avctx->me_range >= 0)
609         x4->params.analyse.i_me_range   = avctx->me_range;
610 #if FF_API_PRIVATE_OPT
611     FF_DISABLE_DEPRECATION_WARNINGS
612     if (avctx->noise_reduction >= 0)
613         x4->noise_reduction = avctx->noise_reduction;
614     FF_ENABLE_DEPRECATION_WARNINGS
615 #endif
616     if (x4->noise_reduction >= 0)
617         x4->params.analyse.i_noise_reduction = x4->noise_reduction;
618     if (avctx->me_subpel_quality >= 0)
619         x4->params.analyse.i_subpel_refine   = avctx->me_subpel_quality;
620 #if FF_API_PRIVATE_OPT
621 FF_DISABLE_DEPRECATION_WARNINGS
622     if (avctx->b_frame_strategy >= 0)
623         x4->b_frame_strategy = avctx->b_frame_strategy;
624 FF_ENABLE_DEPRECATION_WARNINGS
625 #endif
626     if (avctx->keyint_min >= 0)
627         x4->params.i_keyint_min = avctx->keyint_min;
628 #if FF_API_CODER_TYPE
629 FF_DISABLE_DEPRECATION_WARNINGS
630     if (avctx->coder_type >= 0)
631         x4->coder = avctx->coder_type == FF_CODER_TYPE_AC;
632 FF_ENABLE_DEPRECATION_WARNINGS
633 #endif
634     if (avctx->me_cmp >= 0)
635         x4->params.analyse.b_chroma_me = avctx->me_cmp & FF_CMP_CHROMA;
636
637     if (x4->aq_mode >= 0)
638         x4->params.rc.i_aq_mode = x4->aq_mode;
639     if (x4->aq_strength >= 0)
640         x4->params.rc.f_aq_strength = x4->aq_strength;
641     PARSE_X264_OPT("psy-rd", psy_rd);
642     PARSE_X264_OPT("deblock", deblock);
643     PARSE_X264_OPT("partitions", partitions);
644     PARSE_X264_OPT("stats", stats);
645     if (x4->psy >= 0)
646         x4->params.analyse.b_psy  = x4->psy;
647     if (x4->rc_lookahead >= 0)
648         x4->params.rc.i_lookahead = x4->rc_lookahead;
649     if (x4->weightp >= 0)
650         x4->params.analyse.i_weighted_pred = x4->weightp;
651     if (x4->weightb >= 0)
652         x4->params.analyse.b_weighted_bipred = x4->weightb;
653     if (x4->cplxblur >= 0)
654         x4->params.rc.f_complexity_blur = x4->cplxblur;
655
656     if (x4->ssim >= 0)
657         x4->params.analyse.b_ssim = x4->ssim;
658     if (x4->intra_refresh >= 0)
659         x4->params.b_intra_refresh = x4->intra_refresh;
660     if (x4->bluray_compat >= 0) {
661         x4->params.b_bluray_compat = x4->bluray_compat;
662         x4->params.b_vfr_input = 0;
663     }
664     if (x4->avcintra_class >= 0)
665 #if X264_BUILD >= 142
666         x4->params.i_avcintra_class = x4->avcintra_class;
667 #else
668         av_log(avctx, AV_LOG_ERROR,
669                "x264 too old for AVC Intra, at least version 142 needed\n");
670 #endif
671     if (x4->b_bias != INT_MIN)
672         x4->params.i_bframe_bias              = x4->b_bias;
673     if (x4->b_pyramid >= 0)
674         x4->params.i_bframe_pyramid = x4->b_pyramid;
675     if (x4->mixed_refs >= 0)
676         x4->params.analyse.b_mixed_references = x4->mixed_refs;
677     if (x4->dct8x8 >= 0)
678         x4->params.analyse.b_transform_8x8    = x4->dct8x8;
679     if (x4->fast_pskip >= 0)
680         x4->params.analyse.b_fast_pskip       = x4->fast_pskip;
681     if (x4->aud >= 0)
682         x4->params.b_aud                      = x4->aud;
683     if (x4->mbtree >= 0)
684         x4->params.rc.b_mb_tree               = x4->mbtree;
685     if (x4->direct_pred >= 0)
686         x4->params.analyse.i_direct_mv_pred   = x4->direct_pred;
687
688     if (x4->slice_max_size >= 0)
689         x4->params.i_slice_max_size =  x4->slice_max_size;
690
691     if (x4->fastfirstpass)
692         x264_param_apply_fastfirstpass(&x4->params);
693
694     /* Allow specifying the x264 profile through AVCodecContext. */
695     if (!x4->profile)
696         switch (avctx->profile) {
697         case FF_PROFILE_H264_BASELINE:
698             x4->profile = av_strdup("baseline");
699             break;
700         case FF_PROFILE_H264_HIGH:
701             x4->profile = av_strdup("high");
702             break;
703         case FF_PROFILE_H264_HIGH_10:
704             x4->profile = av_strdup("high10");
705             break;
706         case FF_PROFILE_H264_HIGH_422:
707             x4->profile = av_strdup("high422");
708             break;
709         case FF_PROFILE_H264_HIGH_444:
710             x4->profile = av_strdup("high444");
711             break;
712         case FF_PROFILE_H264_MAIN:
713             x4->profile = av_strdup("main");
714             break;
715         default:
716             break;
717         }
718
719     if (x4->nal_hrd >= 0)
720         x4->params.i_nal_hrd = x4->nal_hrd;
721
722     if (x4->motion_est >= 0) {
723         x4->params.analyse.i_me_method = x4->motion_est;
724 #if FF_API_MOTION_EST
725 FF_DISABLE_DEPRECATION_WARNINGS
726     } else {
727         if (avctx->me_method == ME_EPZS)
728             x4->params.analyse.i_me_method = X264_ME_DIA;
729         else if (avctx->me_method == ME_HEX)
730             x4->params.analyse.i_me_method = X264_ME_HEX;
731         else if (avctx->me_method == ME_UMH)
732             x4->params.analyse.i_me_method = X264_ME_UMH;
733         else if (avctx->me_method == ME_FULL)
734             x4->params.analyse.i_me_method = X264_ME_ESA;
735         else if (avctx->me_method == ME_TESA)
736             x4->params.analyse.i_me_method = X264_ME_TESA;
737 FF_ENABLE_DEPRECATION_WARNINGS
738 #endif
739     }
740
741     if (x4->coder >= 0)
742         x4->params.b_cabac = x4->coder;
743
744     if (x4->b_frame_strategy >= 0)
745         x4->params.i_bframe_adaptive = x4->b_frame_strategy;
746
747     if (x4->profile)
748         if (x264_param_apply_profile(&x4->params, x4->profile) < 0) {
749             int i;
750             av_log(avctx, AV_LOG_ERROR, "Error setting profile %s.\n", x4->profile);
751             av_log(avctx, AV_LOG_INFO, "Possible profiles:");
752             for (i = 0; x264_profile_names[i]; i++)
753                 av_log(avctx, AV_LOG_INFO, " %s", x264_profile_names[i]);
754             av_log(avctx, AV_LOG_INFO, "\n");
755             return AVERROR(EINVAL);
756         }
757
758     x4->params.i_width          = avctx->width;
759     x4->params.i_height         = avctx->height;
760     av_reduce(&sw, &sh, avctx->sample_aspect_ratio.num, avctx->sample_aspect_ratio.den, 4096);
761     x4->params.vui.i_sar_width  = sw;
762     x4->params.vui.i_sar_height = sh;
763     x4->params.i_timebase_den = avctx->time_base.den;
764     x4->params.i_timebase_num = avctx->time_base.num;
765     x4->params.i_fps_num = avctx->time_base.den;
766     x4->params.i_fps_den = avctx->time_base.num * avctx->ticks_per_frame;
767
768     x4->params.analyse.b_psnr = avctx->flags & AV_CODEC_FLAG_PSNR;
769
770     x4->params.i_threads      = avctx->thread_count;
771     if (avctx->thread_type)
772         x4->params.b_sliced_threads = avctx->thread_type == FF_THREAD_SLICE;
773
774     x4->params.b_interlaced   = avctx->flags & AV_CODEC_FLAG_INTERLACED_DCT;
775
776     x4->params.b_open_gop     = !(avctx->flags & AV_CODEC_FLAG_CLOSED_GOP);
777
778     x4->params.i_slice_count  = avctx->slices;
779
780     x4->params.vui.b_fullrange = avctx->pix_fmt == AV_PIX_FMT_YUVJ420P ||
781                                  avctx->pix_fmt == AV_PIX_FMT_YUVJ422P ||
782                                  avctx->pix_fmt == AV_PIX_FMT_YUVJ444P ||
783                                  avctx->color_range == AVCOL_RANGE_JPEG;
784
785     if (avctx->colorspace != AVCOL_SPC_UNSPECIFIED)
786         x4->params.vui.i_colmatrix = avctx->colorspace;
787     if (avctx->color_primaries != AVCOL_PRI_UNSPECIFIED)
788         x4->params.vui.i_colorprim = avctx->color_primaries;
789     if (avctx->color_trc != AVCOL_TRC_UNSPECIFIED)
790         x4->params.vui.i_transfer  = avctx->color_trc;
791
792     if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER)
793         x4->params.b_repeat_headers = 0;
794
795     if(x4->x264opts){
796         const char *p= x4->x264opts;
797         while(p){
798             char param[256]={0}, val[256]={0};
799             if(sscanf(p, "%255[^:=]=%255[^:]", param, val) == 1){
800                 OPT_STR(param, "1");
801             }else
802                 OPT_STR(param, val);
803             p= strchr(p, ':');
804             p+=!!p;
805         }
806     }
807
808     if (x4->x264_params) {
809         AVDictionary *dict    = NULL;
810         AVDictionaryEntry *en = NULL;
811
812         if (!av_dict_parse_string(&dict, x4->x264_params, "=", ":", 0)) {
813             while ((en = av_dict_get(dict, "", en, AV_DICT_IGNORE_SUFFIX))) {
814                 if (x264_param_parse(&x4->params, en->key, en->value) < 0)
815                     av_log(avctx, AV_LOG_WARNING,
816                            "Error parsing option '%s = %s'.\n",
817                             en->key, en->value);
818             }
819
820             av_dict_free(&dict);
821         }
822     }
823
824     // update AVCodecContext with x264 parameters
825     avctx->has_b_frames = x4->params.i_bframe ?
826         x4->params.i_bframe_pyramid ? 2 : 1 : 0;
827     if (avctx->max_b_frames < 0)
828         avctx->max_b_frames = 0;
829
830     avctx->bit_rate = x4->params.rc.i_bitrate*1000;
831
832     x4->enc = x264_encoder_open(&x4->params);
833     if (!x4->enc)
834         return AVERROR_EXTERNAL;
835
836     if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER) {
837         x264_nal_t *nal;
838         uint8_t *p;
839         int nnal, s, i;
840
841         s = x264_encoder_headers(x4->enc, &nal, &nnal);
842         avctx->extradata = p = av_mallocz(s + AV_INPUT_BUFFER_PADDING_SIZE);
843         if (!p)
844             return AVERROR(ENOMEM);
845
846         for (i = 0; i < nnal; i++) {
847             /* Don't put the SEI in extradata. */
848             if (nal[i].i_type == NAL_SEI) {
849                 av_log(avctx, AV_LOG_INFO, "%s\n", nal[i].p_payload+25);
850                 x4->sei_size = nal[i].i_payload;
851                 x4->sei      = av_malloc(x4->sei_size);
852                 if (!x4->sei)
853                     return AVERROR(ENOMEM);
854                 memcpy(x4->sei, nal[i].p_payload, nal[i].i_payload);
855                 continue;
856             }
857             memcpy(p, nal[i].p_payload, nal[i].i_payload);
858             p += nal[i].i_payload;
859         }
860         avctx->extradata_size = p - avctx->extradata;
861     }
862
863     cpb_props = ff_add_cpb_side_data(avctx);
864     if (!cpb_props)
865         return AVERROR(ENOMEM);
866     cpb_props->buffer_size = x4->params.rc.i_vbv_buffer_size * 1000;
867     cpb_props->max_bitrate = x4->params.rc.i_vbv_max_bitrate * 1000;
868     cpb_props->avg_bitrate = x4->params.rc.i_bitrate         * 1000;
869
870     return 0;
871 }
872
873 static const enum AVPixelFormat pix_fmts_8bit[] = {
874     AV_PIX_FMT_YUV420P,
875     AV_PIX_FMT_YUVJ420P,
876     AV_PIX_FMT_YUV422P,
877     AV_PIX_FMT_YUVJ422P,
878     AV_PIX_FMT_YUV444P,
879     AV_PIX_FMT_YUVJ444P,
880     AV_PIX_FMT_NV12,
881     AV_PIX_FMT_NV16,
882 #ifdef X264_CSP_NV21
883     AV_PIX_FMT_NV21,
884 #endif
885     AV_PIX_FMT_NONE
886 };
887 static const enum AVPixelFormat pix_fmts_9bit[] = {
888     AV_PIX_FMT_YUV420P9,
889     AV_PIX_FMT_YUV444P9,
890     AV_PIX_FMT_NONE
891 };
892 static const enum AVPixelFormat pix_fmts_10bit[] = {
893     AV_PIX_FMT_YUV420P10,
894     AV_PIX_FMT_YUV422P10,
895     AV_PIX_FMT_YUV444P10,
896     AV_PIX_FMT_NV20,
897     AV_PIX_FMT_NONE
898 };
899 #if CONFIG_LIBX264RGB_ENCODER
900 static const enum AVPixelFormat pix_fmts_8bit_rgb[] = {
901     AV_PIX_FMT_BGR0,
902     AV_PIX_FMT_BGR24,
903     AV_PIX_FMT_RGB24,
904     AV_PIX_FMT_NONE
905 };
906 #endif
907
908 static av_cold void X264_init_static(AVCodec *codec)
909 {
910     if (x264_bit_depth == 8)
911         codec->pix_fmts = pix_fmts_8bit;
912     else if (x264_bit_depth == 9)
913         codec->pix_fmts = pix_fmts_9bit;
914     else if (x264_bit_depth == 10)
915         codec->pix_fmts = pix_fmts_10bit;
916 }
917
918 #define OFFSET(x) offsetof(X264Context, x)
919 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
920 static const AVOption options[] = {
921     { "preset",        "Set the encoding preset (cf. x264 --fullhelp)",   OFFSET(preset),        AV_OPT_TYPE_STRING, { .str = "medium" }, 0, 0, VE},
922     { "tune",          "Tune the encoding params (cf. x264 --fullhelp)",  OFFSET(tune),          AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
923     { "profile",       "Set profile restrictions (cf. x264 --fullhelp) ", OFFSET(profile),       AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
924     { "fastfirstpass", "Use fast settings when encoding first pass",      OFFSET(fastfirstpass), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, VE},
925     {"level", "Specify level (as defined by Annex A)", OFFSET(level), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
926     {"passlogfile", "Filename for 2 pass stats", OFFSET(stats), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
927     {"wpredp", "Weighted prediction for P-frames", OFFSET(wpredp), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
928     {"a53cc",          "Use A53 Closed Captions (if available)",          OFFSET(a53_cc),        AV_OPT_TYPE_BOOL,   {.i64 = 0}, 0, 1, VE},
929     {"x264opts", "x264 options", OFFSET(x264opts), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
930     { "crf",           "Select the quality for constant quality mode",    OFFSET(crf),           AV_OPT_TYPE_FLOAT,  {.dbl = -1 }, -1, FLT_MAX, VE },
931     { "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 },
932     { "qp",            "Constant quantization parameter rate control method",OFFSET(cqp),        AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, INT_MAX, VE },
933     { "aq-mode",       "AQ method",                                       OFFSET(aq_mode),       AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, INT_MAX, VE, "aq_mode"},
934     { "none",          NULL,                              0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_NONE},         INT_MIN, INT_MAX, VE, "aq_mode" },
935     { "variance",      "Variance AQ (complexity mask)",   0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_VARIANCE},     INT_MIN, INT_MAX, VE, "aq_mode" },
936     { "autovariance",  "Auto-variance AQ",                0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_AUTOVARIANCE}, INT_MIN, INT_MAX, VE, "aq_mode" },
937 #if X264_BUILD >= 144
938     { "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" },
939 #endif
940     { "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},
941     { "psy",           "Use psychovisual optimizations.",                 OFFSET(psy),           AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE },
942     { "psy-rd",        "Strength of psychovisual optimization, in <psy-rd>:<psy-trellis> format.", OFFSET(psy_rd), AV_OPT_TYPE_STRING,  {0 }, 0, 0, VE},
943     { "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 },
944     { "weightb",       "Weighted prediction for B-frames.",               OFFSET(weightb),       AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE },
945     { "weightp",       "Weighted prediction analysis method.",            OFFSET(weightp),       AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, INT_MAX, VE, "weightp" },
946     { "none",          NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_NONE},   INT_MIN, INT_MAX, VE, "weightp" },
947     { "simple",        NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_SIMPLE}, INT_MIN, INT_MAX, VE, "weightp" },
948     { "smart",         NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_SMART},  INT_MIN, INT_MAX, VE, "weightp" },
949     { "ssim",          "Calculate and print SSIM stats.",                 OFFSET(ssim),          AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE },
950     { "intra-refresh", "Use Periodic Intra Refresh instead of IDR frames.",OFFSET(intra_refresh),AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE },
951     { "bluray-compat", "Bluray compatibility workarounds.",               OFFSET(bluray_compat) ,AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE },
952     { "b-bias",        "Influences how often B-frames are used",          OFFSET(b_bias),        AV_OPT_TYPE_INT,    { .i64 = INT_MIN}, INT_MIN, INT_MAX, VE },
953     { "b-pyramid",     "Keep some B-frames as references.",               OFFSET(b_pyramid),     AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, INT_MAX, VE, "b_pyramid" },
954     { "none",          NULL,                                  0, AV_OPT_TYPE_CONST, {.i64 = X264_B_PYRAMID_NONE},   INT_MIN, INT_MAX, VE, "b_pyramid" },
955     { "strict",        "Strictly hierarchical pyramid",       0, AV_OPT_TYPE_CONST, {.i64 = X264_B_PYRAMID_STRICT}, INT_MIN, INT_MAX, VE, "b_pyramid" },
956     { "normal",        "Non-strict (not Blu-ray compatible)", 0, AV_OPT_TYPE_CONST, {.i64 = X264_B_PYRAMID_NORMAL}, INT_MIN, INT_MAX, VE, "b_pyramid" },
957     { "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 },
958     { "8x8dct",        "High profile 8x8 transform.",                     OFFSET(dct8x8),        AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE},
959     { "fast-pskip",    NULL,                                              OFFSET(fast_pskip),    AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE},
960     { "aud",           "Use access unit delimiters.",                     OFFSET(aud),           AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE},
961     { "mbtree",        "Use macroblock tree ratecontrol.",                OFFSET(mbtree),        AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE},
962     { "deblock",       "Loop filter parameters, in <alpha:beta> form.",   OFFSET(deblock),       AV_OPT_TYPE_STRING, { 0 },  0, 0, VE},
963     { "cplxblur",      "Reduce fluctuations in QP (before curve compression)", OFFSET(cplxblur), AV_OPT_TYPE_FLOAT,  {.dbl = -1 }, -1, FLT_MAX, VE},
964     { "partitions",    "A comma-separated list of partitions to consider. "
965                        "Possible values: p8x8, p4x4, b8x8, i8x8, i4x4, none, all", OFFSET(partitions), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
966     { "direct-pred",   "Direct MV prediction mode",                       OFFSET(direct_pred),   AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, INT_MAX, VE, "direct-pred" },
967     { "none",          NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_NONE },     0, 0, VE, "direct-pred" },
968     { "spatial",       NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_SPATIAL },  0, 0, VE, "direct-pred" },
969     { "temporal",      NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_TEMPORAL }, 0, 0, VE, "direct-pred" },
970     { "auto",          NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_AUTO },     0, 0, VE, "direct-pred" },
971     { "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 },
972     { "stats",         "Filename for 2 pass stats",                       OFFSET(stats),         AV_OPT_TYPE_STRING, { 0 },  0,       0, VE },
973     { "nal-hrd",       "Signal HRD information (requires vbv-bufsize; "
974                        "cbr not allowed in .mp4)",                        OFFSET(nal_hrd),       AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, INT_MAX, VE, "nal-hrd" },
975     { "none",          NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_NONE}, INT_MIN, INT_MAX, VE, "nal-hrd" },
976     { "vbr",           NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_VBR},  INT_MIN, INT_MAX, VE, "nal-hrd" },
977     { "cbr",           NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_CBR},  INT_MIN, INT_MAX, VE, "nal-hrd" },
978     { "avcintra-class","AVC-Intra class 50/100/200",                      OFFSET(avcintra_class),AV_OPT_TYPE_INT,     { .i64 = -1 }, -1, 200   , VE},
979     { "motion-est",   "Set motion estimation method",                     OFFSET(motion_est),    AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, X264_ME_TESA, VE, "motion-est"},
980     { "dia",           NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_DIA },  INT_MIN, INT_MAX, VE, "motion-est" },
981     { "hex",           NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_HEX },  INT_MIN, INT_MAX, VE, "motion-est" },
982     { "umh",           NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_UMH },  INT_MIN, INT_MAX, VE, "motion-est" },
983     { "esa",           NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_ESA },  INT_MIN, INT_MAX, VE, "motion-est" },
984     { "tesa",          NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_TESA }, INT_MIN, INT_MAX, VE, "motion-est" },
985     { "forced-idr",   "If forcing keyframes, force them as IDR frames.",                                  OFFSET(forced_idr),  AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE },
986     { "coder",    "Coder type",                                           OFFSET(coder), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE, "coder" },
987     { "default",          NULL, 0, AV_OPT_TYPE_CONST, { .i64 = -1 }, INT_MIN, INT_MAX, VE, "coder" },
988     { "cavlc",            NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 },  INT_MIN, INT_MAX, VE, "coder" },
989     { "cabac",            NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 },  INT_MIN, INT_MAX, VE, "coder" },
990     { "vlc",              NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 },  INT_MIN, INT_MAX, VE, "coder" },
991     { "ac",               NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 },  INT_MIN, INT_MAX, VE, "coder" },
992     { "b_strategy",   "Strategy to choose between I/P/B-frames",          OFFSET(b_frame_strategy), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 2, VE },
993     { "chromaoffset", "QP difference between chroma and luma",            OFFSET(chroma_offset), AV_OPT_TYPE_INT, { .i64 = -1 }, INT_MIN, INT_MAX, VE },
994     { "sc_threshold", "Scene change threshold",                           OFFSET(scenechange_threshold), AV_OPT_TYPE_INT, { .i64 = -1 }, INT_MIN, INT_MAX, VE },
995     { "noise_reduction", "Noise reduction",                               OFFSET(noise_reduction), AV_OPT_TYPE_INT, { .i64 = -1 }, INT_MIN, INT_MAX, VE },
996
997     { "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 },
998     { NULL },
999 };
1000
1001 static const AVCodecDefault x264_defaults[] = {
1002     { "b",                "0" },
1003     { "bf",               "-1" },
1004     { "flags2",           "0" },
1005     { "g",                "-1" },
1006     { "i_qfactor",        "-1" },
1007     { "b_qfactor",        "-1" },
1008     { "qmin",             "-1" },
1009     { "qmax",             "-1" },
1010     { "qdiff",            "-1" },
1011     { "qblur",            "-1" },
1012     { "qcomp",            "-1" },
1013 //     { "rc_lookahead",     "-1" },
1014     { "refs",             "-1" },
1015 #if FF_API_PRIVATE_OPT
1016     { "sc_threshold",     "-1" },
1017 #endif
1018     { "trellis",          "-1" },
1019 #if FF_API_PRIVATE_OPT
1020     { "nr",               "-1" },
1021 #endif
1022     { "me_range",         "-1" },
1023 #if FF_API_MOTION_EST
1024     { "me_method",        "-1" },
1025 #endif
1026     { "subq",             "-1" },
1027 #if FF_API_PRIVATE_OPT
1028     { "b_strategy",       "-1" },
1029 #endif
1030     { "keyint_min",       "-1" },
1031 #if FF_API_CODER_TYPE
1032     { "coder",            "-1" },
1033 #endif
1034     { "cmp",              "-1" },
1035     { "threads",          AV_STRINGIFY(X264_THREADS_AUTO) },
1036     { "thread_type",      "0" },
1037     { "flags",            "+cgop" },
1038     { "rc_init_occupancy","-1" },
1039     { NULL },
1040 };
1041
1042 #if CONFIG_LIBX264_ENCODER
1043 static const AVClass x264_class = {
1044     .class_name = "libx264",
1045     .item_name  = av_default_item_name,
1046     .option     = options,
1047     .version    = LIBAVUTIL_VERSION_INT,
1048 };
1049
1050 AVCodec ff_libx264_encoder = {
1051     .name             = "libx264",
1052     .long_name        = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
1053     .type             = AVMEDIA_TYPE_VIDEO,
1054     .id               = AV_CODEC_ID_H264,
1055     .priv_data_size   = sizeof(X264Context),
1056     .init             = X264_init,
1057     .encode2          = X264_frame,
1058     .close            = X264_close,
1059     .capabilities     = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AUTO_THREADS,
1060     .priv_class       = &x264_class,
1061     .defaults         = x264_defaults,
1062     .init_static_data = X264_init_static,
1063     .caps_internal    = FF_CODEC_CAP_INIT_THREADSAFE |
1064                         FF_CODEC_CAP_INIT_CLEANUP,
1065 };
1066 #endif
1067
1068 #if CONFIG_LIBX264RGB_ENCODER
1069 static const AVClass rgbclass = {
1070     .class_name = "libx264rgb",
1071     .item_name  = av_default_item_name,
1072     .option     = options,
1073     .version    = LIBAVUTIL_VERSION_INT,
1074 };
1075
1076 AVCodec ff_libx264rgb_encoder = {
1077     .name           = "libx264rgb",
1078     .long_name      = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 RGB"),
1079     .type           = AVMEDIA_TYPE_VIDEO,
1080     .id             = AV_CODEC_ID_H264,
1081     .priv_data_size = sizeof(X264Context),
1082     .init           = X264_init,
1083     .encode2        = X264_frame,
1084     .close          = X264_close,
1085     .capabilities   = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AUTO_THREADS,
1086     .priv_class     = &rgbclass,
1087     .defaults       = x264_defaults,
1088     .pix_fmts       = pix_fmts_8bit_rgb,
1089 };
1090 #endif
1091
1092 #if CONFIG_LIBX262_ENCODER
1093 static const AVClass X262_class = {
1094     .class_name = "libx262",
1095     .item_name  = av_default_item_name,
1096     .option     = options,
1097     .version    = LIBAVUTIL_VERSION_INT,
1098 };
1099
1100 AVCodec ff_libx262_encoder = {
1101     .name             = "libx262",
1102     .long_name        = NULL_IF_CONFIG_SMALL("libx262 MPEG2VIDEO"),
1103     .type             = AVMEDIA_TYPE_VIDEO,
1104     .id               = AV_CODEC_ID_MPEG2VIDEO,
1105     .priv_data_size   = sizeof(X264Context),
1106     .init             = X264_init,
1107     .encode2          = X264_frame,
1108     .close            = X264_close,
1109     .capabilities     = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_AUTO_THREADS,
1110     .priv_class       = &X262_class,
1111     .defaults         = x264_defaults,
1112     .pix_fmts         = pix_fmts_8bit,
1113     .caps_internal    = FF_CODEC_CAP_INIT_THREADSAFE |
1114                         FF_CODEC_CAP_INIT_CLEANUP,
1115 };
1116 #endif