]> git.sesse.net Git - ffmpeg/blob - libavcodec/libx264.c
4e7097e569e282f328fb5006d9746324d96669a9
[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/time.h"
29 #include "libavutil/intreadwrite.h"
30 #include "avcodec.h"
31 #include "internal.h"
32 #include "packet_internal.h"
33 #include "atsc_a53.h"
34
35 #if defined(_MSC_VER)
36 #define X264_API_IMPORTS 1
37 #endif
38
39 #include <x264.h>
40 #include <float.h>
41 #include <math.h>
42 #include <stdio.h>
43 #include <stdlib.h>
44 #include <string.h>
45
46 // from x264.h, for quant_offsets, Macroblocks are 16x16
47 // blocks of pixels (with respect to the luma plane)
48 #define MB_SIZE 16
49
50 typedef struct X264Opaque {
51     int64_t reordered_opaque;
52     int64_t wallclock;
53 } X264Opaque;
54
55 typedef struct X264Context {
56     AVClass        *class;
57     x264_param_t    params;
58     x264_t         *enc;
59     x264_picture_t  pic;
60     uint8_t        *sei;
61     int             sei_size;
62     char *preset;
63     char *tune;
64     char *profile;
65     char *level;
66     int fastfirstpass;
67     char *wpredp;
68     char *x264opts;
69     float crf;
70     float crf_max;
71     int cqp;
72     int aq_mode;
73     float aq_strength;
74     char *psy_rd;
75     int psy;
76     int rc_lookahead;
77     int weightp;
78     int weightb;
79     int ssim;
80     int intra_refresh;
81     int bluray_compat;
82     int b_bias;
83     int b_pyramid;
84     int mixed_refs;
85     int dct8x8;
86     int fast_pskip;
87     int aud;
88     int mbtree;
89     char *deblock;
90     float cplxblur;
91     char *partitions;
92     int direct_pred;
93     int slice_max_size;
94     char *stats;
95     int nal_hrd;
96     int avcintra_class;
97     int motion_est;
98     int forced_idr;
99     int coder;
100     int a53_cc;
101     int b_frame_strategy;
102     int chroma_offset;
103     int scenechange_threshold;
104     int noise_reduction;
105
106     AVDictionary *x264_params;
107
108     int nb_reordered_opaque, next_reordered_opaque;
109     X264Opaque *reordered_opaque;
110
111     /**
112      * If the encoder does not support ROI then warn the first time we
113      * encounter a frame with ROI side data.
114      */
115     int roi_warned;
116 } X264Context;
117
118 static void X264_log(void *p, int level, const char *fmt, va_list args)
119 {
120     static const int level_map[] = {
121         [X264_LOG_ERROR]   = AV_LOG_ERROR,
122         [X264_LOG_WARNING] = AV_LOG_WARNING,
123         [X264_LOG_INFO]    = AV_LOG_INFO,
124         [X264_LOG_DEBUG]   = AV_LOG_DEBUG
125     };
126
127     if (level < 0 || level > X264_LOG_DEBUG)
128         return;
129
130     av_vlog(p, level_map[level], fmt, args);
131 }
132
133
134 static int encode_nals(AVCodecContext *ctx, AVPacket *pkt,
135                        const x264_nal_t *nals, int nnal)
136 {
137     X264Context *x4 = ctx->priv_data;
138     uint8_t *p;
139     int i, size = x4->sei_size, ret;
140
141     if (!nnal)
142         return 0;
143
144     for (i = 0; i < nnal; i++)
145         size += nals[i].i_payload;
146
147     if ((ret = ff_alloc_packet2(ctx, pkt, size, 0)) < 0)
148         return ret;
149
150     p = pkt->data;
151
152     /* Write the SEI as part of the first frame. */
153     if (x4->sei_size > 0 && nnal > 0) {
154         if (x4->sei_size > size) {
155             av_log(ctx, AV_LOG_ERROR, "Error: nal buffer is too small\n");
156             return -1;
157         }
158         memcpy(p, x4->sei, x4->sei_size);
159         p += x4->sei_size;
160         x4->sei_size = 0;
161         av_freep(&x4->sei);
162     }
163
164     for (i = 0; i < nnal; i++){
165         memcpy(p, nals[i].p_payload, nals[i].i_payload);
166         p += nals[i].i_payload;
167     }
168
169     return 1;
170 }
171
172 static int avfmt2_num_planes(int avfmt)
173 {
174     switch (avfmt) {
175     case AV_PIX_FMT_YUV420P:
176     case AV_PIX_FMT_YUVJ420P:
177     case AV_PIX_FMT_YUV420P9:
178     case AV_PIX_FMT_YUV420P10:
179     case AV_PIX_FMT_YUV444P:
180         return 3;
181
182     case AV_PIX_FMT_BGR0:
183     case AV_PIX_FMT_BGR24:
184     case AV_PIX_FMT_RGB24:
185     case AV_PIX_FMT_GRAY8:
186     case AV_PIX_FMT_GRAY10:
187         return 1;
188
189     default:
190         return 3;
191     }
192 }
193
194 static void reconfig_encoder(AVCodecContext *ctx, const AVFrame *frame)
195 {
196     X264Context *x4 = ctx->priv_data;
197     AVFrameSideData *side_data;
198
199
200     if (x4->avcintra_class < 0) {
201         if (x4->params.b_interlaced && x4->params.b_tff != frame->top_field_first) {
202
203             x4->params.b_tff = frame->top_field_first;
204             x264_encoder_reconfig(x4->enc, &x4->params);
205         }
206         if (x4->params.vui.i_sar_height*ctx->sample_aspect_ratio.num != ctx->sample_aspect_ratio.den * x4->params.vui.i_sar_width) {
207             x4->params.vui.i_sar_height = ctx->sample_aspect_ratio.den;
208             x4->params.vui.i_sar_width  = ctx->sample_aspect_ratio.num;
209             x264_encoder_reconfig(x4->enc, &x4->params);
210         }
211
212         if (x4->params.rc.i_vbv_buffer_size != ctx->rc_buffer_size / 1000 ||
213             x4->params.rc.i_vbv_max_bitrate != ctx->rc_max_rate    / 1000) {
214             x4->params.rc.i_vbv_buffer_size = ctx->rc_buffer_size / 1000;
215             x4->params.rc.i_vbv_max_bitrate = ctx->rc_max_rate    / 1000;
216             x264_encoder_reconfig(x4->enc, &x4->params);
217         }
218
219         if (x4->params.rc.i_rc_method == X264_RC_ABR &&
220             x4->params.rc.i_bitrate != ctx->bit_rate / 1000) {
221             x4->params.rc.i_bitrate = ctx->bit_rate / 1000;
222             x264_encoder_reconfig(x4->enc, &x4->params);
223         }
224
225         if (x4->crf >= 0 &&
226             x4->params.rc.i_rc_method == X264_RC_CRF &&
227             x4->params.rc.f_rf_constant != x4->crf) {
228             x4->params.rc.f_rf_constant = x4->crf;
229             x264_encoder_reconfig(x4->enc, &x4->params);
230         }
231
232         if (x4->params.rc.i_rc_method == X264_RC_CQP &&
233             x4->cqp >= 0 &&
234             x4->params.rc.i_qp_constant != x4->cqp) {
235             x4->params.rc.i_qp_constant = x4->cqp;
236             x264_encoder_reconfig(x4->enc, &x4->params);
237         }
238
239         if (x4->crf_max >= 0 &&
240             x4->params.rc.f_rf_constant_max != x4->crf_max) {
241             x4->params.rc.f_rf_constant_max = x4->crf_max;
242             x264_encoder_reconfig(x4->enc, &x4->params);
243         }
244     }
245
246     side_data = av_frame_get_side_data(frame, AV_FRAME_DATA_STEREO3D);
247     if (side_data) {
248         AVStereo3D *stereo = (AVStereo3D *)side_data->data;
249         int fpa_type;
250
251         switch (stereo->type) {
252         case AV_STEREO3D_CHECKERBOARD:
253             fpa_type = 0;
254             break;
255         case AV_STEREO3D_COLUMNS:
256             fpa_type = 1;
257             break;
258         case AV_STEREO3D_LINES:
259             fpa_type = 2;
260             break;
261         case AV_STEREO3D_SIDEBYSIDE:
262             fpa_type = 3;
263             break;
264         case AV_STEREO3D_TOPBOTTOM:
265             fpa_type = 4;
266             break;
267         case AV_STEREO3D_FRAMESEQUENCE:
268             fpa_type = 5;
269             break;
270 #if X264_BUILD >= 145
271         case AV_STEREO3D_2D:
272             fpa_type = 6;
273             break;
274 #endif
275         default:
276             fpa_type = -1;
277             break;
278         }
279
280         /* Inverted mode is not supported by x264 */
281         if (stereo->flags & AV_STEREO3D_FLAG_INVERT) {
282             av_log(ctx, AV_LOG_WARNING,
283                    "Ignoring unsupported inverted stereo value %d\n", fpa_type);
284             fpa_type = -1;
285         }
286
287         if (fpa_type != x4->params.i_frame_packing) {
288             x4->params.i_frame_packing = fpa_type;
289             x264_encoder_reconfig(x4->enc, &x4->params);
290         }
291     }
292 }
293
294 static int X264_frame(AVCodecContext *ctx, AVPacket *pkt, const AVFrame *frame,
295                       int *got_packet)
296 {
297     X264Context *x4 = ctx->priv_data;
298     x264_nal_t *nal;
299     int nnal, i, ret;
300     x264_picture_t pic_out = {0};
301     int pict_type;
302     int bit_depth;
303     int64_t wallclock = 0;
304     X264Opaque *out_opaque;
305     AVFrameSideData *sd;
306
307     x264_picture_init( &x4->pic );
308     x4->pic.img.i_csp   = x4->params.i_csp;
309 #if X264_BUILD >= 153
310     bit_depth = x4->params.i_bitdepth;
311 #else
312     bit_depth = x264_bit_depth;
313 #endif
314     if (bit_depth > 8)
315         x4->pic.img.i_csp |= X264_CSP_HIGH_DEPTH;
316     x4->pic.img.i_plane = avfmt2_num_planes(ctx->pix_fmt);
317
318     if (frame) {
319         for (i = 0; i < x4->pic.img.i_plane; i++) {
320             x4->pic.img.plane[i]    = frame->data[i];
321             x4->pic.img.i_stride[i] = frame->linesize[i];
322         }
323
324         x4->pic.i_pts  = frame->pts;
325
326         x4->reordered_opaque[x4->next_reordered_opaque].reordered_opaque = frame->reordered_opaque;
327         x4->reordered_opaque[x4->next_reordered_opaque].wallclock = wallclock;
328         if (ctx->export_side_data & AV_CODEC_EXPORT_DATA_PRFT)
329             x4->reordered_opaque[x4->next_reordered_opaque].wallclock = av_gettime();
330         x4->pic.opaque = &x4->reordered_opaque[x4->next_reordered_opaque];
331         x4->next_reordered_opaque++;
332         x4->next_reordered_opaque %= x4->nb_reordered_opaque;
333
334         switch (frame->pict_type) {
335         case AV_PICTURE_TYPE_I:
336             x4->pic.i_type = x4->forced_idr > 0 ? X264_TYPE_IDR
337                                                 : X264_TYPE_KEYFRAME;
338             break;
339         case AV_PICTURE_TYPE_P:
340             x4->pic.i_type = X264_TYPE_P;
341             break;
342         case AV_PICTURE_TYPE_B:
343             x4->pic.i_type = X264_TYPE_B;
344             break;
345         default:
346             x4->pic.i_type = X264_TYPE_AUTO;
347             break;
348         }
349         reconfig_encoder(ctx, frame);
350
351         if (x4->a53_cc) {
352             void *sei_data;
353             size_t sei_size;
354
355             ret = ff_alloc_a53_sei(frame, 0, &sei_data, &sei_size);
356             if (ret < 0) {
357                 av_log(ctx, AV_LOG_ERROR, "Not enough memory for closed captions, skipping\n");
358             } else if (sei_data) {
359                 x4->pic.extra_sei.payloads = av_mallocz(sizeof(x4->pic.extra_sei.payloads[0]));
360                 if (x4->pic.extra_sei.payloads == NULL) {
361                     av_log(ctx, AV_LOG_ERROR, "Not enough memory for closed captions, skipping\n");
362                     av_free(sei_data);
363                 } else {
364                     x4->pic.extra_sei.sei_free = av_free;
365
366                     x4->pic.extra_sei.payloads[0].payload_size = sei_size;
367                     x4->pic.extra_sei.payloads[0].payload = sei_data;
368                     x4->pic.extra_sei.num_payloads = 1;
369                     x4->pic.extra_sei.payloads[0].payload_type = 4;
370                 }
371             }
372         }
373
374         sd = av_frame_get_side_data(frame, AV_FRAME_DATA_REGIONS_OF_INTEREST);
375         if (sd) {
376             if (x4->params.rc.i_aq_mode == X264_AQ_NONE) {
377                 if (!x4->roi_warned) {
378                     x4->roi_warned = 1;
379                     av_log(ctx, AV_LOG_WARNING, "Adaptive quantization must be enabled to use ROI encoding, skipping ROI.\n");
380                 }
381             } else {
382                 if (frame->interlaced_frame == 0) {
383                     int mbx = (frame->width + MB_SIZE - 1) / MB_SIZE;
384                     int mby = (frame->height + MB_SIZE - 1) / MB_SIZE;
385                     int qp_range = 51 + 6 * (bit_depth - 8);
386                     int nb_rois;
387                     const AVRegionOfInterest *roi;
388                     uint32_t roi_size;
389                     float *qoffsets;
390
391                     roi = (const AVRegionOfInterest*)sd->data;
392                     roi_size = roi->self_size;
393                     if (!roi_size || sd->size % roi_size != 0) {
394                         av_log(ctx, AV_LOG_ERROR, "Invalid AVRegionOfInterest.self_size.\n");
395                         return AVERROR(EINVAL);
396                     }
397                     nb_rois = sd->size / roi_size;
398
399                     qoffsets = av_mallocz_array(mbx * mby, sizeof(*qoffsets));
400                     if (!qoffsets)
401                         return AVERROR(ENOMEM);
402
403                     // This list must be iterated in reverse because the first
404                     // region in the list applies when regions overlap.
405                     for (int i = nb_rois - 1; i >= 0; i--) {
406                         int startx, endx, starty, endy;
407                         float qoffset;
408
409                         roi = (const AVRegionOfInterest*)(sd->data + roi_size * i);
410
411                         starty = FFMIN(mby, roi->top / MB_SIZE);
412                         endy   = FFMIN(mby, (roi->bottom + MB_SIZE - 1)/ MB_SIZE);
413                         startx = FFMIN(mbx, roi->left / MB_SIZE);
414                         endx   = FFMIN(mbx, (roi->right + MB_SIZE - 1)/ MB_SIZE);
415
416                         if (roi->qoffset.den == 0) {
417                             av_free(qoffsets);
418                             av_log(ctx, AV_LOG_ERROR, "AVRegionOfInterest.qoffset.den must not be zero.\n");
419                             return AVERROR(EINVAL);
420                         }
421                         qoffset = roi->qoffset.num * 1.0f / roi->qoffset.den;
422                         qoffset = av_clipf(qoffset * qp_range, -qp_range, +qp_range);
423
424                         for (int y = starty; y < endy; y++) {
425                             for (int x = startx; x < endx; x++) {
426                                 qoffsets[x + y*mbx] = qoffset;
427                             }
428                         }
429                     }
430
431                     x4->pic.prop.quant_offsets = qoffsets;
432                     x4->pic.prop.quant_offsets_free = av_free;
433                 } else {
434                     if (!x4->roi_warned) {
435                         x4->roi_warned = 1;
436                         av_log(ctx, AV_LOG_WARNING, "interlaced_frame not supported for ROI encoding yet, skipping ROI.\n");
437                     }
438                 }
439             }
440         }
441     }
442
443     do {
444         if (x264_encoder_encode(x4->enc, &nal, &nnal, frame? &x4->pic: NULL, &pic_out) < 0)
445             return AVERROR_EXTERNAL;
446
447         ret = encode_nals(ctx, pkt, nal, nnal);
448         if (ret < 0)
449             return ret;
450     } while (!ret && !frame && x264_encoder_delayed_frames(x4->enc));
451
452     if (!ret)
453         return 0;
454
455     pkt->pts = pic_out.i_pts;
456     pkt->dts = pic_out.i_dts;
457
458     out_opaque = pic_out.opaque;
459     if (out_opaque >= x4->reordered_opaque &&
460         out_opaque < &x4->reordered_opaque[x4->nb_reordered_opaque]) {
461         ctx->reordered_opaque = out_opaque->reordered_opaque;
462         wallclock = out_opaque->wallclock;
463     } else {
464         // Unexpected opaque pointer on picture output
465         ctx->reordered_opaque = 0;
466     }
467
468     switch (pic_out.i_type) {
469     case X264_TYPE_IDR:
470     case X264_TYPE_I:
471         pict_type = AV_PICTURE_TYPE_I;
472         break;
473     case X264_TYPE_P:
474         pict_type = AV_PICTURE_TYPE_P;
475         break;
476     case X264_TYPE_B:
477     case X264_TYPE_BREF:
478         pict_type = AV_PICTURE_TYPE_B;
479         break;
480     default:
481         av_log(ctx, AV_LOG_ERROR, "Unknown picture type encountered.\n");
482         return AVERROR_EXTERNAL;
483     }
484 #if FF_API_CODED_FRAME
485 FF_DISABLE_DEPRECATION_WARNINGS
486     ctx->coded_frame->pict_type = pict_type;
487 FF_ENABLE_DEPRECATION_WARNINGS
488 #endif
489
490     pkt->flags |= AV_PKT_FLAG_KEY*pic_out.b_keyframe;
491     if (ret) {
492         ff_side_data_set_encoder_stats(pkt, (pic_out.i_qpplus1 - 1) * FF_QP2LAMBDA, NULL, 0, pict_type);
493         if (wallclock)
494             ff_side_data_set_prft(pkt, wallclock);
495
496 #if FF_API_CODED_FRAME
497 FF_DISABLE_DEPRECATION_WARNINGS
498         ctx->coded_frame->quality = (pic_out.i_qpplus1 - 1) * FF_QP2LAMBDA;
499 FF_ENABLE_DEPRECATION_WARNINGS
500 #endif
501     }
502
503     *got_packet = ret;
504     return 0;
505 }
506
507 static av_cold int X264_close(AVCodecContext *avctx)
508 {
509     X264Context *x4 = avctx->priv_data;
510
511     av_freep(&avctx->extradata);
512     av_freep(&x4->sei);
513     av_freep(&x4->reordered_opaque);
514
515 #if X264_BUILD >= 161
516     x264_param_cleanup(&x4->params);
517 #endif
518
519     if (x4->enc) {
520         x264_encoder_close(x4->enc);
521         x4->enc = NULL;
522     }
523
524     return 0;
525 }
526
527 static int parse_opts(AVCodecContext *avctx, const char *opt, const char *param)
528 {
529     X264Context *x4 = avctx->priv_data;
530     int ret;
531
532     if ((ret = x264_param_parse(&x4->params, opt, param)) < 0) {
533         if (ret == X264_PARAM_BAD_NAME) {
534             av_log(avctx, AV_LOG_ERROR,
535                    "bad option '%s': '%s'\n", opt, param);
536             ret = AVERROR(EINVAL);
537 #if X264_BUILD >= 161
538         } else if (ret == X264_PARAM_ALLOC_FAILED) {
539             av_log(avctx, AV_LOG_ERROR,
540                    "out of memory parsing option '%s': '%s'\n", opt, param);
541             ret = AVERROR(ENOMEM);
542 #endif
543         } else {
544             av_log(avctx, AV_LOG_ERROR,
545                    "bad value for '%s': '%s'\n", opt, param);
546             ret = AVERROR(EINVAL);
547         }
548     }
549
550     return ret;
551 }
552
553 static int convert_pix_fmt(enum AVPixelFormat pix_fmt)
554 {
555     switch (pix_fmt) {
556     case AV_PIX_FMT_YUV420P:
557     case AV_PIX_FMT_YUVJ420P:
558     case AV_PIX_FMT_YUV420P9:
559     case AV_PIX_FMT_YUV420P10: return X264_CSP_I420;
560     case AV_PIX_FMT_YUV422P:
561     case AV_PIX_FMT_YUVJ422P:
562     case AV_PIX_FMT_YUV422P10: return X264_CSP_I422;
563     case AV_PIX_FMT_YUV444P:
564     case AV_PIX_FMT_YUVJ444P:
565     case AV_PIX_FMT_YUV444P9:
566     case AV_PIX_FMT_YUV444P10: return X264_CSP_I444;
567 #if CONFIG_LIBX264RGB_ENCODER
568     case AV_PIX_FMT_BGR0:
569         return X264_CSP_BGRA;
570     case AV_PIX_FMT_BGR24:
571         return X264_CSP_BGR;
572
573     case AV_PIX_FMT_RGB24:
574         return X264_CSP_RGB;
575 #endif
576     case AV_PIX_FMT_NV12:      return X264_CSP_NV12;
577     case AV_PIX_FMT_NV16:
578     case AV_PIX_FMT_NV20:      return X264_CSP_NV16;
579 #ifdef X264_CSP_NV21
580     case AV_PIX_FMT_NV21:      return X264_CSP_NV21;
581 #endif
582 #ifdef X264_CSP_I400
583     case AV_PIX_FMT_GRAY8:
584     case AV_PIX_FMT_GRAY10:    return X264_CSP_I400;
585 #endif
586     };
587     return 0;
588 }
589
590 #define PARSE_X264_OPT(name, var)\
591     if (x4->var && x264_param_parse(&x4->params, name, x4->var) < 0) {\
592         av_log(avctx, AV_LOG_ERROR, "Error parsing option '%s' with value '%s'.\n", name, x4->var);\
593         return AVERROR(EINVAL);\
594     }
595
596 static av_cold int X264_init(AVCodecContext *avctx)
597 {
598     X264Context *x4 = avctx->priv_data;
599     AVCPBProperties *cpb_props;
600     int sw,sh;
601     int ret;
602
603     if (avctx->global_quality > 0)
604         av_log(avctx, AV_LOG_WARNING, "-qscale is ignored, -crf is recommended.\n");
605
606 #if CONFIG_LIBX262_ENCODER
607     if (avctx->codec_id == AV_CODEC_ID_MPEG2VIDEO) {
608         x4->params.b_mpeg2 = 1;
609         x264_param_default_mpeg2(&x4->params);
610     } else
611 #endif
612     x264_param_default(&x4->params);
613
614     x4->params.b_deblocking_filter         = avctx->flags & AV_CODEC_FLAG_LOOP_FILTER;
615
616     if (x4->preset || x4->tune)
617         if (x264_param_default_preset(&x4->params, x4->preset, x4->tune) < 0) {
618             int i;
619             av_log(avctx, AV_LOG_ERROR, "Error setting preset/tune %s/%s.\n", x4->preset, x4->tune);
620             av_log(avctx, AV_LOG_INFO, "Possible presets:");
621             for (i = 0; x264_preset_names[i]; i++)
622                 av_log(avctx, AV_LOG_INFO, " %s", x264_preset_names[i]);
623             av_log(avctx, AV_LOG_INFO, "\n");
624             av_log(avctx, AV_LOG_INFO, "Possible tunes:");
625             for (i = 0; x264_tune_names[i]; i++)
626                 av_log(avctx, AV_LOG_INFO, " %s", x264_tune_names[i]);
627             av_log(avctx, AV_LOG_INFO, "\n");
628             return AVERROR(EINVAL);
629         }
630
631     if (avctx->level > 0)
632         x4->params.i_level_idc = avctx->level;
633
634     x4->params.pf_log               = X264_log;
635     x4->params.p_log_private        = avctx;
636     x4->params.i_log_level          = X264_LOG_DEBUG;
637     x4->params.i_csp                = convert_pix_fmt(avctx->pix_fmt);
638 #if X264_BUILD >= 153
639     x4->params.i_bitdepth           = av_pix_fmt_desc_get(avctx->pix_fmt)->comp[0].depth;
640 #endif
641
642     PARSE_X264_OPT("weightp", wpredp);
643
644     if (avctx->bit_rate) {
645         if (avctx->bit_rate / 1000 > INT_MAX || avctx->rc_max_rate / 1000 > INT_MAX) {
646             av_log(avctx, AV_LOG_ERROR, "bit_rate and rc_max_rate > %d000 not supported by libx264\n", INT_MAX);
647             return AVERROR(EINVAL);
648         }
649         x4->params.rc.i_bitrate   = avctx->bit_rate / 1000;
650         x4->params.rc.i_rc_method = X264_RC_ABR;
651     }
652     x4->params.rc.i_vbv_buffer_size = avctx->rc_buffer_size / 1000;
653     x4->params.rc.i_vbv_max_bitrate = avctx->rc_max_rate    / 1000;
654     x4->params.rc.b_stat_write      = avctx->flags & AV_CODEC_FLAG_PASS1;
655     if (avctx->flags & AV_CODEC_FLAG_PASS2) {
656         x4->params.rc.b_stat_read = 1;
657     } else {
658         if (x4->crf >= 0) {
659             x4->params.rc.i_rc_method   = X264_RC_CRF;
660             x4->params.rc.f_rf_constant = x4->crf;
661         } else if (x4->cqp >= 0) {
662             x4->params.rc.i_rc_method   = X264_RC_CQP;
663             x4->params.rc.i_qp_constant = x4->cqp;
664         }
665
666         if (x4->crf_max >= 0)
667             x4->params.rc.f_rf_constant_max = x4->crf_max;
668     }
669
670     if (avctx->rc_buffer_size && avctx->rc_initial_buffer_occupancy > 0 &&
671         (avctx->rc_initial_buffer_occupancy <= avctx->rc_buffer_size)) {
672         x4->params.rc.f_vbv_buffer_init =
673             (float)avctx->rc_initial_buffer_occupancy / avctx->rc_buffer_size;
674     }
675
676     PARSE_X264_OPT("level", level);
677
678     if (avctx->i_quant_factor > 0)
679         x4->params.rc.f_ip_factor         = 1 / fabs(avctx->i_quant_factor);
680     if (avctx->b_quant_factor > 0)
681         x4->params.rc.f_pb_factor         = avctx->b_quant_factor;
682
683     if (x4->chroma_offset)
684         x4->params.analyse.i_chroma_qp_offset = x4->chroma_offset;
685
686     if (avctx->gop_size >= 0)
687         x4->params.i_keyint_max         = avctx->gop_size;
688     if (avctx->max_b_frames >= 0)
689         x4->params.i_bframe             = avctx->max_b_frames;
690
691     if (x4->scenechange_threshold >= 0)
692         x4->params.i_scenecut_threshold = x4->scenechange_threshold;
693
694     if (avctx->qmin >= 0)
695         x4->params.rc.i_qp_min          = avctx->qmin;
696     if (avctx->qmax >= 0)
697         x4->params.rc.i_qp_max          = avctx->qmax;
698     if (avctx->max_qdiff >= 0)
699         x4->params.rc.i_qp_step         = avctx->max_qdiff;
700     if (avctx->qblur >= 0)
701         x4->params.rc.f_qblur           = avctx->qblur;     /* temporally blur quants */
702     if (avctx->qcompress >= 0)
703         x4->params.rc.f_qcompress       = avctx->qcompress; /* 0.0 => cbr, 1.0 => constant qp */
704     if (avctx->refs >= 0)
705         x4->params.i_frame_reference    = avctx->refs;
706     else if (x4->params.i_level_idc > 0) {
707         int i;
708         int mbn = AV_CEIL_RSHIFT(avctx->width, 4) * AV_CEIL_RSHIFT(avctx->height, 4);
709         int scale = X264_BUILD < 129 ? 384 : 1;
710
711         for (i = 0; i<x264_levels[i].level_idc; i++)
712             if (x264_levels[i].level_idc == x4->params.i_level_idc)
713                 x4->params.i_frame_reference = av_clip(x264_levels[i].dpb / mbn / scale, 1, x4->params.i_frame_reference);
714     }
715
716     if (avctx->trellis >= 0)
717         x4->params.analyse.i_trellis    = avctx->trellis;
718     if (avctx->me_range >= 0)
719         x4->params.analyse.i_me_range   = avctx->me_range;
720     if (x4->noise_reduction >= 0)
721         x4->params.analyse.i_noise_reduction = x4->noise_reduction;
722     if (avctx->me_subpel_quality >= 0)
723         x4->params.analyse.i_subpel_refine   = avctx->me_subpel_quality;
724     if (avctx->keyint_min >= 0)
725         x4->params.i_keyint_min = avctx->keyint_min;
726     if (avctx->me_cmp >= 0)
727         x4->params.analyse.b_chroma_me = avctx->me_cmp & FF_CMP_CHROMA;
728
729     if (x4->aq_mode >= 0)
730         x4->params.rc.i_aq_mode = x4->aq_mode;
731     if (x4->aq_strength >= 0)
732         x4->params.rc.f_aq_strength = x4->aq_strength;
733     PARSE_X264_OPT("psy-rd", psy_rd);
734     PARSE_X264_OPT("deblock", deblock);
735     PARSE_X264_OPT("partitions", partitions);
736     PARSE_X264_OPT("stats", stats);
737     if (x4->psy >= 0)
738         x4->params.analyse.b_psy  = x4->psy;
739     if (x4->rc_lookahead >= 0)
740         x4->params.rc.i_lookahead = x4->rc_lookahead;
741     if (x4->weightp >= 0)
742         x4->params.analyse.i_weighted_pred = x4->weightp;
743     if (x4->weightb >= 0)
744         x4->params.analyse.b_weighted_bipred = x4->weightb;
745     if (x4->cplxblur >= 0)
746         x4->params.rc.f_complexity_blur = x4->cplxblur;
747
748     if (x4->ssim >= 0)
749         x4->params.analyse.b_ssim = x4->ssim;
750     if (x4->intra_refresh >= 0)
751         x4->params.b_intra_refresh = x4->intra_refresh;
752     if (x4->bluray_compat >= 0) {
753         x4->params.b_bluray_compat = x4->bluray_compat;
754         x4->params.b_vfr_input = 0;
755     }
756     if (x4->avcintra_class >= 0)
757 #if X264_BUILD >= 142
758         x4->params.i_avcintra_class = x4->avcintra_class;
759 #else
760         av_log(avctx, AV_LOG_ERROR,
761                "x264 too old for AVC Intra, at least version 142 needed\n");
762 #endif
763     if (x4->b_bias != INT_MIN)
764         x4->params.i_bframe_bias              = x4->b_bias;
765     if (x4->b_pyramid >= 0)
766         x4->params.i_bframe_pyramid = x4->b_pyramid;
767     if (x4->mixed_refs >= 0)
768         x4->params.analyse.b_mixed_references = x4->mixed_refs;
769     if (x4->dct8x8 >= 0)
770         x4->params.analyse.b_transform_8x8    = x4->dct8x8;
771     if (x4->fast_pskip >= 0)
772         x4->params.analyse.b_fast_pskip       = x4->fast_pskip;
773     if (x4->aud >= 0)
774         x4->params.b_aud                      = x4->aud;
775     if (x4->mbtree >= 0)
776         x4->params.rc.b_mb_tree               = x4->mbtree;
777     if (x4->direct_pred >= 0)
778         x4->params.analyse.i_direct_mv_pred   = x4->direct_pred;
779
780     if (x4->slice_max_size >= 0)
781         x4->params.i_slice_max_size =  x4->slice_max_size;
782
783     if (x4->fastfirstpass)
784         x264_param_apply_fastfirstpass(&x4->params);
785
786     /* Allow specifying the x264 profile through AVCodecContext. */
787     if (!x4->profile)
788         switch (avctx->profile) {
789         case FF_PROFILE_H264_BASELINE:
790             x4->profile = av_strdup("baseline");
791             break;
792         case FF_PROFILE_H264_HIGH:
793             x4->profile = av_strdup("high");
794             break;
795         case FF_PROFILE_H264_HIGH_10:
796             x4->profile = av_strdup("high10");
797             break;
798         case FF_PROFILE_H264_HIGH_422:
799             x4->profile = av_strdup("high422");
800             break;
801         case FF_PROFILE_H264_HIGH_444:
802             x4->profile = av_strdup("high444");
803             break;
804         case FF_PROFILE_H264_MAIN:
805             x4->profile = av_strdup("main");
806             break;
807         default:
808             break;
809         }
810
811     if (x4->nal_hrd >= 0)
812         x4->params.i_nal_hrd = x4->nal_hrd;
813
814     if (x4->motion_est >= 0)
815         x4->params.analyse.i_me_method = x4->motion_est;
816
817     if (x4->coder >= 0)
818         x4->params.b_cabac = x4->coder;
819
820     if (x4->b_frame_strategy >= 0)
821         x4->params.i_bframe_adaptive = x4->b_frame_strategy;
822
823     if (x4->profile)
824         if (x264_param_apply_profile(&x4->params, x4->profile) < 0) {
825             int i;
826             av_log(avctx, AV_LOG_ERROR, "Error setting profile %s.\n", x4->profile);
827             av_log(avctx, AV_LOG_INFO, "Possible profiles:");
828             for (i = 0; x264_profile_names[i]; i++)
829                 av_log(avctx, AV_LOG_INFO, " %s", x264_profile_names[i]);
830             av_log(avctx, AV_LOG_INFO, "\n");
831             return AVERROR(EINVAL);
832         }
833
834     x4->params.i_width          = avctx->width;
835     x4->params.i_height         = avctx->height;
836     av_reduce(&sw, &sh, avctx->sample_aspect_ratio.num, avctx->sample_aspect_ratio.den, 4096);
837     x4->params.vui.i_sar_width  = sw;
838     x4->params.vui.i_sar_height = sh;
839     x4->params.i_timebase_den = avctx->time_base.den;
840     x4->params.i_timebase_num = avctx->time_base.num;
841     if (avctx->framerate.num > 0 && avctx->framerate.den > 0) {
842         x4->params.i_fps_num = avctx->framerate.num;
843         x4->params.i_fps_den = avctx->framerate.den;
844     } else {
845         x4->params.i_fps_num = avctx->time_base.den;
846         x4->params.i_fps_den = avctx->time_base.num * avctx->ticks_per_frame;
847     }
848
849     x4->params.analyse.b_psnr = avctx->flags & AV_CODEC_FLAG_PSNR;
850
851     x4->params.i_threads      = avctx->thread_count;
852     if (avctx->thread_type)
853         x4->params.b_sliced_threads = avctx->thread_type == FF_THREAD_SLICE;
854
855     x4->params.b_interlaced   = avctx->flags & AV_CODEC_FLAG_INTERLACED_DCT;
856
857     x4->params.b_open_gop     = !(avctx->flags & AV_CODEC_FLAG_CLOSED_GOP);
858
859     x4->params.i_slice_count  = avctx->slices;
860
861     x4->params.vui.b_fullrange = avctx->pix_fmt == AV_PIX_FMT_YUVJ420P ||
862                                  avctx->pix_fmt == AV_PIX_FMT_YUVJ422P ||
863                                  avctx->pix_fmt == AV_PIX_FMT_YUVJ444P ||
864                                  avctx->color_range == AVCOL_RANGE_JPEG;
865
866     if (avctx->colorspace != AVCOL_SPC_UNSPECIFIED)
867         x4->params.vui.i_colmatrix = avctx->colorspace;
868     if (avctx->color_primaries != AVCOL_PRI_UNSPECIFIED)
869         x4->params.vui.i_colorprim = avctx->color_primaries;
870     if (avctx->color_trc != AVCOL_TRC_UNSPECIFIED)
871         x4->params.vui.i_transfer  = avctx->color_trc;
872
873     if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER)
874         x4->params.b_repeat_headers = 0;
875
876     if(x4->x264opts){
877         const char *p= x4->x264opts;
878         while(p){
879             char param[4096]={0}, val[4096]={0};
880             if(sscanf(p, "%4095[^:=]=%4095[^:]", param, val) == 1){
881                 ret = parse_opts(avctx, param, "1");
882                 if (ret < 0)
883                     return ret;
884             } else {
885                 ret = parse_opts(avctx, param, val);
886                 if (ret < 0)
887                     return ret;
888             }
889             p= strchr(p, ':');
890             p+=!!p;
891         }
892     }
893
894
895     {
896         AVDictionaryEntry *en = NULL;
897         while (en = av_dict_get(x4->x264_params, "", en, AV_DICT_IGNORE_SUFFIX)) {
898            if ((ret = x264_param_parse(&x4->params, en->key, en->value)) < 0) {
899                av_log(avctx, AV_LOG_WARNING,
900                       "Error parsing option '%s = %s'.\n",
901                        en->key, en->value);
902 #if X264_BUILD >= 161
903                if (ret == X264_PARAM_ALLOC_FAILED)
904                    return AVERROR(ENOMEM);
905 #endif
906            }
907         }
908     }
909
910     // update AVCodecContext with x264 parameters
911     avctx->has_b_frames = x4->params.i_bframe ?
912         x4->params.i_bframe_pyramid ? 2 : 1 : 0;
913     if (avctx->max_b_frames < 0)
914         avctx->max_b_frames = 0;
915
916     avctx->bit_rate = x4->params.rc.i_bitrate*1000LL;
917
918     x4->enc = x264_encoder_open(&x4->params);
919     if (!x4->enc)
920         return AVERROR_EXTERNAL;
921
922     if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER) {
923         x264_nal_t *nal;
924         uint8_t *p;
925         int nnal, s, i;
926
927         s = x264_encoder_headers(x4->enc, &nal, &nnal);
928         avctx->extradata = p = av_mallocz(s + AV_INPUT_BUFFER_PADDING_SIZE);
929         if (!p)
930             return AVERROR(ENOMEM);
931
932         for (i = 0; i < nnal; i++) {
933             /* Don't put the SEI in extradata. */
934             if (nal[i].i_type == NAL_SEI) {
935                 av_log(avctx, AV_LOG_INFO, "%s\n", nal[i].p_payload+25);
936                 x4->sei_size = nal[i].i_payload;
937                 x4->sei      = av_malloc(x4->sei_size);
938                 if (!x4->sei)
939                     return AVERROR(ENOMEM);
940                 memcpy(x4->sei, nal[i].p_payload, nal[i].i_payload);
941                 continue;
942             }
943             memcpy(p, nal[i].p_payload, nal[i].i_payload);
944             p += nal[i].i_payload;
945         }
946         avctx->extradata_size = p - avctx->extradata;
947     }
948
949     cpb_props = ff_add_cpb_side_data(avctx);
950     if (!cpb_props)
951         return AVERROR(ENOMEM);
952     cpb_props->buffer_size = x4->params.rc.i_vbv_buffer_size * 1000;
953     cpb_props->max_bitrate = x4->params.rc.i_vbv_max_bitrate * 1000LL;
954     cpb_props->avg_bitrate = x4->params.rc.i_bitrate         * 1000LL;
955
956     // Overestimate the reordered opaque buffer size, in case a runtime
957     // reconfigure would increase the delay (which it shouldn't).
958     x4->nb_reordered_opaque = x264_encoder_maximum_delayed_frames(x4->enc) + 17;
959     x4->reordered_opaque    = av_malloc_array(x4->nb_reordered_opaque,
960                                               sizeof(*x4->reordered_opaque));
961     if (!x4->reordered_opaque)
962         return AVERROR(ENOMEM);
963
964     return 0;
965 }
966
967 static const enum AVPixelFormat pix_fmts_8bit[] = {
968     AV_PIX_FMT_YUV420P,
969     AV_PIX_FMT_YUVJ420P,
970     AV_PIX_FMT_YUV422P,
971     AV_PIX_FMT_YUVJ422P,
972     AV_PIX_FMT_YUV444P,
973     AV_PIX_FMT_YUVJ444P,
974     AV_PIX_FMT_NV12,
975     AV_PIX_FMT_NV16,
976 #ifdef X264_CSP_NV21
977     AV_PIX_FMT_NV21,
978 #endif
979     AV_PIX_FMT_NONE
980 };
981 static const enum AVPixelFormat pix_fmts_9bit[] = {
982     AV_PIX_FMT_YUV420P9,
983     AV_PIX_FMT_YUV444P9,
984     AV_PIX_FMT_NONE
985 };
986 static const enum AVPixelFormat pix_fmts_10bit[] = {
987     AV_PIX_FMT_YUV420P10,
988     AV_PIX_FMT_YUV422P10,
989     AV_PIX_FMT_YUV444P10,
990     AV_PIX_FMT_NV20,
991     AV_PIX_FMT_NONE
992 };
993 static const enum AVPixelFormat pix_fmts_all[] = {
994     AV_PIX_FMT_YUV420P,
995     AV_PIX_FMT_YUVJ420P,
996     AV_PIX_FMT_YUV422P,
997     AV_PIX_FMT_YUVJ422P,
998     AV_PIX_FMT_YUV444P,
999     AV_PIX_FMT_YUVJ444P,
1000     AV_PIX_FMT_NV12,
1001     AV_PIX_FMT_NV16,
1002 #ifdef X264_CSP_NV21
1003     AV_PIX_FMT_NV21,
1004 #endif
1005     AV_PIX_FMT_YUV420P10,
1006     AV_PIX_FMT_YUV422P10,
1007     AV_PIX_FMT_YUV444P10,
1008     AV_PIX_FMT_NV20,
1009 #ifdef X264_CSP_I400
1010     AV_PIX_FMT_GRAY8,
1011     AV_PIX_FMT_GRAY10,
1012 #endif
1013     AV_PIX_FMT_NONE
1014 };
1015 #if CONFIG_LIBX264RGB_ENCODER
1016 static const enum AVPixelFormat pix_fmts_8bit_rgb[] = {
1017     AV_PIX_FMT_BGR0,
1018     AV_PIX_FMT_BGR24,
1019     AV_PIX_FMT_RGB24,
1020     AV_PIX_FMT_NONE
1021 };
1022 #endif
1023
1024 #if X264_BUILD < 153
1025 static av_cold void X264_init_static(AVCodec *codec)
1026 {
1027     if (x264_bit_depth == 8)
1028         codec->pix_fmts = pix_fmts_8bit;
1029     else if (x264_bit_depth == 9)
1030         codec->pix_fmts = pix_fmts_9bit;
1031     else if (x264_bit_depth == 10)
1032         codec->pix_fmts = pix_fmts_10bit;
1033 }
1034 #endif
1035
1036 #define OFFSET(x) offsetof(X264Context, x)
1037 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
1038 static const AVOption options[] = {
1039     { "preset",        "Set the encoding preset (cf. x264 --fullhelp)",   OFFSET(preset),        AV_OPT_TYPE_STRING, { .str = "medium" }, 0, 0, VE},
1040     { "tune",          "Tune the encoding params (cf. x264 --fullhelp)",  OFFSET(tune),          AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
1041     { "profile",       "Set profile restrictions (cf. x264 --fullhelp) ", OFFSET(profile),       AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
1042     { "fastfirstpass", "Use fast settings when encoding first pass",      OFFSET(fastfirstpass), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, VE},
1043     {"level", "Specify level (as defined by Annex A)", OFFSET(level), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
1044     {"passlogfile", "Filename for 2 pass stats", OFFSET(stats), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
1045     {"wpredp", "Weighted prediction for P-frames", OFFSET(wpredp), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
1046     {"a53cc",          "Use A53 Closed Captions (if available)",          OFFSET(a53_cc),        AV_OPT_TYPE_BOOL,   {.i64 = 1}, 0, 1, VE},
1047     {"x264opts", "x264 options", OFFSET(x264opts), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
1048     { "crf",           "Select the quality for constant quality mode",    OFFSET(crf),           AV_OPT_TYPE_FLOAT,  {.dbl = -1 }, -1, FLT_MAX, VE },
1049     { "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 },
1050     { "qp",            "Constant quantization parameter rate control method",OFFSET(cqp),        AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, INT_MAX, VE },
1051     { "aq-mode",       "AQ method",                                       OFFSET(aq_mode),       AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, INT_MAX, VE, "aq_mode"},
1052     { "none",          NULL,                              0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_NONE},         INT_MIN, INT_MAX, VE, "aq_mode" },
1053     { "variance",      "Variance AQ (complexity mask)",   0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_VARIANCE},     INT_MIN, INT_MAX, VE, "aq_mode" },
1054     { "autovariance",  "Auto-variance AQ",                0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_AUTOVARIANCE}, INT_MIN, INT_MAX, VE, "aq_mode" },
1055 #if X264_BUILD >= 144
1056     { "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" },
1057 #endif
1058     { "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},
1059     { "psy",           "Use psychovisual optimizations.",                 OFFSET(psy),           AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE },
1060     { "psy-rd",        "Strength of psychovisual optimization, in <psy-rd>:<psy-trellis> format.", OFFSET(psy_rd), AV_OPT_TYPE_STRING,  {0 }, 0, 0, VE},
1061     { "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 },
1062     { "weightb",       "Weighted prediction for B-frames.",               OFFSET(weightb),       AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE },
1063     { "weightp",       "Weighted prediction analysis method.",            OFFSET(weightp),       AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, INT_MAX, VE, "weightp" },
1064     { "none",          NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_NONE},   INT_MIN, INT_MAX, VE, "weightp" },
1065     { "simple",        NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_SIMPLE}, INT_MIN, INT_MAX, VE, "weightp" },
1066     { "smart",         NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_SMART},  INT_MIN, INT_MAX, VE, "weightp" },
1067     { "ssim",          "Calculate and print SSIM stats.",                 OFFSET(ssim),          AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE },
1068     { "intra-refresh", "Use Periodic Intra Refresh instead of IDR frames.",OFFSET(intra_refresh),AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE },
1069     { "bluray-compat", "Bluray compatibility workarounds.",               OFFSET(bluray_compat) ,AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE },
1070     { "b-bias",        "Influences how often B-frames are used",          OFFSET(b_bias),        AV_OPT_TYPE_INT,    { .i64 = INT_MIN}, INT_MIN, INT_MAX, VE },
1071     { "b-pyramid",     "Keep some B-frames as references.",               OFFSET(b_pyramid),     AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, INT_MAX, VE, "b_pyramid" },
1072     { "none",          NULL,                                  0, AV_OPT_TYPE_CONST, {.i64 = X264_B_PYRAMID_NONE},   INT_MIN, INT_MAX, VE, "b_pyramid" },
1073     { "strict",        "Strictly hierarchical pyramid",       0, AV_OPT_TYPE_CONST, {.i64 = X264_B_PYRAMID_STRICT}, INT_MIN, INT_MAX, VE, "b_pyramid" },
1074     { "normal",        "Non-strict (not Blu-ray compatible)", 0, AV_OPT_TYPE_CONST, {.i64 = X264_B_PYRAMID_NORMAL}, INT_MIN, INT_MAX, VE, "b_pyramid" },
1075     { "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 },
1076     { "8x8dct",        "High profile 8x8 transform.",                     OFFSET(dct8x8),        AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE},
1077     { "fast-pskip",    NULL,                                              OFFSET(fast_pskip),    AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE},
1078     { "aud",           "Use access unit delimiters.",                     OFFSET(aud),           AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE},
1079     { "mbtree",        "Use macroblock tree ratecontrol.",                OFFSET(mbtree),        AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE},
1080     { "deblock",       "Loop filter parameters, in <alpha:beta> form.",   OFFSET(deblock),       AV_OPT_TYPE_STRING, { 0 },  0, 0, VE},
1081     { "cplxblur",      "Reduce fluctuations in QP (before curve compression)", OFFSET(cplxblur), AV_OPT_TYPE_FLOAT,  {.dbl = -1 }, -1, FLT_MAX, VE},
1082     { "partitions",    "A comma-separated list of partitions to consider. "
1083                        "Possible values: p8x8, p4x4, b8x8, i8x8, i4x4, none, all", OFFSET(partitions), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
1084     { "direct-pred",   "Direct MV prediction mode",                       OFFSET(direct_pred),   AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, INT_MAX, VE, "direct-pred" },
1085     { "none",          NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_NONE },     0, 0, VE, "direct-pred" },
1086     { "spatial",       NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_SPATIAL },  0, 0, VE, "direct-pred" },
1087     { "temporal",      NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_TEMPORAL }, 0, 0, VE, "direct-pred" },
1088     { "auto",          NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_AUTO },     0, 0, VE, "direct-pred" },
1089     { "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 },
1090     { "stats",         "Filename for 2 pass stats",                       OFFSET(stats),         AV_OPT_TYPE_STRING, { 0 },  0,       0, VE },
1091     { "nal-hrd",       "Signal HRD information (requires vbv-bufsize; "
1092                        "cbr not allowed in .mp4)",                        OFFSET(nal_hrd),       AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, INT_MAX, VE, "nal-hrd" },
1093     { "none",          NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_NONE}, INT_MIN, INT_MAX, VE, "nal-hrd" },
1094     { "vbr",           NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_VBR},  INT_MIN, INT_MAX, VE, "nal-hrd" },
1095     { "cbr",           NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_CBR},  INT_MIN, INT_MAX, VE, "nal-hrd" },
1096     { "avcintra-class","AVC-Intra class 50/100/200",                      OFFSET(avcintra_class),AV_OPT_TYPE_INT,     { .i64 = -1 }, -1, 200   , VE},
1097     { "me_method",    "Set motion estimation method",                     OFFSET(motion_est),    AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, X264_ME_TESA, VE, "motion-est"},
1098     { "motion-est",   "Set motion estimation method",                     OFFSET(motion_est),    AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, X264_ME_TESA, VE, "motion-est"},
1099     { "dia",           NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_DIA },  INT_MIN, INT_MAX, VE, "motion-est" },
1100     { "hex",           NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_HEX },  INT_MIN, INT_MAX, VE, "motion-est" },
1101     { "umh",           NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_UMH },  INT_MIN, INT_MAX, VE, "motion-est" },
1102     { "esa",           NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_ESA },  INT_MIN, INT_MAX, VE, "motion-est" },
1103     { "tesa",          NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_TESA }, INT_MIN, INT_MAX, VE, "motion-est" },
1104     { "forced-idr",   "If forcing keyframes, force them as IDR frames.",                                  OFFSET(forced_idr),  AV_OPT_TYPE_BOOL,   { .i64 = 0 }, -1, 1, VE },
1105     { "coder",    "Coder type",                                           OFFSET(coder), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE, "coder" },
1106     { "default",          NULL, 0, AV_OPT_TYPE_CONST, { .i64 = -1 }, INT_MIN, INT_MAX, VE, "coder" },
1107     { "cavlc",            NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 },  INT_MIN, INT_MAX, VE, "coder" },
1108     { "cabac",            NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 },  INT_MIN, INT_MAX, VE, "coder" },
1109     { "vlc",              NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 },  INT_MIN, INT_MAX, VE, "coder" },
1110     { "ac",               NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 },  INT_MIN, INT_MAX, VE, "coder" },
1111     { "b_strategy",   "Strategy to choose between I/P/B-frames",          OFFSET(b_frame_strategy), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 2, VE },
1112     { "chromaoffset", "QP difference between chroma and luma",            OFFSET(chroma_offset), AV_OPT_TYPE_INT, { .i64 = 0 }, INT_MIN, INT_MAX, VE },
1113     { "sc_threshold", "Scene change threshold",                           OFFSET(scenechange_threshold), AV_OPT_TYPE_INT, { .i64 = -1 }, INT_MIN, INT_MAX, VE },
1114     { "noise_reduction", "Noise reduction",                               OFFSET(noise_reduction), AV_OPT_TYPE_INT, { .i64 = -1 }, INT_MIN, INT_MAX, VE },
1115
1116     { "x264-params",  "Override the x264 configuration using a :-separated list of key=value parameters", OFFSET(x264_params), AV_OPT_TYPE_DICT, { 0 }, 0, 0, VE },
1117     { NULL },
1118 };
1119
1120 static const AVCodecDefault x264_defaults[] = {
1121     { "b",                "0" },
1122     { "bf",               "-1" },
1123     { "flags2",           "0" },
1124     { "g",                "-1" },
1125     { "i_qfactor",        "-1" },
1126     { "b_qfactor",        "-1" },
1127     { "qmin",             "-1" },
1128     { "qmax",             "-1" },
1129     { "qdiff",            "-1" },
1130     { "qblur",            "-1" },
1131     { "qcomp",            "-1" },
1132 //     { "rc_lookahead",     "-1" },
1133     { "refs",             "-1" },
1134     { "trellis",          "-1" },
1135     { "me_range",         "-1" },
1136     { "subq",             "-1" },
1137     { "keyint_min",       "-1" },
1138     { "cmp",              "-1" },
1139     { "threads",          AV_STRINGIFY(X264_THREADS_AUTO) },
1140     { "thread_type",      "0" },
1141     { "flags",            "+cgop" },
1142     { "rc_init_occupancy","-1" },
1143     { NULL },
1144 };
1145
1146 #if CONFIG_LIBX264_ENCODER
1147 static const AVClass x264_class = {
1148     .class_name = "libx264",
1149     .item_name  = av_default_item_name,
1150     .option     = options,
1151     .version    = LIBAVUTIL_VERSION_INT,
1152 };
1153
1154 AVCodec ff_libx264_encoder = {
1155     .name             = "libx264",
1156     .long_name        = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
1157     .type             = AVMEDIA_TYPE_VIDEO,
1158     .id               = AV_CODEC_ID_H264,
1159     .priv_data_size   = sizeof(X264Context),
1160     .init             = X264_init,
1161     .encode2          = X264_frame,
1162     .close            = X264_close,
1163     .capabilities     = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_OTHER_THREADS |
1164                         AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE,
1165     .caps_internal    = FF_CODEC_CAP_AUTO_THREADS,
1166     .priv_class       = &x264_class,
1167     .defaults         = x264_defaults,
1168 #if X264_BUILD < 153
1169     .init_static_data = X264_init_static,
1170 #else
1171     .pix_fmts         = pix_fmts_all,
1172 #endif
1173     .caps_internal  = FF_CODEC_CAP_INIT_CLEANUP | FF_CODEC_CAP_AUTO_THREADS
1174 #if X264_BUILD >= 158
1175                       | FF_CODEC_CAP_INIT_THREADSAFE
1176 #endif
1177                       ,
1178     .wrapper_name     = "libx264",
1179 };
1180 #endif
1181
1182 #if CONFIG_LIBX264RGB_ENCODER
1183 static const AVClass rgbclass = {
1184     .class_name = "libx264rgb",
1185     .item_name  = av_default_item_name,
1186     .option     = options,
1187     .version    = LIBAVUTIL_VERSION_INT,
1188 };
1189
1190 AVCodec ff_libx264rgb_encoder = {
1191     .name           = "libx264rgb",
1192     .long_name      = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 RGB"),
1193     .type           = AVMEDIA_TYPE_VIDEO,
1194     .id             = AV_CODEC_ID_H264,
1195     .priv_data_size = sizeof(X264Context),
1196     .init           = X264_init,
1197     .encode2        = X264_frame,
1198     .close          = X264_close,
1199     .capabilities   = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_OTHER_THREADS |
1200                       AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE,
1201     .priv_class     = &rgbclass,
1202     .defaults       = x264_defaults,
1203     .pix_fmts       = pix_fmts_8bit_rgb,
1204     .caps_internal  = FF_CODEC_CAP_INIT_CLEANUP | FF_CODEC_CAP_AUTO_THREADS
1205 #if X264_BUILD >= 158
1206                       | FF_CODEC_CAP_INIT_THREADSAFE
1207 #endif
1208                       ,
1209     .wrapper_name   = "libx264",
1210 };
1211 #endif
1212
1213 #if CONFIG_LIBX262_ENCODER
1214 static const AVClass X262_class = {
1215     .class_name = "libx262",
1216     .item_name  = av_default_item_name,
1217     .option     = options,
1218     .version    = LIBAVUTIL_VERSION_INT,
1219 };
1220
1221 AVCodec ff_libx262_encoder = {
1222     .name             = "libx262",
1223     .long_name        = NULL_IF_CONFIG_SMALL("libx262 MPEG2VIDEO"),
1224     .type             = AVMEDIA_TYPE_VIDEO,
1225     .id               = AV_CODEC_ID_MPEG2VIDEO,
1226     .priv_data_size   = sizeof(X264Context),
1227     .init             = X264_init,
1228     .encode2          = X264_frame,
1229     .close            = X264_close,
1230     .capabilities     = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_OTHER_THREADS |
1231                         AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE,
1232     .priv_class       = &X262_class,
1233     .defaults         = x264_defaults,
1234     .pix_fmts         = pix_fmts_8bit,
1235     .caps_internal    = FF_CODEC_CAP_INIT_CLEANUP | FF_CODEC_CAP_AUTO_THREADS,
1236     .wrapper_name     = "libx264",
1237 };
1238 #endif