]> 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 *stats;
47     char *wpredp;
48     char *x264opts;
49     float crf;
50     float crf_max;
51     int cqp;
52     int aq_mode;
53     float aq_strength;
54     char *psy_rd;
55     int psy;
56     int rc_lookahead;
57     int weightp;
58     int weightb;
59     int ssim;
60     int intra_refresh;
61     int b_bias;
62     int b_pyramid;
63     int mixed_refs;
64     int dct8x8;
65     int fast_pskip;
66     int aud;
67     int mbtree;
68     char *deblock;
69     float cplxblur;
70     char *partitions;
71     int direct_pred;
72     int slice_max_size;
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     OPT_STR("stats", x4->stats);
327
328     if (avctx->rc_buffer_size && avctx->rc_initial_buffer_occupancy &&
329         (avctx->rc_initial_buffer_occupancy <= avctx->rc_buffer_size)) {
330         x4->params.rc.f_vbv_buffer_init =
331             (float)avctx->rc_initial_buffer_occupancy / avctx->rc_buffer_size;
332     }
333
334     OPT_STR("level", x4->level);
335
336     if(x4->x264opts){
337         const char *p= x4->x264opts;
338         while(p){
339             char param[256]={0}, val[256]={0};
340             if(sscanf(p, "%255[^:=]=%255[^:]", param, val) == 1){
341                 OPT_STR(param, "1");
342             }else
343                 OPT_STR(param, val);
344             p= strchr(p, ':');
345             p+=!!p;
346         }
347     }
348
349     if (avctx->me_method == ME_EPZS)
350         x4->params.analyse.i_me_method = X264_ME_DIA;
351     else if (avctx->me_method == ME_HEX)
352         x4->params.analyse.i_me_method = X264_ME_HEX;
353     else if (avctx->me_method == ME_UMH)
354         x4->params.analyse.i_me_method = X264_ME_UMH;
355     else if (avctx->me_method == ME_FULL)
356         x4->params.analyse.i_me_method = X264_ME_ESA;
357     else if (avctx->me_method == ME_TESA)
358         x4->params.analyse.i_me_method = X264_ME_TESA;
359
360     if (avctx->gop_size >= 0)
361         x4->params.i_keyint_max         = avctx->gop_size;
362     if (avctx->max_b_frames >= 0)
363         x4->params.i_bframe             = avctx->max_b_frames;
364     if (avctx->scenechange_threshold >= 0)
365         x4->params.i_scenecut_threshold = avctx->scenechange_threshold;
366     if (avctx->qmin >= 0)
367         x4->params.rc.i_qp_min          = avctx->qmin;
368     if (avctx->qmax >= 0)
369         x4->params.rc.i_qp_max          = avctx->qmax;
370     if (avctx->max_qdiff >= 0)
371         x4->params.rc.i_qp_step         = avctx->max_qdiff;
372     if (avctx->qblur >= 0)
373         x4->params.rc.f_qblur           = avctx->qblur;     /* temporally blur quants */
374     if (avctx->qcompress >= 0)
375         x4->params.rc.f_qcompress       = avctx->qcompress; /* 0.0 => cbr, 1.0 => constant qp */
376     if (avctx->refs >= 0)
377         x4->params.i_frame_reference    = avctx->refs;
378     if (avctx->trellis >= 0)
379         x4->params.analyse.i_trellis    = avctx->trellis;
380     if (avctx->me_range >= 0)
381         x4->params.analyse.i_me_range   = avctx->me_range;
382     if (avctx->noise_reduction >= 0)
383         x4->params.analyse.i_noise_reduction = avctx->noise_reduction;
384     if (avctx->me_subpel_quality >= 0)
385         x4->params.analyse.i_subpel_refine   = avctx->me_subpel_quality;
386     if (avctx->b_frame_strategy >= 0)
387         x4->params.i_bframe_adaptive = avctx->b_frame_strategy;
388     if (avctx->keyint_min >= 0)
389         x4->params.i_keyint_min = avctx->keyint_min;
390     if (avctx->coder_type >= 0)
391         x4->params.b_cabac = avctx->coder_type == FF_CODER_TYPE_AC;
392     if (avctx->me_cmp >= 0)
393         x4->params.analyse.b_chroma_me = avctx->me_cmp & FF_CMP_CHROMA;
394
395     if (x4->aq_mode >= 0)
396         x4->params.rc.i_aq_mode = x4->aq_mode;
397     if (x4->aq_strength >= 0)
398         x4->params.rc.f_aq_strength = x4->aq_strength;
399     PARSE_X264_OPT("psy-rd", psy_rd);
400     PARSE_X264_OPT("deblock", deblock);
401     PARSE_X264_OPT("partitions", partitions);
402     if (x4->psy >= 0)
403         x4->params.analyse.b_psy  = x4->psy;
404     if (x4->rc_lookahead >= 0)
405         x4->params.rc.i_lookahead = x4->rc_lookahead;
406     if (x4->weightp >= 0)
407         x4->params.analyse.i_weighted_pred = x4->weightp;
408     if (x4->weightb >= 0)
409         x4->params.analyse.b_weighted_bipred = x4->weightb;
410     if (x4->cplxblur >= 0)
411         x4->params.rc.f_complexity_blur = x4->cplxblur;
412
413     if (x4->ssim >= 0)
414         x4->params.analyse.b_ssim = x4->ssim;
415     if (x4->intra_refresh >= 0)
416         x4->params.b_intra_refresh = x4->intra_refresh;
417     if (x4->b_bias != INT_MIN)
418         x4->params.i_bframe_bias              = x4->b_bias;
419     if (x4->b_pyramid >= 0)
420         x4->params.i_bframe_pyramid = x4->b_pyramid;
421     if (x4->mixed_refs >= 0)
422         x4->params.analyse.b_mixed_references = x4->mixed_refs;
423     if (x4->dct8x8 >= 0)
424         x4->params.analyse.b_transform_8x8    = x4->dct8x8;
425     if (x4->fast_pskip >= 0)
426         x4->params.analyse.b_fast_pskip       = x4->fast_pskip;
427     if (x4->aud >= 0)
428         x4->params.b_aud                      = x4->aud;
429     if (x4->mbtree >= 0)
430         x4->params.rc.b_mb_tree               = x4->mbtree;
431     if (x4->direct_pred >= 0)
432         x4->params.analyse.i_direct_mv_pred   = x4->direct_pred;
433
434     if (x4->slice_max_size >= 0)
435         x4->params.i_slice_max_size =  x4->slice_max_size;
436
437     if (x4->fastfirstpass)
438         x264_param_apply_fastfirstpass(&x4->params);
439
440     if (x4->profile)
441         if (x264_param_apply_profile(&x4->params, x4->profile) < 0) {
442             av_log(avctx, AV_LOG_ERROR, "Error setting profile %s.\n", x4->profile);
443             return AVERROR(EINVAL);
444         }
445
446     x4->params.i_width          = avctx->width;
447     x4->params.i_height         = avctx->height;
448     av_reduce(&sw, &sh, avctx->sample_aspect_ratio.num, avctx->sample_aspect_ratio.den, 4096);
449     x4->params.vui.i_sar_width  = sw;
450     x4->params.vui.i_sar_height = sh;
451     x4->params.i_fps_num = x4->params.i_timebase_den = avctx->time_base.den;
452     x4->params.i_fps_den = x4->params.i_timebase_num = avctx->time_base.num;
453
454     x4->params.analyse.b_psnr = avctx->flags & CODEC_FLAG_PSNR;
455
456     x4->params.i_threads      = avctx->thread_count;
457     if (avctx->thread_type)
458         x4->params.b_sliced_threads = avctx->thread_type == FF_THREAD_SLICE;
459
460     x4->params.b_interlaced   = avctx->flags & CODEC_FLAG_INTERLACED_DCT;
461
462 //    x4->params.b_open_gop     = !(avctx->flags & CODEC_FLAG_CLOSED_GOP);
463
464     x4->params.i_slice_count  = avctx->slices;
465
466     x4->params.vui.b_fullrange = avctx->pix_fmt == PIX_FMT_YUVJ420P;
467
468     if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER)
469         x4->params.b_repeat_headers = 0;
470
471     // update AVCodecContext with x264 parameters
472     avctx->has_b_frames = x4->params.i_bframe ?
473         x4->params.i_bframe_pyramid ? 2 : 1 : 0;
474     if (avctx->max_b_frames < 0)
475         avctx->max_b_frames = 0;
476
477     avctx->bit_rate = x4->params.rc.i_bitrate*1000;
478
479     x4->enc = x264_encoder_open(&x4->params);
480     if (!x4->enc)
481         return -1;
482
483     avctx->coded_frame = &x4->out_pic;
484
485     if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER) {
486         x264_nal_t *nal;
487         uint8_t *p;
488         int nnal, s, i;
489
490         s = x264_encoder_headers(x4->enc, &nal, &nnal);
491         avctx->extradata = p = av_malloc(s);
492
493         for (i = 0; i < nnal; i++) {
494             /* Don't put the SEI in extradata. */
495             if (nal[i].i_type == NAL_SEI) {
496                 av_log(avctx, AV_LOG_INFO, "%s\n", nal[i].p_payload+25);
497                 x4->sei_size = nal[i].i_payload;
498                 x4->sei      = av_malloc(x4->sei_size);
499                 memcpy(x4->sei, nal[i].p_payload, nal[i].i_payload);
500                 continue;
501             }
502             memcpy(p, nal[i].p_payload, nal[i].i_payload);
503             p += nal[i].i_payload;
504         }
505         avctx->extradata_size = p - avctx->extradata;
506     }
507
508     return 0;
509 }
510
511 static const enum PixelFormat pix_fmts_8bit[] = {
512     PIX_FMT_YUV420P,
513     PIX_FMT_YUVJ420P,
514     PIX_FMT_YUV422P,
515     PIX_FMT_YUV444P,
516     PIX_FMT_NONE
517 };
518 static const enum PixelFormat pix_fmts_9bit[] = {
519     PIX_FMT_YUV420P9,
520     PIX_FMT_YUV444P9,
521     PIX_FMT_NONE
522 };
523 static const enum PixelFormat pix_fmts_10bit[] = {
524     PIX_FMT_YUV420P10,
525     PIX_FMT_YUV422P10,
526     PIX_FMT_YUV444P10,
527     PIX_FMT_NONE
528 };
529 static const enum PixelFormat pix_fmts_8bit_rgb[] = {
530 #ifdef X264_CSP_BGR
531     PIX_FMT_BGR24,
532     PIX_FMT_RGB24,
533 #endif
534     PIX_FMT_NONE
535 };
536
537 static av_cold void X264_init_static(AVCodec *codec)
538 {
539     if (x264_bit_depth == 8)
540         codec->pix_fmts = pix_fmts_8bit;
541     else if (x264_bit_depth == 9)
542         codec->pix_fmts = pix_fmts_9bit;
543     else if (x264_bit_depth == 10)
544         codec->pix_fmts = pix_fmts_10bit;
545 }
546
547 #define OFFSET(x) offsetof(X264Context, x)
548 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
549 static const AVOption options[] = {
550     { "preset",        "Set the encoding preset (cf. x264 --fullhelp)",   OFFSET(preset),        AV_OPT_TYPE_STRING, { .str = "medium" }, 0, 0, VE},
551     { "tune",          "Tune the encoding params (cf. x264 --fullhelp)",  OFFSET(tune),          AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
552     { "profile",       "Set profile restrictions (cf. x264 --fullhelp) ", OFFSET(profile),       AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
553     { "fastfirstpass", "Use fast settings when encoding first pass",      OFFSET(fastfirstpass), AV_OPT_TYPE_INT,    { 1 }, 0, 1, VE},
554     {"level", "Specify level (as defined by Annex A)", OFFSET(level), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
555     {"passlogfile", "Filename for 2 pass stats", OFFSET(stats), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
556     {"wpredp", "Weighted prediction for P-frames", OFFSET(wpredp), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
557     {"x264opts", "x264 options", OFFSET(x264opts), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
558     { "crf",           "Select the quality for constant quality mode",    OFFSET(crf),           AV_OPT_TYPE_FLOAT,  {-1 }, -1, FLT_MAX, VE },
559     { "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 },
560     { "qp",            "Constant quantization parameter rate control method",OFFSET(cqp),        AV_OPT_TYPE_INT,    {-1 }, -1, INT_MAX, VE },
561     { "aq-mode",       "AQ method",                                       OFFSET(aq_mode),       AV_OPT_TYPE_INT,    {-1 }, -1, INT_MAX, VE, "aq_mode"},
562     { "none",          NULL,                              0, AV_OPT_TYPE_CONST, {X264_AQ_NONE},         INT_MIN, INT_MAX, VE, "aq_mode" },
563     { "variance",      "Variance AQ (complexity mask)",   0, AV_OPT_TYPE_CONST, {X264_AQ_VARIANCE},     INT_MIN, INT_MAX, VE, "aq_mode" },
564     { "autovariance",  "Auto-variance AQ (experimental)", 0, AV_OPT_TYPE_CONST, {X264_AQ_AUTOVARIANCE}, INT_MIN, INT_MAX, VE, "aq_mode" },
565     { "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},
566     { "psy",           "Use psychovisual optimizations.",                 OFFSET(psy),           AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE },
567     { "psy-rd",        "Strength of psychovisual optimization, in <psy-rd>:<psy-trellis> format.", OFFSET(psy_rd), AV_OPT_TYPE_STRING,  {0 }, 0, 0, VE},
568     { "rc-lookahead",  "Number of frames to look ahead for frametype and ratecontrol", OFFSET(rc_lookahead), AV_OPT_TYPE_INT, {-1 }, -1, INT_MAX, VE },
569     { "weightb",       "Weighted prediction for B-frames.",               OFFSET(weightb),       AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE },
570     { "weightp",       "Weighted prediction analysis method.",            OFFSET(weightp),       AV_OPT_TYPE_INT,    {-1 }, -1, INT_MAX, VE, "weightp" },
571     { "none",          NULL, 0, AV_OPT_TYPE_CONST, {X264_WEIGHTP_NONE},   INT_MIN, INT_MAX, VE, "weightp" },
572     { "simple",        NULL, 0, AV_OPT_TYPE_CONST, {X264_WEIGHTP_SIMPLE}, INT_MIN, INT_MAX, VE, "weightp" },
573     { "smart",         NULL, 0, AV_OPT_TYPE_CONST, {X264_WEIGHTP_SMART},  INT_MIN, INT_MAX, VE, "weightp" },
574     { "ssim",          "Calculate and print SSIM stats.",                 OFFSET(ssim),          AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE },
575     { "intra-refresh", "Use Periodic Intra Refresh instead of IDR frames.",OFFSET(intra_refresh),AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE },
576     { "b-bias",        "Influences how often B-frames are used",          OFFSET(b_bias),        AV_OPT_TYPE_INT,    {INT_MIN}, INT_MIN, INT_MAX, VE },
577     { "b-pyramid",     "Keep some B-frames as references.",               OFFSET(b_pyramid),     AV_OPT_TYPE_INT,    {-1 }, -1, INT_MAX, VE, "b_pyramid" },
578     { "none",          NULL,                                  0, AV_OPT_TYPE_CONST, {X264_B_PYRAMID_NONE},   INT_MIN, INT_MAX, VE, "b_pyramid" },
579     { "strict",        "Strictly hierarchical pyramid",       0, AV_OPT_TYPE_CONST, {X264_B_PYRAMID_STRICT}, INT_MIN, INT_MAX, VE, "b_pyramid" },
580     { "normal",        "Non-strict (not Blu-ray compatible)", 0, AV_OPT_TYPE_CONST, {X264_B_PYRAMID_NORMAL}, INT_MIN, INT_MAX, VE, "b_pyramid" },
581     { "mixed-refs",    "One reference per partition, as opposed to one reference per macroblock", OFFSET(mixed_refs), AV_OPT_TYPE_INT, {-1}, -1, 1, VE },
582     { "8x8dct",        "High profile 8x8 transform.",                     OFFSET(dct8x8),        AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE},
583     { "fast-pskip",    NULL,                                              OFFSET(fast_pskip),    AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE},
584     { "aud",           "Use access unit delimiters.",                     OFFSET(aud),           AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE},
585     { "mbtree",        "Use macroblock tree ratecontrol.",                OFFSET(mbtree),        AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE},
586     { "deblock",       "Loop filter parameters, in <alpha:beta> form.",   OFFSET(deblock),       AV_OPT_TYPE_STRING, { 0 },  0, 0, VE},
587     { "cplxblur",      "Reduce fluctuations in QP (before curve compression)", OFFSET(cplxblur), AV_OPT_TYPE_FLOAT,  {-1 }, -1, FLT_MAX, VE},
588     { "partitions",    "A comma-separated list of partitions to consider. "
589                        "Possible values: p8x8, p4x4, b8x8, i8x8, i4x4, none, all", OFFSET(partitions), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
590     { "direct-pred",   "Direct MV prediction mode",                       OFFSET(direct_pred),   AV_OPT_TYPE_INT,    {-1 }, -1, INT_MAX, VE, "direct-pred" },
591     { "none",          NULL,      0,    AV_OPT_TYPE_CONST, { X264_DIRECT_PRED_NONE },     0, 0, VE, "direct-pred" },
592     { "spatial",       NULL,      0,    AV_OPT_TYPE_CONST, { X264_DIRECT_PRED_SPATIAL },  0, 0, VE, "direct-pred" },
593     { "temporal",      NULL,      0,    AV_OPT_TYPE_CONST, { X264_DIRECT_PRED_TEMPORAL }, 0, 0, VE, "direct-pred" },
594     { "auto",          NULL,      0,    AV_OPT_TYPE_CONST, { X264_DIRECT_PRED_AUTO },     0, 0, VE, "direct-pred" },
595     { "slice-max-size","Constant quantization parameter rate control method",OFFSET(slice_max_size),        AV_OPT_TYPE_INT,    {-1 }, -1, INT_MAX, 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 };