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