]> git.sesse.net Git - ffmpeg/blob - libavcodec/libx264.c
Merge remote-tracking branch 'qatar/master'
[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/opt.h"
23 #include "libavutil/pixdesc.h"
24 #include "avcodec.h"
25 #include "internal.h"
26 #include <x264.h>
27 #include <float.h>
28 #include <math.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <string.h>
32
33 typedef struct X264Context {
34     AVClass        *class;
35     x264_param_t    params;
36     x264_t         *enc;
37     x264_picture_t  pic;
38     uint8_t        *sei;
39     int             sei_size;
40     AVFrame         out_pic;
41     char *preset;
42     char *tune;
43     char *profile;
44     char *level;
45     int fastfirstpass;
46     char *wpredp;
47     char *x264opts;
48     float crf;
49     float crf_max;
50     int cqp;
51     int aq_mode;
52     float aq_strength;
53     char *psy_rd;
54     int psy;
55     int rc_lookahead;
56     int weightp;
57     int weightb;
58     int ssim;
59     int intra_refresh;
60     int b_bias;
61     int b_pyramid;
62     int mixed_refs;
63     int dct8x8;
64     int fast_pskip;
65     int aud;
66     int mbtree;
67     char *deblock;
68     float cplxblur;
69     char *partitions;
70     int direct_pred;
71     int slice_max_size;
72     char *stats;
73 } X264Context;
74
75 static void X264_log(void *p, int level, const char *fmt, va_list args)
76 {
77     static const int level_map[] = {
78         [X264_LOG_ERROR]   = AV_LOG_ERROR,
79         [X264_LOG_WARNING] = AV_LOG_WARNING,
80         [X264_LOG_INFO]    = AV_LOG_INFO,
81         [X264_LOG_DEBUG]   = AV_LOG_DEBUG
82     };
83
84     if (level < 0 || level > X264_LOG_DEBUG)
85         return;
86
87     av_vlog(p, level_map[level], fmt, args);
88 }
89
90
91 static int encode_nals(AVCodecContext *ctx, AVPacket *pkt,
92                        x264_nal_t *nals, int nnal)
93 {
94     X264Context *x4 = ctx->priv_data;
95     uint8_t *p;
96     int i, size = x4->sei_size, ret;
97
98     if (!nnal)
99         return 0;
100
101     for (i = 0; i < nnal; i++)
102         size += nals[i].i_payload;
103
104     if ((ret = ff_alloc_packet(pkt, size)) < 0)
105         return ret;
106
107     p = pkt->data;
108
109     /* Write the SEI as part of the first frame. */
110     if (x4->sei_size > 0 && nnal > 0) {
111         if (x4->sei_size > size) {
112             av_log(ctx, AV_LOG_ERROR, "Error: nal buffer is too small\n");
113             return -1;
114         }
115         memcpy(p, x4->sei, x4->sei_size);
116         p += x4->sei_size;
117         x4->sei_size = 0;
118         av_freep(&x4->sei);
119     }
120
121     for (i = 0; i < nnal; i++){
122         memcpy(p, nals[i].p_payload, nals[i].i_payload);
123         p += nals[i].i_payload;
124     }
125
126     return 1;
127 }
128
129 static int avfmt2_num_planes(int avfmt)
130 {
131     switch (avfmt) {
132     case PIX_FMT_YUV420P:
133     case PIX_FMT_YUVJ420P:
134     case PIX_FMT_YUV420P9:
135     case PIX_FMT_YUV420P10:
136     case PIX_FMT_YUV444P:
137         return 3;
138
139     case PIX_FMT_BGR24:
140     case PIX_FMT_RGB24:
141         return 1;
142
143     default:
144         return 3;
145     }
146 }
147
148 static int X264_frame(AVCodecContext *ctx, AVPacket *pkt, const AVFrame *frame,
149                       int *got_packet)
150 {
151     X264Context *x4 = ctx->priv_data;
152     x264_nal_t *nal;
153     int nnal, i, ret;
154     x264_picture_t pic_out;
155
156     x264_picture_init( &x4->pic );
157     x4->pic.img.i_csp   = x4->params.i_csp;
158     if (x264_bit_depth > 8)
159         x4->pic.img.i_csp |= X264_CSP_HIGH_DEPTH;
160     x4->pic.img.i_plane = avfmt2_num_planes(ctx->pix_fmt);
161
162     if (frame) {
163         for (i = 0; i < x4->pic.img.i_plane; i++) {
164             x4->pic.img.plane[i]    = frame->data[i];
165             x4->pic.img.i_stride[i] = frame->linesize[i];
166         }
167
168         x4->pic.i_pts  = frame->pts;
169         x4->pic.i_type =
170             frame->pict_type == AV_PICTURE_TYPE_I ? X264_TYPE_KEYFRAME :
171             frame->pict_type == AV_PICTURE_TYPE_P ? X264_TYPE_P :
172             frame->pict_type == AV_PICTURE_TYPE_B ? X264_TYPE_B :
173                                             X264_TYPE_AUTO;
174         if (x4->params.b_tff != frame->top_field_first) {
175             x4->params.b_tff = frame->top_field_first;
176             x264_encoder_reconfig(x4->enc, &x4->params);
177         }
178         if (x4->params.vui.i_sar_height != ctx->sample_aspect_ratio.den
179          || x4->params.vui.i_sar_width != ctx->sample_aspect_ratio.num) {
180             x4->params.vui.i_sar_height = ctx->sample_aspect_ratio.den;
181             x4->params.vui.i_sar_width = ctx->sample_aspect_ratio.num;
182             x264_encoder_reconfig(x4->enc, &x4->params);
183         }
184     }
185
186     do {
187         if (x264_encoder_encode(x4->enc, &nal, &nnal, frame? &x4->pic: NULL, &pic_out) < 0)
188             return -1;
189
190         ret = encode_nals(ctx, pkt, nal, nnal);
191         if (ret < 0)
192             return -1;
193     } while (!ret && !frame && x264_encoder_delayed_frames(x4->enc));
194
195     pkt->pts = pic_out.i_pts;
196     pkt->dts = pic_out.i_dts;
197
198     switch (pic_out.i_type) {
199     case X264_TYPE_IDR:
200     case X264_TYPE_I:
201         x4->out_pic.pict_type = AV_PICTURE_TYPE_I;
202         break;
203     case X264_TYPE_P:
204         x4->out_pic.pict_type = AV_PICTURE_TYPE_P;
205         break;
206     case X264_TYPE_B:
207     case X264_TYPE_BREF:
208         x4->out_pic.pict_type = AV_PICTURE_TYPE_B;
209         break;
210     }
211
212     pkt->flags |= AV_PKT_FLAG_KEY*pic_out.b_keyframe;
213     if (ret)
214         x4->out_pic.quality = (pic_out.i_qpplus1 - 1) * FF_QP2LAMBDA;
215
216     *got_packet = ret;
217     return 0;
218 }
219
220 static av_cold int X264_close(AVCodecContext *avctx)
221 {
222     X264Context *x4 = avctx->priv_data;
223
224     av_freep(&avctx->extradata);
225     av_free(x4->sei);
226
227     if (x4->enc)
228         x264_encoder_close(x4->enc);
229
230     return 0;
231 }
232
233 #define OPT_STR(opt, param)                                                   \
234     do {                                                                      \
235         int ret;                                                              \
236         if (param && (ret = x264_param_parse(&x4->params, opt, param)) < 0) { \
237             if(ret == X264_PARAM_BAD_NAME)                                    \
238                 av_log(avctx, AV_LOG_ERROR,                                   \
239                         "bad option '%s': '%s'\n", opt, param);               \
240             else                                                              \
241                 av_log(avctx, AV_LOG_ERROR,                                   \
242                         "bad value for '%s': '%s'\n", opt, param);            \
243             return -1;                                                        \
244         }                                                                     \
245     } while (0)
246
247 static int convert_pix_fmt(enum PixelFormat pix_fmt)
248 {
249     switch (pix_fmt) {
250     case PIX_FMT_YUV420P:
251     case PIX_FMT_YUVJ420P:
252     case PIX_FMT_YUV420P9:
253     case PIX_FMT_YUV420P10: return X264_CSP_I420;
254     case PIX_FMT_YUV422P:
255     case PIX_FMT_YUV422P10: return X264_CSP_I422;
256     case PIX_FMT_YUV444P:
257     case PIX_FMT_YUV444P9:
258     case PIX_FMT_YUV444P10: return X264_CSP_I444;
259 #ifdef X264_CSP_BGR
260     case PIX_FMT_BGR24:
261         return X264_CSP_BGR;
262
263     case PIX_FMT_RGB24:
264         return X264_CSP_RGB;
265 #endif
266     };
267     return 0;
268 }
269
270 #define PARSE_X264_OPT(name, var)\
271     if (x4->var && x264_param_parse(&x4->params, name, x4->var) < 0) {\
272         av_log(avctx, AV_LOG_ERROR, "Error parsing option '%s' with value '%s'.\n", name, x4->var);\
273         return AVERROR(EINVAL);\
274     }
275
276 static av_cold int X264_init(AVCodecContext *avctx)
277 {
278     X264Context *x4 = avctx->priv_data;
279     int sw,sh;
280
281     x264_param_default(&x4->params);
282
283     x4->params.b_deblocking_filter         = avctx->flags & CODEC_FLAG_LOOP_FILTER;
284
285     x4->params.rc.f_ip_factor             = 1 / fabs(avctx->i_quant_factor);
286     x4->params.rc.f_pb_factor             = avctx->b_quant_factor;
287     x4->params.analyse.i_chroma_qp_offset = avctx->chromaoffset;
288     if (x4->preset || x4->tune)
289         if (x264_param_default_preset(&x4->params, x4->preset, x4->tune) < 0) {
290             av_log(avctx, AV_LOG_ERROR, "Error setting preset/tune %s/%s.\n", x4->preset, x4->tune);
291             return AVERROR(EINVAL);
292         }
293
294     if (avctx->level > 0)
295         x4->params.i_level_idc = avctx->level;
296
297     x4->params.pf_log               = X264_log;
298     x4->params.p_log_private        = avctx;
299     x4->params.i_log_level          = X264_LOG_DEBUG;
300     x4->params.i_csp                = convert_pix_fmt(avctx->pix_fmt);
301
302     OPT_STR("weightp", x4->wpredp);
303
304     if (avctx->bit_rate) {
305         x4->params.rc.i_bitrate   = avctx->bit_rate / 1000;
306         x4->params.rc.i_rc_method = X264_RC_ABR;
307     }
308     x4->params.rc.i_vbv_buffer_size = avctx->rc_buffer_size / 1000;
309     x4->params.rc.i_vbv_max_bitrate = avctx->rc_max_rate    / 1000;
310     x4->params.rc.b_stat_write      = avctx->flags & CODEC_FLAG_PASS1;
311     if (avctx->flags & CODEC_FLAG_PASS2) {
312         x4->params.rc.b_stat_read = 1;
313     } else {
314         if (x4->crf >= 0) {
315             x4->params.rc.i_rc_method   = X264_RC_CRF;
316             x4->params.rc.f_rf_constant = x4->crf;
317         } else if (x4->cqp >= 0) {
318             x4->params.rc.i_rc_method   = X264_RC_CQP;
319             x4->params.rc.i_qp_constant = x4->cqp;
320         }
321
322         if (x4->crf_max >= 0)
323             x4->params.rc.f_rf_constant_max = x4->crf_max;
324     }
325
326     if (avctx->rc_buffer_size && avctx->rc_initial_buffer_occupancy &&
327         (avctx->rc_initial_buffer_occupancy <= avctx->rc_buffer_size)) {
328         x4->params.rc.f_vbv_buffer_init =
329             (float)avctx->rc_initial_buffer_occupancy / avctx->rc_buffer_size;
330     }
331
332     OPT_STR("level", x4->level);
333
334     if(x4->x264opts){
335         const char *p= x4->x264opts;
336         while(p){
337             char param[256]={0}, val[256]={0};
338             if(sscanf(p, "%255[^:=]=%255[^:]", param, val) == 1){
339                 OPT_STR(param, "1");
340             }else
341                 OPT_STR(param, val);
342             p= strchr(p, ':');
343             p+=!!p;
344         }
345     }
346
347     if (avctx->me_method == ME_EPZS)
348         x4->params.analyse.i_me_method = X264_ME_DIA;
349     else if (avctx->me_method == ME_HEX)
350         x4->params.analyse.i_me_method = X264_ME_HEX;
351     else if (avctx->me_method == ME_UMH)
352         x4->params.analyse.i_me_method = X264_ME_UMH;
353     else if (avctx->me_method == ME_FULL)
354         x4->params.analyse.i_me_method = X264_ME_ESA;
355     else if (avctx->me_method == ME_TESA)
356         x4->params.analyse.i_me_method = X264_ME_TESA;
357
358     if (avctx->gop_size >= 0)
359         x4->params.i_keyint_max         = avctx->gop_size;
360     if (avctx->max_b_frames >= 0)
361         x4->params.i_bframe             = avctx->max_b_frames;
362     if (avctx->scenechange_threshold >= 0)
363         x4->params.i_scenecut_threshold = avctx->scenechange_threshold;
364     if (avctx->qmin >= 0)
365         x4->params.rc.i_qp_min          = avctx->qmin;
366     if (avctx->qmax >= 0)
367         x4->params.rc.i_qp_max          = avctx->qmax;
368     if (avctx->max_qdiff >= 0)
369         x4->params.rc.i_qp_step         = avctx->max_qdiff;
370     if (avctx->qblur >= 0)
371         x4->params.rc.f_qblur           = avctx->qblur;     /* temporally blur quants */
372     if (avctx->qcompress >= 0)
373         x4->params.rc.f_qcompress       = avctx->qcompress; /* 0.0 => cbr, 1.0 => constant qp */
374     if (avctx->refs >= 0)
375         x4->params.i_frame_reference    = avctx->refs;
376     if (avctx->trellis >= 0)
377         x4->params.analyse.i_trellis    = avctx->trellis;
378     if (avctx->me_range >= 0)
379         x4->params.analyse.i_me_range   = avctx->me_range;
380     if (avctx->noise_reduction >= 0)
381         x4->params.analyse.i_noise_reduction = avctx->noise_reduction;
382     if (avctx->me_subpel_quality >= 0)
383         x4->params.analyse.i_subpel_refine   = avctx->me_subpel_quality;
384     if (avctx->b_frame_strategy >= 0)
385         x4->params.i_bframe_adaptive = avctx->b_frame_strategy;
386     if (avctx->keyint_min >= 0)
387         x4->params.i_keyint_min = avctx->keyint_min;
388     if (avctx->coder_type >= 0)
389         x4->params.b_cabac = avctx->coder_type == FF_CODER_TYPE_AC;
390     if (avctx->me_cmp >= 0)
391         x4->params.analyse.b_chroma_me = avctx->me_cmp & FF_CMP_CHROMA;
392
393     if (x4->aq_mode >= 0)
394         x4->params.rc.i_aq_mode = x4->aq_mode;
395     if (x4->aq_strength >= 0)
396         x4->params.rc.f_aq_strength = x4->aq_strength;
397     PARSE_X264_OPT("psy-rd", psy_rd);
398     PARSE_X264_OPT("deblock", deblock);
399     PARSE_X264_OPT("partitions", partitions);
400     PARSE_X264_OPT("stats", stats);
401     if (x4->psy >= 0)
402         x4->params.analyse.b_psy  = x4->psy;
403     if (x4->rc_lookahead >= 0)
404         x4->params.rc.i_lookahead = x4->rc_lookahead;
405     if (x4->weightp >= 0)
406         x4->params.analyse.i_weighted_pred = x4->weightp;
407     if (x4->weightb >= 0)
408         x4->params.analyse.b_weighted_bipred = x4->weightb;
409     if (x4->cplxblur >= 0)
410         x4->params.rc.f_complexity_blur = x4->cplxblur;
411
412     if (x4->ssim >= 0)
413         x4->params.analyse.b_ssim = x4->ssim;
414     if (x4->intra_refresh >= 0)
415         x4->params.b_intra_refresh = x4->intra_refresh;
416     if (x4->b_bias != INT_MIN)
417         x4->params.i_bframe_bias              = x4->b_bias;
418     if (x4->b_pyramid >= 0)
419         x4->params.i_bframe_pyramid = x4->b_pyramid;
420     if (x4->mixed_refs >= 0)
421         x4->params.analyse.b_mixed_references = x4->mixed_refs;
422     if (x4->dct8x8 >= 0)
423         x4->params.analyse.b_transform_8x8    = x4->dct8x8;
424     if (x4->fast_pskip >= 0)
425         x4->params.analyse.b_fast_pskip       = x4->fast_pskip;
426     if (x4->aud >= 0)
427         x4->params.b_aud                      = x4->aud;
428     if (x4->mbtree >= 0)
429         x4->params.rc.b_mb_tree               = x4->mbtree;
430     if (x4->direct_pred >= 0)
431         x4->params.analyse.i_direct_mv_pred   = x4->direct_pred;
432
433     if (x4->slice_max_size >= 0)
434         x4->params.i_slice_max_size =  x4->slice_max_size;
435
436     if (x4->fastfirstpass)
437         x264_param_apply_fastfirstpass(&x4->params);
438
439     if (x4->profile)
440         if (x264_param_apply_profile(&x4->params, x4->profile) < 0) {
441             av_log(avctx, AV_LOG_ERROR, "Error setting profile %s.\n", x4->profile);
442             return AVERROR(EINVAL);
443         }
444
445     x4->params.i_width          = avctx->width;
446     x4->params.i_height         = avctx->height;
447     av_reduce(&sw, &sh, avctx->sample_aspect_ratio.num, avctx->sample_aspect_ratio.den, 4096);
448     x4->params.vui.i_sar_width  = sw;
449     x4->params.vui.i_sar_height = sh;
450     x4->params.i_fps_num = x4->params.i_timebase_den = avctx->time_base.den;
451     x4->params.i_fps_den = x4->params.i_timebase_num = avctx->time_base.num;
452
453     x4->params.analyse.b_psnr = avctx->flags & CODEC_FLAG_PSNR;
454
455     x4->params.i_threads      = avctx->thread_count;
456     if (avctx->thread_type)
457         x4->params.b_sliced_threads = avctx->thread_type == FF_THREAD_SLICE;
458
459     x4->params.b_interlaced   = avctx->flags & CODEC_FLAG_INTERLACED_DCT;
460
461 //    x4->params.b_open_gop     = !(avctx->flags & CODEC_FLAG_CLOSED_GOP);
462
463     x4->params.i_slice_count  = avctx->slices;
464
465     x4->params.vui.b_fullrange = avctx->pix_fmt == PIX_FMT_YUVJ420P;
466
467     if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER)
468         x4->params.b_repeat_headers = 0;
469
470     // update AVCodecContext with x264 parameters
471     avctx->has_b_frames = x4->params.i_bframe ?
472         x4->params.i_bframe_pyramid ? 2 : 1 : 0;
473     if (avctx->max_b_frames < 0)
474         avctx->max_b_frames = 0;
475
476     avctx->bit_rate = x4->params.rc.i_bitrate*1000;
477
478     x4->enc = x264_encoder_open(&x4->params);
479     if (!x4->enc)
480         return -1;
481
482     avctx->coded_frame = &x4->out_pic;
483
484     if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER) {
485         x264_nal_t *nal;
486         uint8_t *p;
487         int nnal, s, i;
488
489         s = x264_encoder_headers(x4->enc, &nal, &nnal);
490         avctx->extradata = p = av_malloc(s);
491
492         for (i = 0; i < nnal; i++) {
493             /* Don't put the SEI in extradata. */
494             if (nal[i].i_type == NAL_SEI) {
495                 av_log(avctx, AV_LOG_INFO, "%s\n", nal[i].p_payload+25);
496                 x4->sei_size = nal[i].i_payload;
497                 x4->sei      = av_malloc(x4->sei_size);
498                 memcpy(x4->sei, nal[i].p_payload, nal[i].i_payload);
499                 continue;
500             }
501             memcpy(p, nal[i].p_payload, nal[i].i_payload);
502             p += nal[i].i_payload;
503         }
504         avctx->extradata_size = p - avctx->extradata;
505     }
506
507     return 0;
508 }
509
510 static const enum PixelFormat pix_fmts_8bit[] = {
511     PIX_FMT_YUV420P,
512     PIX_FMT_YUVJ420P,
513     PIX_FMT_YUV422P,
514     PIX_FMT_YUV444P,
515     PIX_FMT_NONE
516 };
517 static const enum PixelFormat pix_fmts_9bit[] = {
518     PIX_FMT_YUV420P9,
519     PIX_FMT_YUV444P9,
520     PIX_FMT_NONE
521 };
522 static const enum PixelFormat pix_fmts_10bit[] = {
523     PIX_FMT_YUV420P10,
524     PIX_FMT_YUV422P10,
525     PIX_FMT_YUV444P10,
526     PIX_FMT_NONE
527 };
528 static const enum PixelFormat pix_fmts_8bit_rgb[] = {
529 #ifdef X264_CSP_BGR
530     PIX_FMT_BGR24,
531     PIX_FMT_RGB24,
532 #endif
533     PIX_FMT_NONE
534 };
535
536 static av_cold void X264_init_static(AVCodec *codec)
537 {
538     if (x264_bit_depth == 8)
539         codec->pix_fmts = pix_fmts_8bit;
540     else if (x264_bit_depth == 9)
541         codec->pix_fmts = pix_fmts_9bit;
542     else if (x264_bit_depth == 10)
543         codec->pix_fmts = pix_fmts_10bit;
544 }
545
546 #define OFFSET(x) offsetof(X264Context, x)
547 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
548 static const AVOption options[] = {
549     { "preset",        "Set the encoding preset (cf. x264 --fullhelp)",   OFFSET(preset),        AV_OPT_TYPE_STRING, { .str = "medium" }, 0, 0, VE},
550     { "tune",          "Tune the encoding params (cf. x264 --fullhelp)",  OFFSET(tune),          AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
551     { "profile",       "Set profile restrictions (cf. x264 --fullhelp) ", OFFSET(profile),       AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
552     { "fastfirstpass", "Use fast settings when encoding first pass",      OFFSET(fastfirstpass), AV_OPT_TYPE_INT,    { 1 }, 0, 1, VE},
553     {"level", "Specify level (as defined by Annex A)", OFFSET(level), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
554     {"passlogfile", "Filename for 2 pass stats", OFFSET(stats), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
555     {"wpredp", "Weighted prediction for P-frames", OFFSET(wpredp), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
556     {"x264opts", "x264 options", OFFSET(x264opts), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
557     { "crf",           "Select the quality for constant quality mode",    OFFSET(crf),           AV_OPT_TYPE_FLOAT,  {-1 }, -1, FLT_MAX, VE },
558     { "crf_max",       "In CRF mode, prevents VBV from lowering quality beyond this point.",OFFSET(crf_max), AV_OPT_TYPE_FLOAT, {-1 }, -1, FLT_MAX, VE },
559     { "qp",            "Constant quantization parameter rate control method",OFFSET(cqp),        AV_OPT_TYPE_INT,    {-1 }, -1, INT_MAX, VE },
560     { "aq-mode",       "AQ method",                                       OFFSET(aq_mode),       AV_OPT_TYPE_INT,    {-1 }, -1, INT_MAX, VE, "aq_mode"},
561     { "none",          NULL,                              0, AV_OPT_TYPE_CONST, {X264_AQ_NONE},         INT_MIN, INT_MAX, VE, "aq_mode" },
562     { "variance",      "Variance AQ (complexity mask)",   0, AV_OPT_TYPE_CONST, {X264_AQ_VARIANCE},     INT_MIN, INT_MAX, VE, "aq_mode" },
563     { "autovariance",  "Auto-variance AQ (experimental)", 0, AV_OPT_TYPE_CONST, {X264_AQ_AUTOVARIANCE}, INT_MIN, INT_MAX, VE, "aq_mode" },
564     { "aq-strength",   "AQ strength. Reduces blocking and blurring in flat and textured areas.", OFFSET(aq_strength), AV_OPT_TYPE_FLOAT, {-1}, -1, FLT_MAX, VE},
565     { "psy",           "Use psychovisual optimizations.",                 OFFSET(psy),           AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE },
566     { "psy-rd",        "Strength of psychovisual optimization, in <psy-rd>:<psy-trellis> format.", OFFSET(psy_rd), AV_OPT_TYPE_STRING,  {0 }, 0, 0, VE},
567     { "rc-lookahead",  "Number of frames to look ahead for frametype and ratecontrol", OFFSET(rc_lookahead), AV_OPT_TYPE_INT, {-1 }, -1, INT_MAX, VE },
568     { "weightb",       "Weighted prediction for B-frames.",               OFFSET(weightb),       AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE },
569     { "weightp",       "Weighted prediction analysis method.",            OFFSET(weightp),       AV_OPT_TYPE_INT,    {-1 }, -1, INT_MAX, VE, "weightp" },
570     { "none",          NULL, 0, AV_OPT_TYPE_CONST, {X264_WEIGHTP_NONE},   INT_MIN, INT_MAX, VE, "weightp" },
571     { "simple",        NULL, 0, AV_OPT_TYPE_CONST, {X264_WEIGHTP_SIMPLE}, INT_MIN, INT_MAX, VE, "weightp" },
572     { "smart",         NULL, 0, AV_OPT_TYPE_CONST, {X264_WEIGHTP_SMART},  INT_MIN, INT_MAX, VE, "weightp" },
573     { "ssim",          "Calculate and print SSIM stats.",                 OFFSET(ssim),          AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE },
574     { "intra-refresh", "Use Periodic Intra Refresh instead of IDR frames.",OFFSET(intra_refresh),AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE },
575     { "b-bias",        "Influences how often B-frames are used",          OFFSET(b_bias),        AV_OPT_TYPE_INT,    {INT_MIN}, INT_MIN, INT_MAX, VE },
576     { "b-pyramid",     "Keep some B-frames as references.",               OFFSET(b_pyramid),     AV_OPT_TYPE_INT,    {-1 }, -1, INT_MAX, VE, "b_pyramid" },
577     { "none",          NULL,                                  0, AV_OPT_TYPE_CONST, {X264_B_PYRAMID_NONE},   INT_MIN, INT_MAX, VE, "b_pyramid" },
578     { "strict",        "Strictly hierarchical pyramid",       0, AV_OPT_TYPE_CONST, {X264_B_PYRAMID_STRICT}, INT_MIN, INT_MAX, VE, "b_pyramid" },
579     { "normal",        "Non-strict (not Blu-ray compatible)", 0, AV_OPT_TYPE_CONST, {X264_B_PYRAMID_NORMAL}, INT_MIN, INT_MAX, VE, "b_pyramid" },
580     { "mixed-refs",    "One reference per partition, as opposed to one reference per macroblock", OFFSET(mixed_refs), AV_OPT_TYPE_INT, {-1}, -1, 1, VE },
581     { "8x8dct",        "High profile 8x8 transform.",                     OFFSET(dct8x8),        AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE},
582     { "fast-pskip",    NULL,                                              OFFSET(fast_pskip),    AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE},
583     { "aud",           "Use access unit delimiters.",                     OFFSET(aud),           AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE},
584     { "mbtree",        "Use macroblock tree ratecontrol.",                OFFSET(mbtree),        AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE},
585     { "deblock",       "Loop filter parameters, in <alpha:beta> form.",   OFFSET(deblock),       AV_OPT_TYPE_STRING, { 0 },  0, 0, VE},
586     { "cplxblur",      "Reduce fluctuations in QP (before curve compression)", OFFSET(cplxblur), AV_OPT_TYPE_FLOAT,  {-1 }, -1, FLT_MAX, VE},
587     { "partitions",    "A comma-separated list of partitions to consider. "
588                        "Possible values: p8x8, p4x4, b8x8, i8x8, i4x4, none, all", OFFSET(partitions), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
589     { "direct-pred",   "Direct MV prediction mode",                       OFFSET(direct_pred),   AV_OPT_TYPE_INT,    {-1 }, -1, INT_MAX, VE, "direct-pred" },
590     { "none",          NULL,      0,    AV_OPT_TYPE_CONST, { X264_DIRECT_PRED_NONE },     0, 0, VE, "direct-pred" },
591     { "spatial",       NULL,      0,    AV_OPT_TYPE_CONST, { X264_DIRECT_PRED_SPATIAL },  0, 0, VE, "direct-pred" },
592     { "temporal",      NULL,      0,    AV_OPT_TYPE_CONST, { X264_DIRECT_PRED_TEMPORAL }, 0, 0, VE, "direct-pred" },
593     { "auto",          NULL,      0,    AV_OPT_TYPE_CONST, { X264_DIRECT_PRED_AUTO },     0, 0, VE, "direct-pred" },
594     { "slice-max-size","Limit the size of each slice in bytes",           OFFSET(slice_max_size),AV_OPT_TYPE_INT,    {-1 }, -1, INT_MAX, VE },
595     { "stats",         "Filename for 2 pass stats",                       OFFSET(stats),         AV_OPT_TYPE_STRING, { 0 },  0,       0, VE },
596     { NULL },
597 };
598
599 static const AVClass class = {
600     .class_name = "libx264",
601     .item_name  = av_default_item_name,
602     .option     = options,
603     .version    = LIBAVUTIL_VERSION_INT,
604 };
605
606 static const AVClass rgbclass = {
607     .class_name = "libx264rgb",
608     .item_name  = av_default_item_name,
609     .option     = options,
610     .version    = LIBAVUTIL_VERSION_INT,
611 };
612
613 static const AVCodecDefault x264_defaults[] = {
614     { "b",                "0" },
615     { "bf",               "-1" },
616     { "flags2",           "0" },
617     { "g",                "-1" },
618     { "qmin",             "-1" },
619     { "qmax",             "-1" },
620     { "qdiff",            "-1" },
621     { "qblur",            "-1" },
622     { "qcomp",            "-1" },
623 //     { "rc_lookahead",     "-1" },
624     { "refs",             "-1" },
625     { "sc_threshold",     "-1" },
626     { "trellis",          "-1" },
627     { "nr",               "-1" },
628     { "me_range",         "-1" },
629     { "me_method",        "-1" },
630     { "subq",             "-1" },
631     { "b_strategy",       "-1" },
632     { "keyint_min",       "-1" },
633     { "coder",            "-1" },
634     { "cmp",              "-1" },
635     { "threads",          AV_STRINGIFY(X264_THREADS_AUTO) },
636     { "thread_type",      "0" },
637     { NULL },
638 };
639
640 AVCodec ff_libx264_encoder = {
641     .name           = "libx264",
642     .type           = AVMEDIA_TYPE_VIDEO,
643     .id             = CODEC_ID_H264,
644     .priv_data_size = sizeof(X264Context),
645     .init           = X264_init,
646     .encode2        = X264_frame,
647     .close          = X264_close,
648     .capabilities   = CODEC_CAP_DELAY | CODEC_CAP_AUTO_THREADS,
649     .long_name      = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
650     .priv_class     = &class,
651     .defaults       = x264_defaults,
652     .init_static_data = X264_init_static,
653 };
654
655 AVCodec ff_libx264rgb_encoder = {
656     .name           = "libx264rgb",
657     .type           = AVMEDIA_TYPE_VIDEO,
658     .id             = CODEC_ID_H264,
659     .priv_data_size = sizeof(X264Context),
660     .init           = X264_init,
661     .encode2        = X264_frame,
662     .close          = X264_close,
663     .capabilities   = CODEC_CAP_DELAY,
664     .long_name      = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 RGB"),
665     .priv_class     = &rgbclass,
666     .defaults       = x264_defaults,
667     .pix_fmts       = pix_fmts_8bit_rgb,
668 };