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