]> git.sesse.net Git - ffmpeg/blob - libavcodec/libx264.c
cavsdec: check dimensions being valid.
[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_packet2(ctx, 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             int i;
291             av_log(avctx, AV_LOG_ERROR, "Error setting preset/tune %s/%s.\n", x4->preset, x4->tune);
292             av_log(avctx, AV_LOG_INFO, "Possible presets:");
293             for (i = 0; x264_preset_names[i]; i++)
294                 av_log(avctx, AV_LOG_INFO, " %s", x264_preset_names[i]);
295             av_log(avctx, AV_LOG_INFO, "\n");
296             av_log(avctx, AV_LOG_INFO, "Possible tunes:");
297             for (i = 0; x264_tune_names[i]; i++)
298                 av_log(avctx, AV_LOG_INFO, " %s", x264_tune_names[i]);
299             av_log(avctx, AV_LOG_INFO, "\n");
300             return AVERROR(EINVAL);
301         }
302
303     if (avctx->level > 0)
304         x4->params.i_level_idc = avctx->level;
305
306     x4->params.pf_log               = X264_log;
307     x4->params.p_log_private        = avctx;
308     x4->params.i_log_level          = X264_LOG_DEBUG;
309     x4->params.i_csp                = convert_pix_fmt(avctx->pix_fmt);
310
311     OPT_STR("weightp", x4->wpredp);
312
313     if (avctx->bit_rate) {
314         x4->params.rc.i_bitrate   = avctx->bit_rate / 1000;
315         x4->params.rc.i_rc_method = X264_RC_ABR;
316     }
317     x4->params.rc.i_vbv_buffer_size = avctx->rc_buffer_size / 1000;
318     x4->params.rc.i_vbv_max_bitrate = avctx->rc_max_rate    / 1000;
319     x4->params.rc.b_stat_write      = avctx->flags & CODEC_FLAG_PASS1;
320     if (avctx->flags & CODEC_FLAG_PASS2) {
321         x4->params.rc.b_stat_read = 1;
322     } else {
323         if (x4->crf >= 0) {
324             x4->params.rc.i_rc_method   = X264_RC_CRF;
325             x4->params.rc.f_rf_constant = x4->crf;
326         } else if (x4->cqp >= 0) {
327             x4->params.rc.i_rc_method   = X264_RC_CQP;
328             x4->params.rc.i_qp_constant = x4->cqp;
329         }
330
331         if (x4->crf_max >= 0)
332             x4->params.rc.f_rf_constant_max = x4->crf_max;
333     }
334
335     if (avctx->rc_buffer_size && avctx->rc_initial_buffer_occupancy &&
336         (avctx->rc_initial_buffer_occupancy <= avctx->rc_buffer_size)) {
337         x4->params.rc.f_vbv_buffer_init =
338             (float)avctx->rc_initial_buffer_occupancy / avctx->rc_buffer_size;
339     }
340
341     OPT_STR("level", x4->level);
342
343     if(x4->x264opts){
344         const char *p= x4->x264opts;
345         while(p){
346             char param[256]={0}, val[256]={0};
347             if(sscanf(p, "%255[^:=]=%255[^:]", param, val) == 1){
348                 OPT_STR(param, "1");
349             }else
350                 OPT_STR(param, val);
351             p= strchr(p, ':');
352             p+=!!p;
353         }
354     }
355
356     if (avctx->me_method == ME_EPZS)
357         x4->params.analyse.i_me_method = X264_ME_DIA;
358     else if (avctx->me_method == ME_HEX)
359         x4->params.analyse.i_me_method = X264_ME_HEX;
360     else if (avctx->me_method == ME_UMH)
361         x4->params.analyse.i_me_method = X264_ME_UMH;
362     else if (avctx->me_method == ME_FULL)
363         x4->params.analyse.i_me_method = X264_ME_ESA;
364     else if (avctx->me_method == ME_TESA)
365         x4->params.analyse.i_me_method = X264_ME_TESA;
366
367     if (avctx->gop_size >= 0)
368         x4->params.i_keyint_max         = avctx->gop_size;
369     if (avctx->max_b_frames >= 0)
370         x4->params.i_bframe             = avctx->max_b_frames;
371     if (avctx->scenechange_threshold >= 0)
372         x4->params.i_scenecut_threshold = avctx->scenechange_threshold;
373     if (avctx->qmin >= 0)
374         x4->params.rc.i_qp_min          = avctx->qmin;
375     if (avctx->qmax >= 0)
376         x4->params.rc.i_qp_max          = avctx->qmax;
377     if (avctx->max_qdiff >= 0)
378         x4->params.rc.i_qp_step         = avctx->max_qdiff;
379     if (avctx->qblur >= 0)
380         x4->params.rc.f_qblur           = avctx->qblur;     /* temporally blur quants */
381     if (avctx->qcompress >= 0)
382         x4->params.rc.f_qcompress       = avctx->qcompress; /* 0.0 => cbr, 1.0 => constant qp */
383     if (avctx->refs >= 0)
384         x4->params.i_frame_reference    = avctx->refs;
385     if (avctx->trellis >= 0)
386         x4->params.analyse.i_trellis    = avctx->trellis;
387     if (avctx->me_range >= 0)
388         x4->params.analyse.i_me_range   = avctx->me_range;
389     if (avctx->noise_reduction >= 0)
390         x4->params.analyse.i_noise_reduction = avctx->noise_reduction;
391     if (avctx->me_subpel_quality >= 0)
392         x4->params.analyse.i_subpel_refine   = avctx->me_subpel_quality;
393     if (avctx->b_frame_strategy >= 0)
394         x4->params.i_bframe_adaptive = avctx->b_frame_strategy;
395     if (avctx->keyint_min >= 0)
396         x4->params.i_keyint_min = avctx->keyint_min;
397     if (avctx->coder_type >= 0)
398         x4->params.b_cabac = avctx->coder_type == FF_CODER_TYPE_AC;
399     if (avctx->me_cmp >= 0)
400         x4->params.analyse.b_chroma_me = avctx->me_cmp & FF_CMP_CHROMA;
401
402     if (x4->aq_mode >= 0)
403         x4->params.rc.i_aq_mode = x4->aq_mode;
404     if (x4->aq_strength >= 0)
405         x4->params.rc.f_aq_strength = x4->aq_strength;
406     PARSE_X264_OPT("psy-rd", psy_rd);
407     PARSE_X264_OPT("deblock", deblock);
408     PARSE_X264_OPT("partitions", partitions);
409     PARSE_X264_OPT("stats", stats);
410     if (x4->psy >= 0)
411         x4->params.analyse.b_psy  = x4->psy;
412     if (x4->rc_lookahead >= 0)
413         x4->params.rc.i_lookahead = x4->rc_lookahead;
414     if (x4->weightp >= 0)
415         x4->params.analyse.i_weighted_pred = x4->weightp;
416     if (x4->weightb >= 0)
417         x4->params.analyse.b_weighted_bipred = x4->weightb;
418     if (x4->cplxblur >= 0)
419         x4->params.rc.f_complexity_blur = x4->cplxblur;
420
421     if (x4->ssim >= 0)
422         x4->params.analyse.b_ssim = x4->ssim;
423     if (x4->intra_refresh >= 0)
424         x4->params.b_intra_refresh = x4->intra_refresh;
425     if (x4->b_bias != INT_MIN)
426         x4->params.i_bframe_bias              = x4->b_bias;
427     if (x4->b_pyramid >= 0)
428         x4->params.i_bframe_pyramid = x4->b_pyramid;
429     if (x4->mixed_refs >= 0)
430         x4->params.analyse.b_mixed_references = x4->mixed_refs;
431     if (x4->dct8x8 >= 0)
432         x4->params.analyse.b_transform_8x8    = x4->dct8x8;
433     if (x4->fast_pskip >= 0)
434         x4->params.analyse.b_fast_pskip       = x4->fast_pskip;
435     if (x4->aud >= 0)
436         x4->params.b_aud                      = x4->aud;
437     if (x4->mbtree >= 0)
438         x4->params.rc.b_mb_tree               = x4->mbtree;
439     if (x4->direct_pred >= 0)
440         x4->params.analyse.i_direct_mv_pred   = x4->direct_pred;
441
442     if (x4->slice_max_size >= 0)
443         x4->params.i_slice_max_size =  x4->slice_max_size;
444
445     if (x4->fastfirstpass)
446         x264_param_apply_fastfirstpass(&x4->params);
447
448     if (x4->profile)
449         if (x264_param_apply_profile(&x4->params, x4->profile) < 0) {
450             int i;
451             av_log(avctx, AV_LOG_ERROR, "Error setting profile %s.\n", x4->profile);
452             av_log(avctx, AV_LOG_INFO, "Possible profiles:");
453             for (i = 0; x264_profile_names[i]; i++)
454                 av_log(avctx, AV_LOG_INFO, " %s", x264_preset_names[i]);
455             av_log(avctx, AV_LOG_INFO, "\n");
456             return AVERROR(EINVAL);
457         }
458
459     x4->params.i_width          = avctx->width;
460     x4->params.i_height         = avctx->height;
461     av_reduce(&sw, &sh, avctx->sample_aspect_ratio.num, avctx->sample_aspect_ratio.den, 4096);
462     x4->params.vui.i_sar_width  = sw;
463     x4->params.vui.i_sar_height = sh;
464     x4->params.i_fps_num = x4->params.i_timebase_den = avctx->time_base.den;
465     x4->params.i_fps_den = x4->params.i_timebase_num = avctx->time_base.num;
466
467     x4->params.analyse.b_psnr = avctx->flags & CODEC_FLAG_PSNR;
468
469     x4->params.i_threads      = avctx->thread_count;
470     if (avctx->thread_type)
471         x4->params.b_sliced_threads = avctx->thread_type == FF_THREAD_SLICE;
472
473     x4->params.b_interlaced   = avctx->flags & CODEC_FLAG_INTERLACED_DCT;
474
475 //    x4->params.b_open_gop     = !(avctx->flags & CODEC_FLAG_CLOSED_GOP);
476
477     x4->params.i_slice_count  = avctx->slices;
478
479     x4->params.vui.b_fullrange = avctx->pix_fmt == PIX_FMT_YUVJ420P;
480
481     if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER)
482         x4->params.b_repeat_headers = 0;
483
484     // update AVCodecContext with x264 parameters
485     avctx->has_b_frames = x4->params.i_bframe ?
486         x4->params.i_bframe_pyramid ? 2 : 1 : 0;
487     if (avctx->max_b_frames < 0)
488         avctx->max_b_frames = 0;
489
490     avctx->bit_rate = x4->params.rc.i_bitrate*1000;
491
492     x4->enc = x264_encoder_open(&x4->params);
493     if (!x4->enc)
494         return -1;
495
496     avctx->coded_frame = &x4->out_pic;
497
498     if (avctx->flags & CODEC_FLAG_GLOBAL_HEADER) {
499         x264_nal_t *nal;
500         uint8_t *p;
501         int nnal, s, i;
502
503         s = x264_encoder_headers(x4->enc, &nal, &nnal);
504         avctx->extradata = p = av_malloc(s);
505
506         for (i = 0; i < nnal; i++) {
507             /* Don't put the SEI in extradata. */
508             if (nal[i].i_type == NAL_SEI) {
509                 av_log(avctx, AV_LOG_INFO, "%s\n", nal[i].p_payload+25);
510                 x4->sei_size = nal[i].i_payload;
511                 x4->sei      = av_malloc(x4->sei_size);
512                 memcpy(x4->sei, nal[i].p_payload, nal[i].i_payload);
513                 continue;
514             }
515             memcpy(p, nal[i].p_payload, nal[i].i_payload);
516             p += nal[i].i_payload;
517         }
518         avctx->extradata_size = p - avctx->extradata;
519     }
520
521     return 0;
522 }
523
524 static const enum PixelFormat pix_fmts_8bit[] = {
525     PIX_FMT_YUV420P,
526     PIX_FMT_YUVJ420P,
527     PIX_FMT_YUV422P,
528     PIX_FMT_YUV444P,
529     PIX_FMT_NONE
530 };
531 static const enum PixelFormat pix_fmts_9bit[] = {
532     PIX_FMT_YUV420P9,
533     PIX_FMT_YUV444P9,
534     PIX_FMT_NONE
535 };
536 static const enum PixelFormat pix_fmts_10bit[] = {
537     PIX_FMT_YUV420P10,
538     PIX_FMT_YUV422P10,
539     PIX_FMT_YUV444P10,
540     PIX_FMT_NONE
541 };
542 static const enum PixelFormat pix_fmts_8bit_rgb[] = {
543 #ifdef X264_CSP_BGR
544     PIX_FMT_BGR24,
545     PIX_FMT_RGB24,
546 #endif
547     PIX_FMT_NONE
548 };
549
550 static av_cold void X264_init_static(AVCodec *codec)
551 {
552     if (x264_bit_depth == 8)
553         codec->pix_fmts = pix_fmts_8bit;
554     else if (x264_bit_depth == 9)
555         codec->pix_fmts = pix_fmts_9bit;
556     else if (x264_bit_depth == 10)
557         codec->pix_fmts = pix_fmts_10bit;
558 }
559
560 #define OFFSET(x) offsetof(X264Context, x)
561 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
562 static const AVOption options[] = {
563     { "preset",        "Set the encoding preset (cf. x264 --fullhelp)",   OFFSET(preset),        AV_OPT_TYPE_STRING, { .str = "medium" }, 0, 0, VE},
564     { "tune",          "Tune the encoding params (cf. x264 --fullhelp)",  OFFSET(tune),          AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
565     { "profile",       "Set profile restrictions (cf. x264 --fullhelp) ", OFFSET(profile),       AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
566     { "fastfirstpass", "Use fast settings when encoding first pass",      OFFSET(fastfirstpass), AV_OPT_TYPE_INT,    { 1 }, 0, 1, VE},
567     {"level", "Specify level (as defined by Annex A)", OFFSET(level), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
568     {"passlogfile", "Filename for 2 pass stats", OFFSET(stats), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
569     {"wpredp", "Weighted prediction for P-frames", OFFSET(wpredp), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
570     {"x264opts", "x264 options", OFFSET(x264opts), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, VE},
571     { "crf",           "Select the quality for constant quality mode",    OFFSET(crf),           AV_OPT_TYPE_FLOAT,  {-1 }, -1, FLT_MAX, VE },
572     { "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 },
573     { "qp",            "Constant quantization parameter rate control method",OFFSET(cqp),        AV_OPT_TYPE_INT,    {-1 }, -1, INT_MAX, VE },
574     { "aq-mode",       "AQ method",                                       OFFSET(aq_mode),       AV_OPT_TYPE_INT,    {-1 }, -1, INT_MAX, VE, "aq_mode"},
575     { "none",          NULL,                              0, AV_OPT_TYPE_CONST, {X264_AQ_NONE},         INT_MIN, INT_MAX, VE, "aq_mode" },
576     { "variance",      "Variance AQ (complexity mask)",   0, AV_OPT_TYPE_CONST, {X264_AQ_VARIANCE},     INT_MIN, INT_MAX, VE, "aq_mode" },
577     { "autovariance",  "Auto-variance AQ (experimental)", 0, AV_OPT_TYPE_CONST, {X264_AQ_AUTOVARIANCE}, INT_MIN, INT_MAX, VE, "aq_mode" },
578     { "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},
579     { "psy",           "Use psychovisual optimizations.",                 OFFSET(psy),           AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE },
580     { "psy-rd",        "Strength of psychovisual optimization, in <psy-rd>:<psy-trellis> format.", OFFSET(psy_rd), AV_OPT_TYPE_STRING,  {0 }, 0, 0, VE},
581     { "rc-lookahead",  "Number of frames to look ahead for frametype and ratecontrol", OFFSET(rc_lookahead), AV_OPT_TYPE_INT, {-1 }, -1, INT_MAX, VE },
582     { "weightb",       "Weighted prediction for B-frames.",               OFFSET(weightb),       AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE },
583     { "weightp",       "Weighted prediction analysis method.",            OFFSET(weightp),       AV_OPT_TYPE_INT,    {-1 }, -1, INT_MAX, VE, "weightp" },
584     { "none",          NULL, 0, AV_OPT_TYPE_CONST, {X264_WEIGHTP_NONE},   INT_MIN, INT_MAX, VE, "weightp" },
585     { "simple",        NULL, 0, AV_OPT_TYPE_CONST, {X264_WEIGHTP_SIMPLE}, INT_MIN, INT_MAX, VE, "weightp" },
586     { "smart",         NULL, 0, AV_OPT_TYPE_CONST, {X264_WEIGHTP_SMART},  INT_MIN, INT_MAX, VE, "weightp" },
587     { "ssim",          "Calculate and print SSIM stats.",                 OFFSET(ssim),          AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE },
588     { "intra-refresh", "Use Periodic Intra Refresh instead of IDR frames.",OFFSET(intra_refresh),AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE },
589     { "b-bias",        "Influences how often B-frames are used",          OFFSET(b_bias),        AV_OPT_TYPE_INT,    {INT_MIN}, INT_MIN, INT_MAX, VE },
590     { "b-pyramid",     "Keep some B-frames as references.",               OFFSET(b_pyramid),     AV_OPT_TYPE_INT,    {-1 }, -1, INT_MAX, VE, "b_pyramid" },
591     { "none",          NULL,                                  0, AV_OPT_TYPE_CONST, {X264_B_PYRAMID_NONE},   INT_MIN, INT_MAX, VE, "b_pyramid" },
592     { "strict",        "Strictly hierarchical pyramid",       0, AV_OPT_TYPE_CONST, {X264_B_PYRAMID_STRICT}, INT_MIN, INT_MAX, VE, "b_pyramid" },
593     { "normal",        "Non-strict (not Blu-ray compatible)", 0, AV_OPT_TYPE_CONST, {X264_B_PYRAMID_NORMAL}, INT_MIN, INT_MAX, VE, "b_pyramid" },
594     { "mixed-refs",    "One reference per partition, as opposed to one reference per macroblock", OFFSET(mixed_refs), AV_OPT_TYPE_INT, {-1}, -1, 1, VE },
595     { "8x8dct",        "High profile 8x8 transform.",                     OFFSET(dct8x8),        AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE},
596     { "fast-pskip",    NULL,                                              OFFSET(fast_pskip),    AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE},
597     { "aud",           "Use access unit delimiters.",                     OFFSET(aud),           AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE},
598     { "mbtree",        "Use macroblock tree ratecontrol.",                OFFSET(mbtree),        AV_OPT_TYPE_INT,    {-1 }, -1, 1, VE},
599     { "deblock",       "Loop filter parameters, in <alpha:beta> form.",   OFFSET(deblock),       AV_OPT_TYPE_STRING, { 0 },  0, 0, VE},
600     { "cplxblur",      "Reduce fluctuations in QP (before curve compression)", OFFSET(cplxblur), AV_OPT_TYPE_FLOAT,  {-1 }, -1, FLT_MAX, VE},
601     { "partitions",    "A comma-separated list of partitions to consider. "
602                        "Possible values: p8x8, p4x4, b8x8, i8x8, i4x4, none, all", OFFSET(partitions), AV_OPT_TYPE_STRING, { 0 }, 0, 0, VE},
603     { "direct-pred",   "Direct MV prediction mode",                       OFFSET(direct_pred),   AV_OPT_TYPE_INT,    {-1 }, -1, INT_MAX, VE, "direct-pred" },
604     { "none",          NULL,      0,    AV_OPT_TYPE_CONST, { X264_DIRECT_PRED_NONE },     0, 0, VE, "direct-pred" },
605     { "spatial",       NULL,      0,    AV_OPT_TYPE_CONST, { X264_DIRECT_PRED_SPATIAL },  0, 0, VE, "direct-pred" },
606     { "temporal",      NULL,      0,    AV_OPT_TYPE_CONST, { X264_DIRECT_PRED_TEMPORAL }, 0, 0, VE, "direct-pred" },
607     { "auto",          NULL,      0,    AV_OPT_TYPE_CONST, { X264_DIRECT_PRED_AUTO },     0, 0, VE, "direct-pred" },
608     { "slice-max-size","Limit the size of each slice in bytes",           OFFSET(slice_max_size),AV_OPT_TYPE_INT,    {-1 }, -1, INT_MAX, VE },
609     { "stats",         "Filename for 2 pass stats",                       OFFSET(stats),         AV_OPT_TYPE_STRING, { 0 },  0,       0, VE },
610     { NULL },
611 };
612
613 static const AVClass class = {
614     .class_name = "libx264",
615     .item_name  = av_default_item_name,
616     .option     = options,
617     .version    = LIBAVUTIL_VERSION_INT,
618 };
619
620 static const AVClass rgbclass = {
621     .class_name = "libx264rgb",
622     .item_name  = av_default_item_name,
623     .option     = options,
624     .version    = LIBAVUTIL_VERSION_INT,
625 };
626
627 static const AVCodecDefault x264_defaults[] = {
628     { "b",                "0" },
629     { "bf",               "-1" },
630     { "flags2",           "0" },
631     { "g",                "-1" },
632     { "qmin",             "-1" },
633     { "qmax",             "-1" },
634     { "qdiff",            "-1" },
635     { "qblur",            "-1" },
636     { "qcomp",            "-1" },
637 //     { "rc_lookahead",     "-1" },
638     { "refs",             "-1" },
639     { "sc_threshold",     "-1" },
640     { "trellis",          "-1" },
641     { "nr",               "-1" },
642     { "me_range",         "-1" },
643     { "me_method",        "-1" },
644     { "subq",             "-1" },
645     { "b_strategy",       "-1" },
646     { "keyint_min",       "-1" },
647     { "coder",            "-1" },
648     { "cmp",              "-1" },
649     { "threads",          AV_STRINGIFY(X264_THREADS_AUTO) },
650     { "thread_type",      "0" },
651     { NULL },
652 };
653
654 AVCodec ff_libx264_encoder = {
655     .name             = "libx264",
656     .type             = AVMEDIA_TYPE_VIDEO,
657     .id               = AV_CODEC_ID_H264,
658     .priv_data_size   = sizeof(X264Context),
659     .init             = X264_init,
660     .encode2          = X264_frame,
661     .close            = X264_close,
662     .capabilities     = CODEC_CAP_DELAY | CODEC_CAP_AUTO_THREADS,
663     .long_name        = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10"),
664     .priv_class       = &class,
665     .defaults         = x264_defaults,
666     .init_static_data = X264_init_static,
667 };
668
669 AVCodec ff_libx264rgb_encoder = {
670     .name           = "libx264rgb",
671     .type           = AVMEDIA_TYPE_VIDEO,
672     .id             = AV_CODEC_ID_H264,
673     .priv_data_size = sizeof(X264Context),
674     .init           = X264_init,
675     .encode2        = X264_frame,
676     .close          = X264_close,
677     .capabilities   = CODEC_CAP_DELAY,
678     .long_name      = NULL_IF_CONFIG_SMALL("libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 RGB"),
679     .priv_class     = &rgbclass,
680     .defaults       = x264_defaults,
681     .pix_fmts       = pix_fmts_8bit_rgb,
682 };