]> git.sesse.net Git - ffmpeg/blob - libavcodec/libx264.c
avcodec: Constify AVCodecs
[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
485     pkt->flags |= AV_PKT_FLAG_KEY*pic_out.b_keyframe;
486     if (ret) {
487         ff_side_data_set_encoder_stats(pkt, (pic_out.i_qpplus1 - 1) * FF_QP2LAMBDA, NULL, 0, pict_type);
488         if (wallclock)
489             ff_side_data_set_prft(pkt, wallclock);
490     }
491
492     *got_packet = ret;
493     return 0;
494 }
495
496 static av_cold int X264_close(AVCodecContext *avctx)
497 {
498     X264Context *x4 = avctx->priv_data;
499
500     av_freep(&avctx->extradata);
501     av_freep(&x4->sei);
502     av_freep(&x4->reordered_opaque);
503
504 #if X264_BUILD >= 161
505     x264_param_cleanup(&x4->params);
506 #endif
507
508     if (x4->enc) {
509         x264_encoder_close(x4->enc);
510         x4->enc = NULL;
511     }
512
513     return 0;
514 }
515
516 static int parse_opts(AVCodecContext *avctx, const char *opt, const char *param)
517 {
518     X264Context *x4 = avctx->priv_data;
519     int ret;
520
521     if ((ret = x264_param_parse(&x4->params, opt, param)) < 0) {
522         if (ret == X264_PARAM_BAD_NAME) {
523             av_log(avctx, AV_LOG_ERROR,
524                    "bad option '%s': '%s'\n", opt, param);
525             ret = AVERROR(EINVAL);
526 #if X264_BUILD >= 161
527         } else if (ret == X264_PARAM_ALLOC_FAILED) {
528             av_log(avctx, AV_LOG_ERROR,
529                    "out of memory parsing option '%s': '%s'\n", opt, param);
530             ret = AVERROR(ENOMEM);
531 #endif
532         } else {
533             av_log(avctx, AV_LOG_ERROR,
534                    "bad value for '%s': '%s'\n", opt, param);
535             ret = AVERROR(EINVAL);
536         }
537     }
538
539     return ret;
540 }
541
542 static int convert_pix_fmt(enum AVPixelFormat pix_fmt)
543 {
544     switch (pix_fmt) {
545     case AV_PIX_FMT_YUV420P:
546     case AV_PIX_FMT_YUVJ420P:
547     case AV_PIX_FMT_YUV420P9:
548     case AV_PIX_FMT_YUV420P10: return X264_CSP_I420;
549     case AV_PIX_FMT_YUV422P:
550     case AV_PIX_FMT_YUVJ422P:
551     case AV_PIX_FMT_YUV422P10: return X264_CSP_I422;
552     case AV_PIX_FMT_YUV444P:
553     case AV_PIX_FMT_YUVJ444P:
554     case AV_PIX_FMT_YUV444P9:
555     case AV_PIX_FMT_YUV444P10: return X264_CSP_I444;
556 #if CONFIG_LIBX264RGB_ENCODER
557     case AV_PIX_FMT_BGR0:
558         return X264_CSP_BGRA;
559     case AV_PIX_FMT_BGR24:
560         return X264_CSP_BGR;
561
562     case AV_PIX_FMT_RGB24:
563         return X264_CSP_RGB;
564 #endif
565     case AV_PIX_FMT_NV12:      return X264_CSP_NV12;
566     case AV_PIX_FMT_NV16:
567     case AV_PIX_FMT_NV20:      return X264_CSP_NV16;
568 #ifdef X264_CSP_NV21
569     case AV_PIX_FMT_NV21:      return X264_CSP_NV21;
570 #endif
571 #ifdef X264_CSP_I400
572     case AV_PIX_FMT_GRAY8:
573     case AV_PIX_FMT_GRAY10:    return X264_CSP_I400;
574 #endif
575     };
576     return 0;
577 }
578
579 #define PARSE_X264_OPT(name, var)\
580     if (x4->var && x264_param_parse(&x4->params, name, x4->var) < 0) {\
581         av_log(avctx, AV_LOG_ERROR, "Error parsing option '%s' with value '%s'.\n", name, x4->var);\
582         return AVERROR(EINVAL);\
583     }
584
585 static av_cold int X264_init(AVCodecContext *avctx)
586 {
587     X264Context *x4 = avctx->priv_data;
588     AVCPBProperties *cpb_props;
589     int sw,sh;
590     int ret;
591
592     if (avctx->global_quality > 0)
593         av_log(avctx, AV_LOG_WARNING, "-qscale is ignored, -crf is recommended.\n");
594
595 #if CONFIG_LIBX262_ENCODER
596     if (avctx->codec_id == AV_CODEC_ID_MPEG2VIDEO) {
597         x4->params.b_mpeg2 = 1;
598         x264_param_default_mpeg2(&x4->params);
599     } else
600 #endif
601     x264_param_default(&x4->params);
602
603     x4->params.b_deblocking_filter         = avctx->flags & AV_CODEC_FLAG_LOOP_FILTER;
604
605     if (x4->preset || x4->tune)
606         if (x264_param_default_preset(&x4->params, x4->preset, x4->tune) < 0) {
607             int i;
608             av_log(avctx, AV_LOG_ERROR, "Error setting preset/tune %s/%s.\n", x4->preset, x4->tune);
609             av_log(avctx, AV_LOG_INFO, "Possible presets:");
610             for (i = 0; x264_preset_names[i]; i++)
611                 av_log(avctx, AV_LOG_INFO, " %s", x264_preset_names[i]);
612             av_log(avctx, AV_LOG_INFO, "\n");
613             av_log(avctx, AV_LOG_INFO, "Possible tunes:");
614             for (i = 0; x264_tune_names[i]; i++)
615                 av_log(avctx, AV_LOG_INFO, " %s", x264_tune_names[i]);
616             av_log(avctx, AV_LOG_INFO, "\n");
617             return AVERROR(EINVAL);
618         }
619
620     if (avctx->level > 0)
621         x4->params.i_level_idc = avctx->level;
622
623     x4->params.pf_log               = X264_log;
624     x4->params.p_log_private        = avctx;
625     x4->params.i_log_level          = X264_LOG_DEBUG;
626     x4->params.i_csp                = convert_pix_fmt(avctx->pix_fmt);
627 #if X264_BUILD >= 153
628     x4->params.i_bitdepth           = av_pix_fmt_desc_get(avctx->pix_fmt)->comp[0].depth;
629 #endif
630
631     PARSE_X264_OPT("weightp", wpredp);
632
633     if (avctx->bit_rate) {
634         if (avctx->bit_rate / 1000 > INT_MAX || avctx->rc_max_rate / 1000 > INT_MAX) {
635             av_log(avctx, AV_LOG_ERROR, "bit_rate and rc_max_rate > %d000 not supported by libx264\n", INT_MAX);
636             return AVERROR(EINVAL);
637         }
638         x4->params.rc.i_bitrate   = avctx->bit_rate / 1000;
639         x4->params.rc.i_rc_method = X264_RC_ABR;
640     }
641     x4->params.rc.i_vbv_buffer_size = avctx->rc_buffer_size / 1000;
642     x4->params.rc.i_vbv_max_bitrate = avctx->rc_max_rate    / 1000;
643     x4->params.rc.b_stat_write      = avctx->flags & AV_CODEC_FLAG_PASS1;
644     if (avctx->flags & AV_CODEC_FLAG_PASS2) {
645         x4->params.rc.b_stat_read = 1;
646     } else {
647         if (x4->crf >= 0) {
648             x4->params.rc.i_rc_method   = X264_RC_CRF;
649             x4->params.rc.f_rf_constant = x4->crf;
650         } else if (x4->cqp >= 0) {
651             x4->params.rc.i_rc_method   = X264_RC_CQP;
652             x4->params.rc.i_qp_constant = x4->cqp;
653         }
654
655         if (x4->crf_max >= 0)
656             x4->params.rc.f_rf_constant_max = x4->crf_max;
657     }
658
659     if (avctx->rc_buffer_size && avctx->rc_initial_buffer_occupancy > 0 &&
660         (avctx->rc_initial_buffer_occupancy <= avctx->rc_buffer_size)) {
661         x4->params.rc.f_vbv_buffer_init =
662             (float)avctx->rc_initial_buffer_occupancy / avctx->rc_buffer_size;
663     }
664
665     PARSE_X264_OPT("level", level);
666
667     if (avctx->i_quant_factor > 0)
668         x4->params.rc.f_ip_factor         = 1 / fabs(avctx->i_quant_factor);
669     if (avctx->b_quant_factor > 0)
670         x4->params.rc.f_pb_factor         = avctx->b_quant_factor;
671
672     if (x4->chroma_offset)
673         x4->params.analyse.i_chroma_qp_offset = x4->chroma_offset;
674
675     if (avctx->gop_size >= 0)
676         x4->params.i_keyint_max         = avctx->gop_size;
677     if (avctx->max_b_frames >= 0)
678         x4->params.i_bframe             = avctx->max_b_frames;
679
680     if (x4->scenechange_threshold >= 0)
681         x4->params.i_scenecut_threshold = x4->scenechange_threshold;
682
683     if (avctx->qmin >= 0)
684         x4->params.rc.i_qp_min          = avctx->qmin;
685     if (avctx->qmax >= 0)
686         x4->params.rc.i_qp_max          = avctx->qmax;
687     if (avctx->max_qdiff >= 0)
688         x4->params.rc.i_qp_step         = avctx->max_qdiff;
689     if (avctx->qblur >= 0)
690         x4->params.rc.f_qblur           = avctx->qblur;     /* temporally blur quants */
691     if (avctx->qcompress >= 0)
692         x4->params.rc.f_qcompress       = avctx->qcompress; /* 0.0 => cbr, 1.0 => constant qp */
693     if (avctx->refs >= 0)
694         x4->params.i_frame_reference    = avctx->refs;
695     else if (x4->params.i_level_idc > 0) {
696         int i;
697         int mbn = AV_CEIL_RSHIFT(avctx->width, 4) * AV_CEIL_RSHIFT(avctx->height, 4);
698         int scale = X264_BUILD < 129 ? 384 : 1;
699
700         for (i = 0; i<x264_levels[i].level_idc; i++)
701             if (x264_levels[i].level_idc == x4->params.i_level_idc)
702                 x4->params.i_frame_reference = av_clip(x264_levels[i].dpb / mbn / scale, 1, x4->params.i_frame_reference);
703     }
704
705     if (avctx->trellis >= 0)
706         x4->params.analyse.i_trellis    = avctx->trellis;
707     if (avctx->me_range >= 0)
708         x4->params.analyse.i_me_range   = avctx->me_range;
709     if (x4->noise_reduction >= 0)
710         x4->params.analyse.i_noise_reduction = x4->noise_reduction;
711     if (avctx->me_subpel_quality >= 0)
712         x4->params.analyse.i_subpel_refine   = avctx->me_subpel_quality;
713     if (avctx->keyint_min >= 0)
714         x4->params.i_keyint_min = avctx->keyint_min;
715     if (avctx->me_cmp >= 0)
716         x4->params.analyse.b_chroma_me = avctx->me_cmp & FF_CMP_CHROMA;
717
718     if (x4->aq_mode >= 0)
719         x4->params.rc.i_aq_mode = x4->aq_mode;
720     if (x4->aq_strength >= 0)
721         x4->params.rc.f_aq_strength = x4->aq_strength;
722     PARSE_X264_OPT("psy-rd", psy_rd);
723     PARSE_X264_OPT("deblock", deblock);
724     PARSE_X264_OPT("partitions", partitions);
725     PARSE_X264_OPT("stats", stats);
726     if (x4->psy >= 0)
727         x4->params.analyse.b_psy  = x4->psy;
728     if (x4->rc_lookahead >= 0)
729         x4->params.rc.i_lookahead = x4->rc_lookahead;
730     if (x4->weightp >= 0)
731         x4->params.analyse.i_weighted_pred = x4->weightp;
732     if (x4->weightb >= 0)
733         x4->params.analyse.b_weighted_bipred = x4->weightb;
734     if (x4->cplxblur >= 0)
735         x4->params.rc.f_complexity_blur = x4->cplxblur;
736
737     if (x4->ssim >= 0)
738         x4->params.analyse.b_ssim = x4->ssim;
739     if (x4->intra_refresh >= 0)
740         x4->params.b_intra_refresh = x4->intra_refresh;
741     if (x4->bluray_compat >= 0) {
742         x4->params.b_bluray_compat = x4->bluray_compat;
743         x4->params.b_vfr_input = 0;
744     }
745     if (x4->avcintra_class >= 0)
746 #if X264_BUILD >= 142
747         x4->params.i_avcintra_class = x4->avcintra_class;
748 #else
749         av_log(avctx, AV_LOG_ERROR,
750                "x264 too old for AVC Intra, at least version 142 needed\n");
751 #endif
752     if (x4->b_bias != INT_MIN)
753         x4->params.i_bframe_bias              = x4->b_bias;
754     if (x4->b_pyramid >= 0)
755         x4->params.i_bframe_pyramid = x4->b_pyramid;
756     if (x4->mixed_refs >= 0)
757         x4->params.analyse.b_mixed_references = x4->mixed_refs;
758     if (x4->dct8x8 >= 0)
759         x4->params.analyse.b_transform_8x8    = x4->dct8x8;
760     if (x4->fast_pskip >= 0)
761         x4->params.analyse.b_fast_pskip       = x4->fast_pskip;
762     if (x4->aud >= 0)
763         x4->params.b_aud                      = x4->aud;
764     if (x4->mbtree >= 0)
765         x4->params.rc.b_mb_tree               = x4->mbtree;
766     if (x4->direct_pred >= 0)
767         x4->params.analyse.i_direct_mv_pred   = x4->direct_pred;
768
769     if (x4->slice_max_size >= 0)
770         x4->params.i_slice_max_size =  x4->slice_max_size;
771
772     if (x4->fastfirstpass)
773         x264_param_apply_fastfirstpass(&x4->params);
774
775     /* Allow specifying the x264 profile through AVCodecContext. */
776     if (!x4->profile)
777         switch (avctx->profile) {
778         case FF_PROFILE_H264_BASELINE:
779             x4->profile = av_strdup("baseline");
780             break;
781         case FF_PROFILE_H264_HIGH:
782             x4->profile = av_strdup("high");
783             break;
784         case FF_PROFILE_H264_HIGH_10:
785             x4->profile = av_strdup("high10");
786             break;
787         case FF_PROFILE_H264_HIGH_422:
788             x4->profile = av_strdup("high422");
789             break;
790         case FF_PROFILE_H264_HIGH_444:
791             x4->profile = av_strdup("high444");
792             break;
793         case FF_PROFILE_H264_MAIN:
794             x4->profile = av_strdup("main");
795             break;
796         default:
797             break;
798         }
799
800     if (x4->nal_hrd >= 0)
801         x4->params.i_nal_hrd = x4->nal_hrd;
802
803     if (x4->motion_est >= 0)
804         x4->params.analyse.i_me_method = x4->motion_est;
805
806     if (x4->coder >= 0)
807         x4->params.b_cabac = x4->coder;
808
809     if (x4->b_frame_strategy >= 0)
810         x4->params.i_bframe_adaptive = x4->b_frame_strategy;
811
812     if (x4->profile)
813         if (x264_param_apply_profile(&x4->params, x4->profile) < 0) {
814             int i;
815             av_log(avctx, AV_LOG_ERROR, "Error setting profile %s.\n", x4->profile);
816             av_log(avctx, AV_LOG_INFO, "Possible profiles:");
817             for (i = 0; x264_profile_names[i]; i++)
818                 av_log(avctx, AV_LOG_INFO, " %s", x264_profile_names[i]);
819             av_log(avctx, AV_LOG_INFO, "\n");
820             return AVERROR(EINVAL);
821         }
822
823     x4->params.i_width          = avctx->width;
824     x4->params.i_height         = avctx->height;
825     av_reduce(&sw, &sh, avctx->sample_aspect_ratio.num, avctx->sample_aspect_ratio.den, 4096);
826     x4->params.vui.i_sar_width  = sw;
827     x4->params.vui.i_sar_height = sh;
828     x4->params.i_timebase_den = avctx->time_base.den;
829     x4->params.i_timebase_num = avctx->time_base.num;
830     if (avctx->framerate.num > 0 && avctx->framerate.den > 0) {
831         x4->params.i_fps_num = avctx->framerate.num;
832         x4->params.i_fps_den = avctx->framerate.den;
833     } else {
834         x4->params.i_fps_num = avctx->time_base.den;
835         x4->params.i_fps_den = avctx->time_base.num * avctx->ticks_per_frame;
836     }
837
838     x4->params.analyse.b_psnr = avctx->flags & AV_CODEC_FLAG_PSNR;
839
840     x4->params.i_threads      = avctx->thread_count;
841     if (avctx->thread_type)
842         x4->params.b_sliced_threads = avctx->thread_type == FF_THREAD_SLICE;
843
844     x4->params.b_interlaced   = avctx->flags & AV_CODEC_FLAG_INTERLACED_DCT;
845
846     x4->params.b_open_gop     = !(avctx->flags & AV_CODEC_FLAG_CLOSED_GOP);
847
848     x4->params.i_slice_count  = avctx->slices;
849
850     x4->params.vui.b_fullrange = avctx->pix_fmt == AV_PIX_FMT_YUVJ420P ||
851                                  avctx->pix_fmt == AV_PIX_FMT_YUVJ422P ||
852                                  avctx->pix_fmt == AV_PIX_FMT_YUVJ444P ||
853                                  avctx->color_range == AVCOL_RANGE_JPEG;
854
855     if (avctx->colorspace != AVCOL_SPC_UNSPECIFIED)
856         x4->params.vui.i_colmatrix = avctx->colorspace;
857     if (avctx->color_primaries != AVCOL_PRI_UNSPECIFIED)
858         x4->params.vui.i_colorprim = avctx->color_primaries;
859     if (avctx->color_trc != AVCOL_TRC_UNSPECIFIED)
860         x4->params.vui.i_transfer  = avctx->color_trc;
861
862     if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER)
863         x4->params.b_repeat_headers = 0;
864
865     if(x4->x264opts){
866         const char *p= x4->x264opts;
867         while(p){
868             char param[4096]={0}, val[4096]={0};
869             if(sscanf(p, "%4095[^:=]=%4095[^:]", param, val) == 1){
870                 ret = parse_opts(avctx, param, "1");
871                 if (ret < 0)
872                     return ret;
873             } else {
874                 ret = parse_opts(avctx, param, val);
875                 if (ret < 0)
876                     return ret;
877             }
878             p= strchr(p, ':');
879             p+=!!p;
880         }
881     }
882
883
884     {
885         AVDictionaryEntry *en = NULL;
886         while (en = av_dict_get(x4->x264_params, "", en, AV_DICT_IGNORE_SUFFIX)) {
887            if ((ret = x264_param_parse(&x4->params, en->key, en->value)) < 0) {
888                av_log(avctx, AV_LOG_WARNING,
889                       "Error parsing option '%s = %s'.\n",
890                        en->key, en->value);
891 #if X264_BUILD >= 161
892                if (ret == X264_PARAM_ALLOC_FAILED)
893                    return AVERROR(ENOMEM);
894 #endif
895            }
896         }
897     }
898
899     // update AVCodecContext with x264 parameters
900     avctx->has_b_frames = x4->params.i_bframe ?
901         x4->params.i_bframe_pyramid ? 2 : 1 : 0;
902     if (avctx->max_b_frames < 0)
903         avctx->max_b_frames = 0;
904
905     avctx->bit_rate = x4->params.rc.i_bitrate*1000LL;
906
907     x4->enc = x264_encoder_open(&x4->params);
908     if (!x4->enc)
909         return AVERROR_EXTERNAL;
910
911     if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER) {
912         x264_nal_t *nal;
913         uint8_t *p;
914         int nnal, s, i;
915
916         s = x264_encoder_headers(x4->enc, &nal, &nnal);
917         avctx->extradata = p = av_mallocz(s + AV_INPUT_BUFFER_PADDING_SIZE);
918         if (!p)
919             return AVERROR(ENOMEM);
920
921         for (i = 0; i < nnal; i++) {
922             /* Don't put the SEI in extradata. */
923             if (nal[i].i_type == NAL_SEI) {
924                 av_log(avctx, AV_LOG_INFO, "%s\n", nal[i].p_payload+25);
925                 x4->sei_size = nal[i].i_payload;
926                 x4->sei      = av_malloc(x4->sei_size);
927                 if (!x4->sei)
928                     return AVERROR(ENOMEM);
929                 memcpy(x4->sei, nal[i].p_payload, nal[i].i_payload);
930                 continue;
931             }
932             memcpy(p, nal[i].p_payload, nal[i].i_payload);
933             p += nal[i].i_payload;
934         }
935         avctx->extradata_size = p - avctx->extradata;
936     }
937
938     cpb_props = ff_add_cpb_side_data(avctx);
939     if (!cpb_props)
940         return AVERROR(ENOMEM);
941     cpb_props->buffer_size = x4->params.rc.i_vbv_buffer_size * 1000;
942     cpb_props->max_bitrate = x4->params.rc.i_vbv_max_bitrate * 1000LL;
943     cpb_props->avg_bitrate = x4->params.rc.i_bitrate         * 1000LL;
944
945     // Overestimate the reordered opaque buffer size, in case a runtime
946     // reconfigure would increase the delay (which it shouldn't).
947     x4->nb_reordered_opaque = x264_encoder_maximum_delayed_frames(x4->enc) + 17;
948     x4->reordered_opaque    = av_malloc_array(x4->nb_reordered_opaque,
949                                               sizeof(*x4->reordered_opaque));
950     if (!x4->reordered_opaque)
951         return AVERROR(ENOMEM);
952
953     return 0;
954 }
955
956 static const enum AVPixelFormat pix_fmts_8bit[] = {
957     AV_PIX_FMT_YUV420P,
958     AV_PIX_FMT_YUVJ420P,
959     AV_PIX_FMT_YUV422P,
960     AV_PIX_FMT_YUVJ422P,
961     AV_PIX_FMT_YUV444P,
962     AV_PIX_FMT_YUVJ444P,
963     AV_PIX_FMT_NV12,
964     AV_PIX_FMT_NV16,
965 #ifdef X264_CSP_NV21
966     AV_PIX_FMT_NV21,
967 #endif
968     AV_PIX_FMT_NONE
969 };
970 static const enum AVPixelFormat pix_fmts_9bit[] = {
971     AV_PIX_FMT_YUV420P9,
972     AV_PIX_FMT_YUV444P9,
973     AV_PIX_FMT_NONE
974 };
975 static const enum AVPixelFormat pix_fmts_10bit[] = {
976     AV_PIX_FMT_YUV420P10,
977     AV_PIX_FMT_YUV422P10,
978     AV_PIX_FMT_YUV444P10,
979     AV_PIX_FMT_NV20,
980     AV_PIX_FMT_NONE
981 };
982 static const enum AVPixelFormat pix_fmts_all[] = {
983     AV_PIX_FMT_YUV420P,
984     AV_PIX_FMT_YUVJ420P,
985     AV_PIX_FMT_YUV422P,
986     AV_PIX_FMT_YUVJ422P,
987     AV_PIX_FMT_YUV444P,
988     AV_PIX_FMT_YUVJ444P,
989     AV_PIX_FMT_NV12,
990     AV_PIX_FMT_NV16,
991 #ifdef X264_CSP_NV21
992     AV_PIX_FMT_NV21,
993 #endif
994     AV_PIX_FMT_YUV420P10,
995     AV_PIX_FMT_YUV422P10,
996     AV_PIX_FMT_YUV444P10,
997     AV_PIX_FMT_NV20,
998 #ifdef X264_CSP_I400
999     AV_PIX_FMT_GRAY8,
1000     AV_PIX_FMT_GRAY10,
1001 #endif
1002     AV_PIX_FMT_NONE
1003 };
1004 #if CONFIG_LIBX264RGB_ENCODER
1005 static const enum AVPixelFormat pix_fmts_8bit_rgb[] = {
1006     AV_PIX_FMT_BGR0,
1007     AV_PIX_FMT_BGR24,
1008     AV_PIX_FMT_RGB24,
1009     AV_PIX_FMT_NONE
1010 };
1011 #endif
1012
1013 #if X264_BUILD < 153
1014 static av_cold void X264_init_static(AVCodec *codec)
1015 {
1016     if (x264_bit_depth == 8)
1017         codec->pix_fmts = pix_fmts_8bit;
1018     else if (x264_bit_depth == 9)
1019         codec->pix_fmts = pix_fmts_9bit;
1020     else if (x264_bit_depth == 10)
1021         codec->pix_fmts = pix_fmts_10bit;
1022 }
1023 #endif
1024
1025 #define OFFSET(x) offsetof(X264Context, x)
1026 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
1027 static const AVOption options[] = {
1028     { "preset",        "Set the encoding preset (cf. x264 --fullhelp)",   OFFSET(preset),        AV_OPT_TYPE_STRING, { .str = "medium" }, 0, 0, VE},
1029     { "tune",          "Tune the encoding params (cf. x264 --fullhelp)",  OFFSET(tune),          AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
1030     { "profile",       "Set profile restrictions (cf. x264 --fullhelp) ", OFFSET(profile),       AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
1031     { "fastfirstpass", "Use fast settings when encoding first pass",      OFFSET(fastfirstpass), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, VE},
1032     {"level", "Specify level (as defined by Annex A)", OFFSET(level), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
1033     {"passlogfile", "Filename for 2 pass stats", OFFSET(stats), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
1034     {"wpredp", "Weighted prediction for P-frames", OFFSET(wpredp), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
1035     {"a53cc",          "Use A53 Closed Captions (if available)",          OFFSET(a53_cc),        AV_OPT_TYPE_BOOL,   {.i64 = 1}, 0, 1, VE},
1036     {"x264opts", "x264 options", OFFSET(x264opts), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
1037     { "crf",           "Select the quality for constant quality mode",    OFFSET(crf),           AV_OPT_TYPE_FLOAT,  {.dbl = -1 }, -1, FLT_MAX, VE },
1038     { "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 },
1039     { "qp",            "Constant quantization parameter rate control method",OFFSET(cqp),        AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, INT_MAX, VE },
1040     { "aq-mode",       "AQ method",                                       OFFSET(aq_mode),       AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, INT_MAX, VE, "aq_mode"},
1041     { "none",          NULL,                              0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_NONE},         INT_MIN, INT_MAX, VE, "aq_mode" },
1042     { "variance",      "Variance AQ (complexity mask)",   0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_VARIANCE},     INT_MIN, INT_MAX, VE, "aq_mode" },
1043     { "autovariance",  "Auto-variance AQ",                0, AV_OPT_TYPE_CONST, {.i64 = X264_AQ_AUTOVARIANCE}, INT_MIN, INT_MAX, VE, "aq_mode" },
1044 #if X264_BUILD >= 144
1045     { "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" },
1046 #endif
1047     { "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},
1048     { "psy",           "Use psychovisual optimizations.",                 OFFSET(psy),           AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE },
1049     { "psy-rd",        "Strength of psychovisual optimization, in <psy-rd>:<psy-trellis> format.", OFFSET(psy_rd), AV_OPT_TYPE_STRING,  {0 }, 0, 0, VE},
1050     { "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 },
1051     { "weightb",       "Weighted prediction for B-frames.",               OFFSET(weightb),       AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE },
1052     { "weightp",       "Weighted prediction analysis method.",            OFFSET(weightp),       AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, INT_MAX, VE, "weightp" },
1053     { "none",          NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_NONE},   INT_MIN, INT_MAX, VE, "weightp" },
1054     { "simple",        NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_SIMPLE}, INT_MIN, INT_MAX, VE, "weightp" },
1055     { "smart",         NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_WEIGHTP_SMART},  INT_MIN, INT_MAX, VE, "weightp" },
1056     { "ssim",          "Calculate and print SSIM stats.",                 OFFSET(ssim),          AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE },
1057     { "intra-refresh", "Use Periodic Intra Refresh instead of IDR frames.",OFFSET(intra_refresh),AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE },
1058     { "bluray-compat", "Bluray compatibility workarounds.",               OFFSET(bluray_compat) ,AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE },
1059     { "b-bias",        "Influences how often B-frames are used",          OFFSET(b_bias),        AV_OPT_TYPE_INT,    { .i64 = INT_MIN}, INT_MIN, INT_MAX, VE },
1060     { "b-pyramid",     "Keep some B-frames as references.",               OFFSET(b_pyramid),     AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, INT_MAX, VE, "b_pyramid" },
1061     { "none",          NULL,                                  0, AV_OPT_TYPE_CONST, {.i64 = X264_B_PYRAMID_NONE},   INT_MIN, INT_MAX, VE, "b_pyramid" },
1062     { "strict",        "Strictly hierarchical pyramid",       0, AV_OPT_TYPE_CONST, {.i64 = X264_B_PYRAMID_STRICT}, INT_MIN, INT_MAX, VE, "b_pyramid" },
1063     { "normal",        "Non-strict (not Blu-ray compatible)", 0, AV_OPT_TYPE_CONST, {.i64 = X264_B_PYRAMID_NORMAL}, INT_MIN, INT_MAX, VE, "b_pyramid" },
1064     { "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 },
1065     { "8x8dct",        "High profile 8x8 transform.",                     OFFSET(dct8x8),        AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE},
1066     { "fast-pskip",    NULL,                                              OFFSET(fast_pskip),    AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE},
1067     { "aud",           "Use access unit delimiters.",                     OFFSET(aud),           AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE},
1068     { "mbtree",        "Use macroblock tree ratecontrol.",                OFFSET(mbtree),        AV_OPT_TYPE_BOOL,   { .i64 = -1 }, -1, 1, VE},
1069     { "deblock",       "Loop filter parameters, in <alpha:beta> form.",   OFFSET(deblock),       AV_OPT_TYPE_STRING, { 0 },  0, 0, VE},
1070     { "cplxblur",      "Reduce fluctuations in QP (before curve compression)", OFFSET(cplxblur), AV_OPT_TYPE_FLOAT,  {.dbl = -1 }, -1, FLT_MAX, VE},
1071     { "partitions",    "A comma-separated list of partitions to consider. "
1072                        "Possible values: p8x8, p4x4, b8x8, i8x8, i4x4, none, all", OFFSET(partitions), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
1073     { "direct-pred",   "Direct MV prediction mode",                       OFFSET(direct_pred),   AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, INT_MAX, VE, "direct-pred" },
1074     { "none",          NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_NONE },     0, 0, VE, "direct-pred" },
1075     { "spatial",       NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_SPATIAL },  0, 0, VE, "direct-pred" },
1076     { "temporal",      NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_TEMPORAL }, 0, 0, VE, "direct-pred" },
1077     { "auto",          NULL,      0,    AV_OPT_TYPE_CONST, { .i64 = X264_DIRECT_PRED_AUTO },     0, 0, VE, "direct-pred" },
1078     { "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 },
1079     { "stats",         "Filename for 2 pass stats",                       OFFSET(stats),         AV_OPT_TYPE_STRING, { 0 },  0,       0, VE },
1080     { "nal-hrd",       "Signal HRD information (requires vbv-bufsize; "
1081                        "cbr not allowed in .mp4)",                        OFFSET(nal_hrd),       AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, INT_MAX, VE, "nal-hrd" },
1082     { "none",          NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_NONE}, INT_MIN, INT_MAX, VE, "nal-hrd" },
1083     { "vbr",           NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_VBR},  INT_MIN, INT_MAX, VE, "nal-hrd" },
1084     { "cbr",           NULL, 0, AV_OPT_TYPE_CONST, {.i64 = X264_NAL_HRD_CBR},  INT_MIN, INT_MAX, VE, "nal-hrd" },
1085     { "avcintra-class","AVC-Intra class 50/100/200",                      OFFSET(avcintra_class),AV_OPT_TYPE_INT,     { .i64 = -1 }, -1, 200   , VE},
1086     { "me_method",    "Set motion estimation method",                     OFFSET(motion_est),    AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, X264_ME_TESA, VE, "motion-est"},
1087     { "motion-est",   "Set motion estimation method",                     OFFSET(motion_est),    AV_OPT_TYPE_INT,    { .i64 = -1 }, -1, X264_ME_TESA, VE, "motion-est"},
1088     { "dia",           NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_DIA },  INT_MIN, INT_MAX, VE, "motion-est" },
1089     { "hex",           NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_HEX },  INT_MIN, INT_MAX, VE, "motion-est" },
1090     { "umh",           NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_UMH },  INT_MIN, INT_MAX, VE, "motion-est" },
1091     { "esa",           NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_ESA },  INT_MIN, INT_MAX, VE, "motion-est" },
1092     { "tesa",          NULL, 0, AV_OPT_TYPE_CONST, { .i64 = X264_ME_TESA }, INT_MIN, INT_MAX, VE, "motion-est" },
1093     { "forced-idr",   "If forcing keyframes, force them as IDR frames.",                                  OFFSET(forced_idr),  AV_OPT_TYPE_BOOL,   { .i64 = 0 }, -1, 1, VE },
1094     { "coder",    "Coder type",                                           OFFSET(coder), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, VE, "coder" },
1095     { "default",          NULL, 0, AV_OPT_TYPE_CONST, { .i64 = -1 }, INT_MIN, INT_MAX, VE, "coder" },
1096     { "cavlc",            NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 },  INT_MIN, INT_MAX, VE, "coder" },
1097     { "cabac",            NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 },  INT_MIN, INT_MAX, VE, "coder" },
1098     { "vlc",              NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 },  INT_MIN, INT_MAX, VE, "coder" },
1099     { "ac",               NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 },  INT_MIN, INT_MAX, VE, "coder" },
1100     { "b_strategy",   "Strategy to choose between I/P/B-frames",          OFFSET(b_frame_strategy), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 2, VE },
1101     { "chromaoffset", "QP difference between chroma and luma",            OFFSET(chroma_offset), AV_OPT_TYPE_INT, { .i64 = 0 }, INT_MIN, INT_MAX, VE },
1102     { "sc_threshold", "Scene change threshold",                           OFFSET(scenechange_threshold), AV_OPT_TYPE_INT, { .i64 = -1 }, INT_MIN, INT_MAX, VE },
1103     { "noise_reduction", "Noise reduction",                               OFFSET(noise_reduction), AV_OPT_TYPE_INT, { .i64 = -1 }, INT_MIN, INT_MAX, VE },
1104
1105     { "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 },
1106     { NULL },
1107 };
1108
1109 static const AVCodecDefault x264_defaults[] = {
1110     { "b",                "0" },
1111     { "bf",               "-1" },
1112     { "flags2",           "0" },
1113     { "g",                "-1" },
1114     { "i_qfactor",        "-1" },
1115     { "b_qfactor",        "-1" },
1116     { "qmin",             "-1" },
1117     { "qmax",             "-1" },
1118     { "qdiff",            "-1" },
1119     { "qblur",            "-1" },
1120     { "qcomp",            "-1" },
1121 //     { "rc_lookahead",     "-1" },
1122     { "refs",             "-1" },
1123     { "trellis",          "-1" },
1124     { "me_range",         "-1" },
1125     { "subq",             "-1" },
1126     { "keyint_min",       "-1" },
1127     { "cmp",              "-1" },
1128     { "threads",          AV_STRINGIFY(X264_THREADS_AUTO) },
1129     { "thread_type",      "0" },
1130     { "flags",            "+cgop" },
1131     { "rc_init_occupancy","-1" },
1132     { NULL },
1133 };
1134
1135 #if CONFIG_LIBX264_ENCODER
1136 static const AVClass x264_class = {
1137     .class_name = "libx264",
1138     .item_name  = av_default_item_name,
1139     .option     = options,
1140     .version    = LIBAVUTIL_VERSION_INT,
1141 };
1142
1143 #if X264_BUILD >= 153
1144 const
1145 #endif
1146 AVCodec ff_libx264_encoder = {
1147     .name             = "libx264",
1148     .long_name        = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
1149     .type             = AVMEDIA_TYPE_VIDEO,
1150     .id               = AV_CODEC_ID_H264,
1151     .priv_data_size   = sizeof(X264Context),
1152     .init             = X264_init,
1153     .encode2          = X264_frame,
1154     .close            = X264_close,
1155     .capabilities     = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_OTHER_THREADS |
1156                         AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE,
1157     .caps_internal    = FF_CODEC_CAP_AUTO_THREADS,
1158     .priv_class       = &x264_class,
1159     .defaults         = x264_defaults,
1160 #if X264_BUILD < 153
1161     .init_static_data = X264_init_static,
1162 #else
1163     .pix_fmts         = pix_fmts_all,
1164 #endif
1165     .caps_internal  = FF_CODEC_CAP_INIT_CLEANUP | FF_CODEC_CAP_AUTO_THREADS
1166 #if X264_BUILD >= 158
1167                       | FF_CODEC_CAP_INIT_THREADSAFE
1168 #endif
1169                       ,
1170     .wrapper_name     = "libx264",
1171 };
1172 #endif
1173
1174 #if CONFIG_LIBX264RGB_ENCODER
1175 static const AVClass rgbclass = {
1176     .class_name = "libx264rgb",
1177     .item_name  = av_default_item_name,
1178     .option     = options,
1179     .version    = LIBAVUTIL_VERSION_INT,
1180 };
1181
1182 const AVCodec ff_libx264rgb_encoder = {
1183     .name           = "libx264rgb",
1184     .long_name      = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 RGB"),
1185     .type           = AVMEDIA_TYPE_VIDEO,
1186     .id             = AV_CODEC_ID_H264,
1187     .priv_data_size = sizeof(X264Context),
1188     .init           = X264_init,
1189     .encode2        = X264_frame,
1190     .close          = X264_close,
1191     .capabilities   = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_OTHER_THREADS |
1192                       AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE,
1193     .priv_class     = &rgbclass,
1194     .defaults       = x264_defaults,
1195     .pix_fmts       = pix_fmts_8bit_rgb,
1196     .caps_internal  = FF_CODEC_CAP_INIT_CLEANUP | FF_CODEC_CAP_AUTO_THREADS
1197 #if X264_BUILD >= 158
1198                       | FF_CODEC_CAP_INIT_THREADSAFE
1199 #endif
1200                       ,
1201     .wrapper_name   = "libx264",
1202 };
1203 #endif
1204
1205 #if CONFIG_LIBX262_ENCODER
1206 static const AVClass X262_class = {
1207     .class_name = "libx262",
1208     .item_name  = av_default_item_name,
1209     .option     = options,
1210     .version    = LIBAVUTIL_VERSION_INT,
1211 };
1212
1213 const AVCodec ff_libx262_encoder = {
1214     .name             = "libx262",
1215     .long_name        = NULL_IF_CONFIG_SMALL("libx262 MPEG2VIDEO"),
1216     .type             = AVMEDIA_TYPE_VIDEO,
1217     .id               = AV_CODEC_ID_MPEG2VIDEO,
1218     .priv_data_size   = sizeof(X264Context),
1219     .init             = X264_init,
1220     .encode2          = X264_frame,
1221     .close            = X264_close,
1222     .capabilities     = AV_CODEC_CAP_DELAY | AV_CODEC_CAP_OTHER_THREADS |
1223                         AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE,
1224     .priv_class       = &X262_class,
1225     .defaults         = x264_defaults,
1226     .pix_fmts         = pix_fmts_8bit,
1227     .caps_internal    = FF_CODEC_CAP_INIT_CLEANUP | FF_CODEC_CAP_AUTO_THREADS,
1228     .wrapper_name     = "libx264",
1229 };
1230 #endif