]> git.sesse.net Git - vlc/blob - modules/codec/x264.c
Include vlc_plugin.h as needed
[vlc] / modules / codec / x264.c
1 /*****************************************************************************
2  * x264.c: h264 video encoder
3  *****************************************************************************
4  * Copyright (C) 2004-2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc/vlc.h>
32 #include <vlc_plugin.h>
33 #include <vlc_vout.h>
34 #include <vlc_sout.h>
35 #include <vlc_codec.h>
36
37 #ifdef PTW32_STATIC_LIB
38 #include <pthread.h>
39 #endif
40 #include <x264.h>
41
42 #define SOUT_CFG_PREFIX "sout-x264-"
43
44 /*****************************************************************************
45  * Module descriptor
46  *****************************************************************************/
47 static int  Open ( vlc_object_t * );
48 static void Close( vlc_object_t * );
49
50 /* Frame-type options */
51
52 #define KEYINT_TEXT N_("Maximum GOP size")
53 #define KEYINT_LONGTEXT N_( "Sets maximum interval between IDR-frames." \
54     "Larger values save bits, thus improving quality for a given bitrate at " \
55     "the cost of seeking precision." )
56
57 #define MIN_KEYINT_TEXT N_("Minimum GOP size")
58 #define MIN_KEYINT_LONGTEXT N_( "Sets minimum interval between IDR-frames. " \
59     "In H.264, I-frames do not necessarily bound a closed GOP because it is " \
60     "allowable for a P-frame to be predicted from more frames than just the " \
61     "one frame before it (also see reference frame option). Therefore, " \
62     "I-frames are not necessarily seekable. IDR-frames restrict subsequent " \
63     "P-frames from referring to any frame prior to the IDR-frame. \n" \
64     "If scenecuts appear within this interval, they are still encoded as " \
65     "I-frames, but do not start a new GOP." )
66
67 #define SCENE_TEXT N_("Extra I-frames aggressivity" )
68 #define SCENE_LONGTEXT N_( "Scene-cut detection. Controls how " \
69     "aggressively to insert extra I-frames. With small values of " \
70     "scenecut, the codec often has " \
71     "to force an I-frame when it would exceed keyint. " \
72     "Good values of scenecut may find a better location for the " \
73     "I-frame. Large values use more I-frames " \
74     "than necessary, thus wasting bits. -1 disables scene-cut detection, so " \
75     "I-frames are inserted only every other keyint frames, which probably " \
76     "leads to ugly encoding artifacts. Range 1 to 100." )
77
78 #if X264_BUILD >= 55 /* r607 */
79 #define PRESCENE_TEXT N_("Faster, less precise scenecut detection" )
80 #define PRESCENE_LONGTEXT N_( "Faster, less precise scenecut detection. " \
81     "Required and implied by multi-threading." )
82 #endif
83
84 #define BFRAMES_TEXT N_("B-frames between I and P")
85 #define BFRAMES_LONGTEXT N_( "Number of consecutive B-frames between I and " \
86     "P-frames. Range 1 to 16." )
87
88 #define B_ADAPT_TEXT N_("Adaptive B-frame decision")
89 #define B_ADAPT_LONGTEXT N_( "Force the specified number of " \
90     "consecutive B-frames to be used, except possibly before an I-frame." )
91
92 #define B_BIAS_TEXT N_("Influence (bias) B-frames usage")
93 #define B_BIAS_LONGTEXT N_( "Bias the choice to use B-frames. Positive values " \
94     "cause more B-frames, negative values cause less B-frames." )
95
96 #define BPYRAMID_TEXT N_("Keep some B-frames as references")
97 #define BPYRAMID_LONGTEXT N_( "Allows B-frames to be used as references for " \
98     "predicting other frames. Keeps the middle of 2+ consecutive B-frames " \
99     "as a reference, and reorders frame appropriately." )
100
101 #define CABAC_TEXT N_("CABAC")
102 #define CABAC_LONGTEXT N_( "CABAC (Context-Adaptive Binary Arithmetic "\
103     "Coding). Slightly slows down encoding and decoding, but should save " \
104     "10 to 15% bitrate." )
105
106 #define REF_TEXT N_("Number of reference frames")
107 #define REF_LONGTEXT N_( "Number of previous frames used as predictors. " \
108     "This is effective in Anime, but seems to make little difference in " \
109     "live-action source material. Some decoders are unable to deal with " \
110     "large frameref values. Range 1 to 16." )
111
112 #define NF_TEXT N_("Skip loop filter")
113 #define NF_LONGTEXT N_( "Deactivate the deblocking loop filter (decreases quality).")
114
115 #define FILTER_TEXT N_("Loop filter AlphaC0 and Beta parameters alpha:beta")
116 #define FILTER_LONGTEXT N_( "Loop filter AlphaC0 and Beta parameters. " \
117     "Range -6 to 6 for both alpha and beta parameters. -6 means light " \
118     "filter, 6 means strong.")
119  
120 #define LEVEL_TEXT N_("H.264 level")
121 #define LEVEL_LONGTEXT N_( "Specify H.264 level (as defined by Annex A " \
122     "of the standard). Levels are not enforced; it's up to the user to select " \
123     "a level compatible with the rest of the encoding options. Range 1 to 5.1 " \
124     "(10 to 51 is also allowed).")
125
126 /* In order to play an interlaced output stream encoded by x264, a decoder needs
127    mbaff support. r570 is using the 'mb' part and not 'aff' yet; so it's really
128    'pure-interlaced' mode */
129 #if X264_BUILD >= 51 /* r570 */
130 #define INTERLACED_TEXT N_("Interlaced mode")
131 #define INTERLACED_LONGTEXT N_( "Pure-interlaced mode.")
132 #endif
133
134 /* Ratecontrol */
135
136 #define QP_TEXT N_("Set QP")
137 #define QP_LONGTEXT N_( "This selects the quantizer to use. " \
138     "Lower values result in better fidelity, but higher bitrates. 26 is a " \
139     "good default value. Range 0 (lossless) to 51." )
140
141 #define CRF_TEXT N_("Quality-based VBR")
142 #define CRF_LONGTEXT N_( "1-pass Quality-based VBR. Range 0 to 51." )
143
144 #define QPMIN_TEXT N_("Min QP")
145 #define QPMIN_LONGTEXT N_( "Minimum quantizer parameter. 15 to 35 seems to " \
146     "be a useful range." )
147
148 #define QPMAX_TEXT N_("Max QP")
149 #define QPMAX_LONGTEXT N_( "Maximum quantizer parameter." )
150
151 #define QPSTEP_TEXT N_("Max QP step")
152 #define QPSTEP_LONGTEXT N_( "Max QP step between frames.")
153
154 #define RATETOL_TEXT N_("Average bitrate tolerance")
155 #define RATETOL_LONGTEXT N_( "Allowed variance in average " \
156     "bitrate (in kbits/s).")
157
158 #define VBV_MAXRATE_TEXT N_("Max local bitrate")
159 #define VBV_MAXRATE_LONGTEXT N_( "Sets a maximum local bitrate (in kbits/s).")
160
161 #define VBV_BUFSIZE_TEXT N_("VBV buffer")
162 #define VBV_BUFSIZE_LONGTEXT N_( "Averaging period for the maximum " \
163     "local bitrate (in kbits).")
164
165 #define VBV_INIT_TEXT N_("Initial VBV buffer occupancy")
166 #define VBV_INIT_LONGTEXT N_( "Sets the initial buffer occupancy as a " \
167     "fraction of the buffer size. Range 0.0 to 1.0.")
168
169 #if X264_BUILD >= 59
170 #define AQ_MODE_TEXT N_("How AQ distributes bits")
171 #define AQ_MODE_LONGTEXT N_("Defines bitdistribution mode for AQ, default 2\n" \
172         " - 0: Disabled\n"\
173         " - 1: Avoid moving bits between frames\n"\
174         " - 2: Move bits between frames")
175
176 #define AQ_STRENGTH_TEXT N_("Strength of AQ")
177 #define AQ_STRENGTH_LONGTEXT N_("Strength to reduce blocking and blurring in flat\n"\
178         "and textured areas, default 1.0 recommented to be between 0..2\n"\
179         " - 0.5: weak AQ\n"\
180         " - 1.5: strong AQ")
181 #endif
182
183 /* IP Ratio < 1 is technically valid but should never improve quality */
184 #define IPRATIO_TEXT N_("QP factor between I and P")
185 #define IPRATIO_LONGTEXT N_( "QP factor between I and P. Range 1.0 to 2.0.")
186
187 /* PB ratio < 1 is not valid and breaks ratecontrol */
188 #define PBRATIO_TEXT N_("QP factor between P and B")
189 #define PBRATIO_LONGTEXT N_( "QP factor between P and B. Range 1.0 to 2.0.")
190
191 #define CHROMA_QP_OFFSET_TEXT N_("QP difference between chroma and luma")
192 #define CHROMA_QP_OFFSET_LONGTEXT N_( "QP difference between chroma and luma.")
193
194 #define PASS_TEXT N_("Multipass ratecontrol")
195 #define PASS_LONGTEXT N_( "Multipass ratecontrol:\n" \
196     " - 1: First pass, creates stats file\n" \
197     " - 2: Last pass, does not overwrite stats file\n" \
198     " - 3: Nth pass, overwrites stats file\n" )
199
200 #define QCOMP_TEXT N_("QP curve compression")
201 #define QCOMP_LONGTEXT N_( "QP curve compression. Range 0.0 (CBR) to 1.0 (QCP).")
202
203 #define CPLXBLUR_TEXT N_("Reduce fluctuations in QP")
204 #define CPLXBLUR_LONGTEXT N_( "This reduces the fluctuations in QP " \
205     "before curve compression. Temporally blurs complexity.")
206
207 #define QBLUR_TEXT N_("Reduce fluctuations in QP")
208 #define QBLUR_LONGTEXT N_( "This reduces the fluctations in QP " \
209     "after curve compression. Temporally blurs quants.")
210
211 /* Analysis */
212
213 #define ANALYSE_TEXT N_("Partitions to consider")
214 #define ANALYSE_LONGTEXT N_( "Partitions to consider in analyse mode: \n" \
215     " - none  : \n" \
216     " - fast  : i4x4\n" \
217     " - normal: i4x4,p8x8,(i8x8)\n" \
218     " - slow  : i4x4,p8x8,(i8x8),b8x8\n" \
219     " - all   : i4x4,p8x8,(i8x8),b8x8,p4x4\n" \
220     "(p4x4 requires p8x8. i8x8 requires 8x8dct).")
221
222 #define DIRECT_PRED_TEXT N_("Direct MV prediction mode")
223 #define DIRECT_PRED_LONGTEXT N_( "Direct MV prediction mode.")
224
225 #if X264_BUILD >= 52 /* r573 */
226 #define DIRECT_PRED_SIZE_TEXT N_("Direct prediction size")
227 #define DIRECT_PRED_SIZE_LONGTEXT N_( "Direct prediction size: "\
228     " -  0: 4x4\n" \
229     " -  1: 8x8\n" \
230     " - -1: smallest possible according to level\n" )
231 #endif
232
233 #define WEIGHTB_TEXT N_("Weighted prediction for B-frames")
234 #define WEIGHTB_LONGTEXT N_( "Weighted prediction for B-frames.")
235
236 #define ME_TEXT N_("Integer pixel motion estimation method")
237 #if X264_BUILD >= 58 /* r728 */
238 #define ME_LONGTEXT N_( "Selects the motion estimation algorithm: "\
239     " - dia: diamond search, radius 1 (fast)\n" \
240     " - hex: hexagonal search, radius 2\n" \
241     " - umh: uneven multi-hexagon search (better but slower)\n" \
242     " - esa: exhaustive search (extremely slow, primarily for testing)\n" \
243     " - tesa: hadamard exhaustive search (extremely slow, primarily for testing)\n" )
244 #else
245 #define ME_LONGTEXT N_( "Selects the motion estimation algorithm: "\
246     " - dia: diamond search, radius 1 (fast)\n" \
247     " - hex: hexagonal search, radius 2\n" \
248     " - umh: uneven multi-hexagon search (better but slower)\n" \
249     " - esa: exhaustive search (extremely slow, primarily for testing)\n" )
250 #endif
251
252 #if X264_BUILD >= 24
253 #define MERANGE_TEXT N_("Maximum motion vector search range")
254 #define MERANGE_LONGTEXT N_( "Maximum distance to search for " \
255     "motion estimation, measured from predicted position(s). " \
256     "Default of 16 is good for most footage, high motion sequences may " \
257     "benefit from settings between 24 and 32. Range 0 to 64." )
258
259 #define MVRANGE_TEXT N_("Maximum motion vector length")
260 #define MVRANGE_LONGTEXT N_( "Maximum motion vector length in pixels. " \
261     "-1 is automatic, based on level." )
262 #endif
263
264 #if X264_BUILD >= 55 /* r607 */
265 #define MVRANGE_THREAD_TEXT N_("Minimum buffer space between threads")
266 #define MVRANGE_THREAD_LONGTEXT N_( "Minimum buffer space between threads. " \
267     "-1 is automatic, based on number of threads." )
268 #endif
269
270 #define SUBME_TEXT N_("Subpixel motion estimation and partition decision " \
271     "quality")
272 #if X264_BUILD >= 46 /* r477 */
273 #define SUBME_MAX 7
274 #define SUBME_LONGTEXT N_( "This parameter controls quality versus speed " \
275     "tradeoffs involved in the motion estimation decision process " \
276     "(lower = quicker and higher = better quality). Range 1 to 7." )
277 #elif X264_BUILD >= 30 /* r262 */
278 #define SUBME_MAX 6
279 #define SUBME_LONGTEXT N_( "This parameter controls quality versus speed " \
280     "tradeoffs involved in the motion estimation decision process " \
281     "(lower = quicker and higher = better quality). Range 1 to 6." )
282 #else
283 #define SUBME_MAX 5
284 #define SUBME_LONGTEXT N_( "This parameter controls quality versus speed " \
285     "tradeoffs involved in the motion estimation decision process " \
286     "(lower = quicker and higher = better quality). Range 1 to 5." )
287 #endif
288
289 #define B_RDO_TEXT N_("RD based mode decision for B-frames")
290 #define B_RDO_LONGTEXT N_( "RD based mode decision for B-frames. This " \
291     "requires subme 6 (or higher).")
292
293 #define MIXED_REFS_TEXT N_("Decide references on a per partition basis")
294 #define MIXED_REFS_LONGTEXT N_( "Allows each 8x8 or 16x8 partition to " \
295     "independently select a reference frame, as opposed to only one ref " \
296     "per macroblock." )
297
298 #define CHROMA_ME_TEXT N_("Chroma in motion estimation")
299 #define CHROMA_ME_LONGTEXT N_( "Chroma ME for subpel and mode decision in " \
300     "P-frames.")
301
302 #define BIME_TEXT N_("Jointly optimize both MVs in B-frames")
303 #define BIME_LONGTEXT N_( "Joint bidirectional motion refinement.")
304
305 #define TRANSFORM_8X8DCT_TEXT N_("Adaptive spatial transform size")
306 #define TRANSFORM_8X8DCT_LONGTEXT N_( \
307     "SATD-based decision for 8x8 transform in inter-MBs.")
308
309 #define TRELLIS_TEXT N_("Trellis RD quantization" )
310 #define TRELLIS_LONGTEXT N_( "Trellis RD quantization: \n" \
311     " - 0: disabled\n" \
312     " - 1: enabled only on the final encode of a MB\n" \
313     " - 2: enabled on all mode decisions\n" \
314     "This requires CABAC." )
315
316 #define FAST_PSKIP_TEXT N_("Early SKIP detection on P-frames")
317 #define FAST_PSKIP_LONGTEXT N_( "Early SKIP detection on P-frames.")
318
319 #define DCT_DECIMATE_TEXT N_("Coefficient thresholding on P-frames")
320 #define DCT_DECIMATE_LONGTEXT N_( "Coefficient thresholding on P-frames." \
321     "Eliminate dct blocks containing only a small single coefficient.")
322
323 /* Noise reduction 1 is too weak to measure, suggest at least 10 */
324 #define NR_TEXT N_("Noise reduction")
325 #define NR_LONGTEXT N_( "Dct-domain noise reduction. Adaptive pseudo-deadzone. " \
326     "10 to 1000 seems to be a useful range." )
327
328 #if X264_BUILD >= 52 /* r573 */
329 #define DEADZONE_INTER_TEXT N_("Inter luma quantization deadzone")
330 #define DEADZONE_INTER_LONGTEXT N_( "Set the size of the inter luma quantization deadzone. " \
331     "Range 0 to 32." )
332
333 #define DEADZONE_INTRA_TEXT N_("Intra luma quantization deadzone")
334 #define DEADZONE_INTRA_LONGTEXT N_( "Set the size of the intra luma quantization deadzone. " \
335     "Range 0 to 32." )
336 #endif
337
338 /* Input/Output */
339
340 #if X264_BUILD >= 55 /* r607 */
341 #define NON_DETERMINISTIC_TEXT N_("Non-deterministic optimizations when threaded")
342 #define NON_DETERMINISTIC_LONGTEXT N_( "Slightly improve quality of SMP, " \
343     "at the cost of repeatability.")
344 #endif
345
346 #define ASM_TEXT N_("CPU optimizations")
347 #define ASM_LONGTEXT N_( "Use assembler CPU optimizations.")
348
349 #define STATS_TEXT N_("Filename for 2 pass stats file")
350 #define STATS_LONGTEXT N_( "Filename for 2 pass stats file for multi-pass encoding.")
351
352 #define PSNR_TEXT N_("PSNR computation")
353 #define PSNR_LONGTEXT N_( "Compute and print PSNR stats. This has no effect on " \
354     "the actual encoding quality." )
355
356 #define SSIM_TEXT N_("SSIM computation")
357 #define SSIM_LONGTEXT N_( "Compute and print SSIM stats. This has no effect on " \
358     "the actual encoding quality." )
359
360 #define QUIET_TEXT N_("Quiet mode")
361 #define QUIET_LONGTEXT N_( "Quiet mode.")
362
363 #define VERBOSE_TEXT N_("Statistics")
364 #define VERBOSE_LONGTEXT N_( "Print stats for each frame.")
365
366 #if X264_BUILD >= 47 /* r518 */
367 #define SPS_ID_TEXT N_("SPS and PPS id numbers")
368 #define SPS_ID_LONGTEXT N_( "Set SPS and PPS id numbers to allow concatenating " \
369     "streams with different settings.")
370 #endif
371
372 #define AUD_TEXT N_("Access unit delimiters")
373 #define AUD_LONGTEXT N_( "Generate access unit delimiter NAL units.")
374
375 #if X264_BUILD >= 24 && X264_BUILD < 58
376 static const char *enc_me_list[] =
377   { "dia", "hex", "umh", "esa" };
378 static const char *enc_me_list_text[] =
379   { N_("dia"), N_("hex"), N_("umh"), N_("esa") };
380 #endif
381
382 #if X264_BUILD >= 58 /* r728 */
383 static const char *enc_me_list[] =
384   { "dia", "hex", "umh", "esa", "tesa" };
385 static const char *enc_me_list_text[] =
386   { N_("dia"), N_("hex"), N_("umh"), N_("esa"), N_("tesa") };
387 #endif
388
389 static const char *enc_analyse_list[] =
390   { "none", "fast", "normal", "slow", "all" };
391 static const char *enc_analyse_list_text[] =
392   { N_("none"), N_("fast"), N_("normal"), N_("slow"), N_("all") };
393
394 #if X264_BUILD >= 45 /* r457 */
395 static const char *direct_pred_list[] =
396   { "none", "spatial", "temporal", "auto" };
397 static const char *direct_pred_list_text[] =
398   { N_("none"), N_("spatial"), N_("temporal"), N_("auto") };
399 #else
400 static const char *direct_pred_list[] =
401   { "none", "spatial", "temporal" };
402 static const char *direct_pred_list_text[] =
403   { N_("none"), N_("spatial"), N_("temporal") };
404 #endif
405
406 vlc_module_begin();
407     set_description( _("H.264/MPEG4 AVC encoder (using x264 library)"));
408     set_capability( "encoder", 200 );
409     set_callbacks( Open, Close );
410     set_category( CAT_INPUT );
411     set_subcategory( SUBCAT_INPUT_VCODEC );
412
413 /* Frame-type options */
414
415     add_integer( SOUT_CFG_PREFIX "keyint", 250, NULL, KEYINT_TEXT,
416                  KEYINT_LONGTEXT, false );
417
418     add_integer( SOUT_CFG_PREFIX "min-keyint", 25, NULL, MIN_KEYINT_TEXT,
419                  MIN_KEYINT_LONGTEXT, false );
420         add_deprecated_alias( SOUT_CFG_PREFIX "keyint-min" ); /* Deprecated since 0.8.5 */
421
422     add_integer( SOUT_CFG_PREFIX "scenecut", 40, NULL, SCENE_TEXT,
423                  SCENE_LONGTEXT, false );
424         change_integer_range( -1, 100 );
425
426 #if X264_BUILD >= 55 /* r607 */
427     add_bool( SOUT_CFG_PREFIX "pre-scenecut", 0, NULL, PRESCENE_TEXT,
428               PRESCENE_LONGTEXT, false );
429 #endif
430
431     add_integer( SOUT_CFG_PREFIX "bframes", 0, NULL, BFRAMES_TEXT,
432                  BFRAMES_LONGTEXT, false );
433         change_integer_range( 0, 16 );
434
435 #if X264_BUILD >= 0x0013 /* r137 */
436     add_bool( SOUT_CFG_PREFIX "b-adapt", 1, NULL, B_ADAPT_TEXT,
437               B_ADAPT_LONGTEXT, false );
438
439     add_integer( SOUT_CFG_PREFIX "b-bias", 0, NULL, B_BIAS_TEXT,
440                  B_BIAS_LONGTEXT, false );
441         change_integer_range( -100, 100 );
442 #endif
443
444     add_bool( SOUT_CFG_PREFIX "bpyramid", 0, NULL, BPYRAMID_TEXT,
445               BPYRAMID_LONGTEXT, false );
446
447     add_bool( SOUT_CFG_PREFIX "cabac", 1, NULL, CABAC_TEXT, CABAC_LONGTEXT,
448               false );
449
450     add_integer( SOUT_CFG_PREFIX "ref", 1, NULL, REF_TEXT,
451                  REF_LONGTEXT, false );
452         change_integer_range( 1, 16 );
453         add_deprecated_alias( SOUT_CFG_PREFIX "frameref" ); /* Deprecated since 0.8.5 */
454
455     add_bool( SOUT_CFG_PREFIX "nf", 0, NULL, NF_TEXT,
456               NF_LONGTEXT, false );
457         add_deprecated_alias( SOUT_CFG_PREFIX "loopfilter" ); /* Deprecated since 0.8.5 */
458
459     add_string( SOUT_CFG_PREFIX "deblock", "0:0", NULL, FILTER_TEXT,
460                  FILTER_LONGTEXT, false );
461         add_deprecated_alias( SOUT_CFG_PREFIX "filter" ); /* Deprecated since 0.8.6 */
462
463     add_string( SOUT_CFG_PREFIX "level", "5.1", NULL, LEVEL_TEXT,
464                LEVEL_LONGTEXT, false );
465
466 #if X264_BUILD >= 51 /* r570 */
467     add_bool( SOUT_CFG_PREFIX "interlaced", 0, NULL, INTERLACED_TEXT, INTERLACED_LONGTEXT,
468               false );
469 #endif
470
471 /* Ratecontrol */
472
473     add_integer( SOUT_CFG_PREFIX "qp", 26, NULL, QP_TEXT, QP_LONGTEXT,
474                  false );
475         change_integer_range( 0, 51 ); /* QP 0 -> lossless encoding */
476
477 #if X264_BUILD >= 37 /* r334 */
478     add_integer( SOUT_CFG_PREFIX "crf", 0, NULL, CRF_TEXT,
479                  CRF_LONGTEXT, false );
480         change_integer_range( 0, 51 );
481 #endif
482
483     add_integer( SOUT_CFG_PREFIX "qpmin", 10, NULL, QPMIN_TEXT,
484                  QPMIN_LONGTEXT, false );
485         change_integer_range( 0, 51 );
486         add_deprecated_alias( SOUT_CFG_PREFIX "qp-min" ); /* Deprecated since 0.8.5 */
487
488     add_integer( SOUT_CFG_PREFIX "qpmax", 51, NULL, QPMAX_TEXT,
489                  QPMAX_LONGTEXT, false );
490         change_integer_range( 0, 51 );
491         add_deprecated_alias( SOUT_CFG_PREFIX "qp-max" ); /* Deprecated since 0.8.5 */
492
493     add_integer( SOUT_CFG_PREFIX "qpstep", 4, NULL, QPSTEP_TEXT,
494                  QPSTEP_LONGTEXT, false );
495         change_integer_range( 0, 51 );
496
497     add_float( SOUT_CFG_PREFIX "ratetol", 1.0, NULL, RATETOL_TEXT,
498                RATETOL_LONGTEXT, false );
499         change_float_range( 0, 100 );
500         add_deprecated_alias( SOUT_CFG_PREFIX "tolerance" ); /* Deprecated since 0.8.5 */
501
502     add_integer( SOUT_CFG_PREFIX "vbv-maxrate", 0, NULL, VBV_MAXRATE_TEXT,
503                  VBV_MAXRATE_LONGTEXT, false );
504
505     add_integer( SOUT_CFG_PREFIX "vbv-bufsize", 0, NULL, VBV_BUFSIZE_TEXT,
506                  VBV_BUFSIZE_LONGTEXT, false );
507
508     add_float( SOUT_CFG_PREFIX "vbv-init", 0.9, NULL, VBV_INIT_TEXT,
509                VBV_INIT_LONGTEXT, false );
510         change_float_range( 0, 1 );
511
512     add_float( SOUT_CFG_PREFIX "ipratio", 1.40, NULL, IPRATIO_TEXT,
513                IPRATIO_LONGTEXT, false );
514         change_float_range( 1, 2 );
515
516     add_float( SOUT_CFG_PREFIX "pbratio", 1.30, NULL, PBRATIO_TEXT,
517                PBRATIO_LONGTEXT, false );
518         change_float_range( 1, 2 );
519
520 #if X264_BUILD >= 23 /* r190 */
521     add_integer( SOUT_CFG_PREFIX "chroma-qp-offset", 0, NULL, CHROMA_QP_OFFSET_TEXT,
522                  CHROMA_QP_OFFSET_LONGTEXT, false );
523 #endif
524
525     add_integer( SOUT_CFG_PREFIX "pass", 0, NULL, PASS_TEXT,
526                  PASS_LONGTEXT, false );
527         change_integer_range( 0, 3 );
528
529     add_float( SOUT_CFG_PREFIX "qcomp", 0.60, NULL, QCOMP_TEXT,
530                QCOMP_LONGTEXT, false );
531         change_float_range( 0, 1 );
532
533     add_float( SOUT_CFG_PREFIX "cplxblur", 20.0, NULL, CPLXBLUR_TEXT,
534                CPLXBLUR_LONGTEXT, false );
535
536     add_float( SOUT_CFG_PREFIX "qblur", 0.5, NULL, QBLUR_TEXT,
537                QBLUR_LONGTEXT, false );
538 #if X264_BUILD >= 59
539     add_integer( SOUT_CFG_PREFIX "aq-mode", 2, NULL, AQ_MODE_TEXT,
540                  AQ_MODE_LONGTEXT, false );
541          change_integer_range( 0, 2 );
542     add_float( SOUT_CFG_PREFIX "aq-strength", 1.0, NULL, AQ_STRENGTH_TEXT,
543                AQ_STRENGTH_LONGTEXT, false );
544 #endif
545
546 /* Analysis */
547
548     /* x264 partitions = none (default). set at least "normal" mode. */
549     add_string( SOUT_CFG_PREFIX "partitions", "normal", NULL, ANALYSE_TEXT,
550                 ANALYSE_LONGTEXT, false );
551         change_string_list( enc_analyse_list, enc_analyse_list_text, 0 );
552         add_deprecated_alias( SOUT_CFG_PREFIX "analyse" ); /* Deprecated since 0.8.6 */
553
554     add_string( SOUT_CFG_PREFIX "direct", "spatial", NULL, DIRECT_PRED_TEXT,
555                 DIRECT_PRED_LONGTEXT, false );
556         change_string_list( direct_pred_list, direct_pred_list_text, 0 );
557
558 #if X264_BUILD >= 52 /* r573 */
559     add_integer( SOUT_CFG_PREFIX "direct-8x8", -1, NULL, DIRECT_PRED_SIZE_TEXT,
560                  DIRECT_PRED_SIZE_LONGTEXT, false );
561         change_integer_range( -1, 1 );
562 #endif
563
564 #if X264_BUILD >= 0x0012 /* r134 */
565     add_bool( SOUT_CFG_PREFIX "weightb", 0, NULL, WEIGHTB_TEXT,
566               WEIGHTB_LONGTEXT, false );
567 #endif
568
569 #if X264_BUILD >= 24 /* r221 */
570     add_string( SOUT_CFG_PREFIX "me", "hex", NULL, ME_TEXT,
571                 ME_LONGTEXT, false );
572         change_string_list( enc_me_list, enc_me_list_text, 0 );
573
574     add_integer( SOUT_CFG_PREFIX "merange", 16, NULL, MERANGE_TEXT,
575                  MERANGE_LONGTEXT, false );
576         change_integer_range( 1, 64 );
577 #endif
578
579     add_integer( SOUT_CFG_PREFIX "mvrange", -1, NULL, MVRANGE_TEXT,
580                  MVRANGE_LONGTEXT, false );
581
582 #if X264_BUILD >= 55 /* r607 */
583     add_integer( SOUT_CFG_PREFIX "mvrange-thread", -1, NULL, MVRANGE_THREAD_TEXT,
584                  MVRANGE_THREAD_LONGTEXT, false );
585 #endif
586
587     add_integer( SOUT_CFG_PREFIX "subme", 5, NULL, SUBME_TEXT,
588                  SUBME_LONGTEXT, false );
589         change_integer_range( 1, SUBME_MAX );
590         add_deprecated_alias( SOUT_CFG_PREFIX "subpel" ); /* Deprecated since 0.8.5 */
591
592 #if X264_BUILD >= 41 /* r368 */
593     add_bool( SOUT_CFG_PREFIX "b-rdo", 0, NULL, B_RDO_TEXT,
594               B_RDO_LONGTEXT, false );
595 #endif
596
597 #if X264_BUILD >= 36 /* r318 */
598     add_bool( SOUT_CFG_PREFIX "mixed-refs", 0, NULL, MIXED_REFS_TEXT,
599               MIXED_REFS_LONGTEXT, false );
600 #endif
601
602 #if X264_BUILD >= 23 /* r171 */
603     add_bool( SOUT_CFG_PREFIX "chroma-me", 1, NULL, CHROMA_ME_TEXT,
604               CHROMA_ME_LONGTEXT, false );
605 #endif
606
607 #if X264_BUILD >= 43 /* r390 */
608     add_bool( SOUT_CFG_PREFIX "bime", 0, NULL, BIME_TEXT,
609               BIME_LONGTEXT, false );
610 #endif
611
612 #if X264_BUILD >= 30 /* r251 */
613     add_bool( SOUT_CFG_PREFIX "8x8dct", 0, NULL, TRANSFORM_8X8DCT_TEXT,
614               TRANSFORM_8X8DCT_LONGTEXT, false );
615 #endif
616
617 #if X264_BUILD >= 39 /* r360 */
618     add_integer( SOUT_CFG_PREFIX "trellis", 0, NULL, TRELLIS_TEXT,
619                  TRELLIS_LONGTEXT, false );
620         change_integer_range( 0, 2 );
621 #endif
622
623 #if X264_BUILD >= 42 /* r384 */
624     add_bool( SOUT_CFG_PREFIX "fast-pskip", 1, NULL, FAST_PSKIP_TEXT,
625               FAST_PSKIP_LONGTEXT, false );
626 #endif
627
628 #if X264_BUILD >= 46 /* r503 */
629     add_bool( SOUT_CFG_PREFIX "dct-decimate", 1, NULL, DCT_DECIMATE_TEXT,
630               DCT_DECIMATE_LONGTEXT, false );
631 #endif
632
633 #if X264_BUILD >= 44 /* r398 */
634     add_integer( SOUT_CFG_PREFIX "nr", 0, NULL, NR_TEXT,
635                  NR_LONGTEXT, false );
636         change_integer_range( 0, 1000 );
637 #endif
638
639 #if X264_BUILD >= 52 /* r573 */
640     add_integer( SOUT_CFG_PREFIX "deadzone-inter", 21, NULL, DEADZONE_INTER_TEXT,
641                  DEADZONE_INTRA_LONGTEXT, false );
642         change_integer_range( 0, 32 );
643
644     add_integer( SOUT_CFG_PREFIX "deadzone-intra", 11, NULL, DEADZONE_INTRA_TEXT,
645                  DEADZONE_INTRA_LONGTEXT, false );
646         change_integer_range( 0, 32 );
647 #endif
648
649 /* Input/Output */
650
651 #if X264_BUILD >= 55 /* r607 */
652     add_bool( SOUT_CFG_PREFIX "non-deterministic", 0, NULL, NON_DETERMINISTIC_TEXT,
653               NON_DETERMINISTIC_LONGTEXT, false );
654 #endif
655
656     add_bool( SOUT_CFG_PREFIX "asm", 1, NULL, ASM_TEXT,
657               ASM_LONGTEXT, false );
658
659     /* x264 psnr = 1 (default). disable PSNR computation for speed. */
660     add_bool( SOUT_CFG_PREFIX "psnr", 0, NULL, PSNR_TEXT,
661               PSNR_LONGTEXT, false );
662
663 #if X264_BUILD >= 50 /* r554 */
664     /* x264 ssim = 1 (default). disable SSIM computation for speed. */
665     add_bool( SOUT_CFG_PREFIX "ssim", 0, NULL, SSIM_TEXT,
666               SSIM_LONGTEXT, false );
667 #endif
668
669     add_bool( SOUT_CFG_PREFIX "quiet", 0, NULL, QUIET_TEXT,
670               QUIET_LONGTEXT, false );
671
672 #if X264_BUILD >= 47 /* r518 */
673     add_integer( SOUT_CFG_PREFIX "sps-id", 0, NULL, SPS_ID_TEXT,
674                  SPS_ID_LONGTEXT, false );
675 #endif
676
677     add_bool( SOUT_CFG_PREFIX "aud", 0, NULL, AUD_TEXT,
678               AUD_LONGTEXT, false );
679
680 #if X264_BUILD >= 0x000e /* r81 */
681     add_bool( SOUT_CFG_PREFIX "verbose", 0, NULL, VERBOSE_TEXT,
682               VERBOSE_LONGTEXT, false );
683 #endif
684
685     add_string( SOUT_CFG_PREFIX "stats", "x264_2pass.log", NULL, STATS_TEXT,
686                 STATS_LONGTEXT, false );
687
688 vlc_module_end();
689
690 /*****************************************************************************
691  * Local prototypes
692  *****************************************************************************/
693 static const char *ppsz_sout_options[] = {
694     "8x8dct", "analyse", "asm", "aud", "bframes", "bime", "bpyramid",
695     "b-adapt", "b-bias", "b-rdo", "cabac", "chroma-me", "chroma-qp-offset",
696     "cplxblur", "crf", "dct-decimate", "deadzone-inter", "deadzone-intra",
697     "deblock", "direct", "direct-8x8", "filter", "fast-pskip", "frameref",
698     "interlaced", "ipratio", "keyint", "keyint-min", "level", "loopfilter",
699     "me", "merange", "min-keyint", "mixed-refs", "mvrange", "mvrange-thread",
700     "nf", "non-deterministic", "nr", "partitions", "pass", "pbratio",
701     "pre-scenecut", "psnr", "qblur", "qp", "qcomp", "qpstep", "qpmax",
702     "qpmin", "qp-max", "qp-min", "quiet", "ratetol", "ref", "scenecut",
703     "sps-id", "ssim", "stats", "subme", "subpel", "tolerance", "trellis",
704     "verbose", "vbv-bufsize", "vbv-init", "vbv-maxrate", "weightb", "aq-mode",
705     "aq-strength",NULL
706 };
707
708 static block_t *Encode( encoder_t *, picture_t * );
709
710 struct encoder_sys_t
711 {
712     x264_t          *h;
713     x264_param_t    param;
714
715     int             i_buffer;
716     uint8_t         *p_buffer;
717
718     mtime_t         i_interpolated_dts;
719
720     char *psz_stat_name;
721 };
722
723 /*****************************************************************************
724  * Open: probe the encoder
725  *****************************************************************************/
726 static int  Open ( vlc_object_t *p_this )
727 {
728     encoder_t     *p_enc = (encoder_t *)p_this;
729     encoder_sys_t *p_sys;
730     vlc_value_t    val;
731     int i_qmin = 0, i_qmax = 0;
732     x264_nal_t    *nal;
733     int i, i_nal;
734
735     if( p_enc->fmt_out.i_codec != VLC_FOURCC( 'h', '2', '6', '4' ) &&
736         !p_enc->b_force )
737     {
738         return VLC_EGENERIC;
739     }
740
741     /* X264_POINTVER or X264_VERSION are not available */
742     msg_Dbg ( p_enc, "version x264 0.%d.X", X264_BUILD );
743
744 #if X264_BUILD < 37
745     if( p_enc->fmt_in.video.i_width % 16 != 0 ||
746         p_enc->fmt_in.video.i_height % 16 != 0 )
747     {
748         msg_Warn( p_enc, "size is not a multiple of 16 (%ix%i)",
749                   p_enc->fmt_in.video.i_width, p_enc->fmt_in.video.i_height );
750
751         if( p_enc->fmt_in.video.i_width < 16 ||
752             p_enc->fmt_in.video.i_height < 16 )
753         {
754             msg_Err( p_enc, "video is too small to be cropped" );
755             return VLC_EGENERIC;
756         }
757
758         msg_Warn( p_enc, "cropping video to %ix%i",
759                   p_enc->fmt_in.video.i_width >> 4 << 4,
760                   p_enc->fmt_in.video.i_height >> 4 << 4 );
761     }
762 #endif
763
764     config_ChainParse( p_enc, SOUT_CFG_PREFIX, ppsz_sout_options, p_enc->p_cfg );
765
766     p_enc->fmt_out.i_codec = VLC_FOURCC( 'h', '2', '6', '4' );
767     p_enc->fmt_in.i_codec = VLC_FOURCC('I','4','2','0');
768
769     p_enc->pf_encode_video = Encode;
770     p_enc->pf_encode_audio = NULL;
771     p_enc->p_sys = p_sys = malloc( sizeof( encoder_sys_t ) );
772     p_sys->i_interpolated_dts = 0;
773     p_sys->psz_stat_name = NULL;
774
775     x264_param_default( &p_sys->param );
776     p_sys->param.i_width  = p_enc->fmt_in.video.i_width;
777     p_sys->param.i_height = p_enc->fmt_in.video.i_height;
778 #if X264_BUILD < 37
779     p_sys->param.i_width  = p_sys->param.i_width >> 4 << 4;
780     p_sys->param.i_height = p_sys->param.i_height >> 4 << 4;
781 #endif
782
783     /* average bitrate specified by transcode vb */
784     p_sys->param.rc.i_bitrate = p_enc->fmt_out.i_bitrate / 1000;
785
786     var_Get( p_enc, SOUT_CFG_PREFIX "qpstep", &val );
787     if( val.i_int >= 0 && val.i_int <= 51 ) p_sys->param.rc.i_qp_step = val.i_int;
788     var_Get( p_enc, SOUT_CFG_PREFIX "qpmin", &val );
789     if( val.i_int >= 0 && val.i_int <= 51 )
790     {
791         i_qmin = val.i_int;
792         p_sys->param.rc.i_qp_min = i_qmin;
793     }
794     var_Get( p_enc, SOUT_CFG_PREFIX "qpmax", &val );
795     if( val.i_int >= 0 && val.i_int <= 51 )
796     {
797         i_qmax = val.i_int;
798         p_sys->param.rc.i_qp_max = i_qmax;
799     }
800
801     var_Get( p_enc, SOUT_CFG_PREFIX "qp", &val );
802     if( val.i_int >= 0 && val.i_int <= 51 )
803     {
804         if( i_qmin > val.i_int ) i_qmin = val.i_int;
805         if( i_qmax < val.i_int ) i_qmax = val.i_int;
806
807         p_sys->param.rc.i_rc_method = X264_RC_CQP;
808 #if X264_BUILD >= 0x000a
809         p_sys->param.rc.i_qp_constant = val.i_int;
810         p_sys->param.rc.i_qp_min = i_qmin;
811         p_sys->param.rc.i_qp_max = i_qmax;
812 #else
813         p_sys->param.i_qp_constant = val.i_int;
814 #endif
815     }
816
817 #if X264_BUILD < 48
818     /* cbr = 1 overrides qp or crf and sets an average bitrate
819        but maxrate = average bitrate is needed for "real" CBR */
820     if( p_sys->param.rc.i_bitrate > 0 ) p_sys->param.rc.b_cbr = 1;
821 #else
822     if( p_sys->param.rc.i_bitrate > 0 ) p_sys->param.rc.i_rc_method = X264_RC_ABR;
823 #endif
824
825 #if X264_BUILD >= 24
826     var_Get( p_enc, SOUT_CFG_PREFIX "ratetol", &val );
827     p_sys->param.rc.f_rate_tolerance = val.f_float;
828
829     var_Get( p_enc, SOUT_CFG_PREFIX "vbv-init", &val );
830     p_sys->param.rc.f_vbv_buffer_init = val.f_float;
831
832     var_Get( p_enc, SOUT_CFG_PREFIX "vbv-bufsize", &val );
833     p_sys->param.rc.i_vbv_buffer_size = val.i_int;
834
835     /* x264 vbv-bufsize = 0 (default). if not provided set period
836        in seconds for local maximum bitrate (cache/bufsize) based
837        on average bitrate. */
838     if( !val.i_int )
839         p_sys->param.rc.i_vbv_buffer_size = p_sys->param.rc.i_bitrate * 2;
840
841     /* max bitrate = average bitrate -> CBR */
842     var_Get( p_enc, SOUT_CFG_PREFIX "vbv-maxrate", &val );
843     p_sys->param.rc.i_vbv_max_bitrate = val.i_int;
844
845 #else
846     p_sys->param.rc.i_rc_buffer_size = p_sys->param.rc.i_bitrate;
847     p_sys->param.rc.i_rc_init_buffer = p_sys->param.rc.i_bitrate / 4;
848 #endif
849
850     var_Get( p_enc, SOUT_CFG_PREFIX "cabac", &val );
851     p_sys->param.b_cabac = val.b_bool;
852
853     /* disable deblocking when nf (no loop filter) is enabled */
854     var_Get( p_enc, SOUT_CFG_PREFIX "nf", &val );
855     p_sys->param.b_deblocking_filter = !val.b_bool;
856
857     var_Get( p_enc, SOUT_CFG_PREFIX "deblock", &val );
858     if( val.psz_string )
859     {
860         char *p = strchr( val.psz_string, ':' );
861         p_sys->param.i_deblocking_filter_alphac0 = atoi( val.psz_string );
862         p_sys->param.i_deblocking_filter_beta = p ? atoi( p+1 ) : p_sys->param.i_deblocking_filter_alphac0;
863         free( val.psz_string );
864     }
865
866     var_Get( p_enc, SOUT_CFG_PREFIX "level", &val );
867     if( val.psz_string )
868     {
869         if( atof (val.psz_string) < 6 )
870             p_sys->param.i_level_idc = (int) ( 10 * atof (val.psz_string) + .5);
871         else
872             p_sys->param.i_level_idc = atoi (val.psz_string);
873         free( val.psz_string );
874     }
875
876 #if X264_BUILD >= 51 /* r570 */
877     var_Get( p_enc, SOUT_CFG_PREFIX "interlaced", &val );
878     p_sys->param.b_interlaced = val.b_bool;
879 #endif
880
881     var_Get( p_enc, SOUT_CFG_PREFIX "ipratio", &val );
882     p_sys->param.rc.f_ip_factor = val.f_float;
883
884     var_Get( p_enc, SOUT_CFG_PREFIX "pbratio", &val );
885     p_sys->param.rc.f_pb_factor = val.f_float;
886
887     var_Get( p_enc, SOUT_CFG_PREFIX "qcomp", &val );
888     p_sys->param.rc.f_qcompress = val.f_float;
889
890     var_Get( p_enc, SOUT_CFG_PREFIX "cplxblur", &val );
891     p_sys->param.rc.f_complexity_blur = val.f_float;
892
893     var_Get( p_enc, SOUT_CFG_PREFIX "qblur", &val );
894     p_sys->param.rc.f_qblur = val.f_float;
895
896 #if X264_BUILD >= 59
897     var_Get( p_enc, SOUT_CFG_PREFIX "aq-mode", &val );
898     p_sys->param.rc.i_aq_mode = val.i_int;
899
900     var_Get( p_enc, SOUT_CFG_PREFIX "aq-strength", &val );
901     p_sys->param.rc.f_aq_strength = val.f_float;
902 #endif
903
904 #if X264_BUILD >= 0x000e
905     var_Get( p_enc, SOUT_CFG_PREFIX "verbose", &val );
906     if( val.b_bool ) p_sys->param.i_log_level = X264_LOG_DEBUG;
907 #endif
908
909     var_Get( p_enc, SOUT_CFG_PREFIX "quiet", &val );
910     if( val.b_bool ) p_sys->param.i_log_level = X264_LOG_NONE;
911
912 #if X264_BUILD >= 47 /* r518 */
913     var_Get( p_enc, SOUT_CFG_PREFIX "sps-id", &val );
914     if( val.i_int >= 0 ) p_sys->param.i_sps_id = val.i_int;
915 #endif
916
917     var_Get( p_enc, SOUT_CFG_PREFIX "aud", &val );
918     if( val.b_bool ) p_sys->param.b_aud = val.b_bool;
919
920     var_Get( p_enc, SOUT_CFG_PREFIX "keyint", &val );
921 #if X264_BUILD >= 0x000e
922     if( val.i_int > 0 ) p_sys->param.i_keyint_max = val.i_int;
923 #else
924     if( val.i_int > 0 ) p_sys->param.i_iframe = val.i_int;
925 #endif
926
927     var_Get( p_enc, SOUT_CFG_PREFIX "min-keyint", &val );
928 #if X264_BUILD >= 0x000e
929     if( val.i_int > 0 ) p_sys->param.i_keyint_min = val.i_int;
930 #else
931     if( val.i_int > 0 ) p_sys->param.i_idrframe = val.i_int;
932 #endif
933
934     var_Get( p_enc, SOUT_CFG_PREFIX "bframes", &val );
935     if( val.i_int >= 0 && val.i_int <= 16 )
936         p_sys->param.i_bframe = val.i_int;
937
938 #if X264_BUILD >= 22
939     var_Get( p_enc, SOUT_CFG_PREFIX "bpyramid", &val );
940     p_sys->param.b_bframe_pyramid = val.b_bool;
941 #endif
942
943     var_Get( p_enc, SOUT_CFG_PREFIX "ref", &val );
944     if( val.i_int > 0 && val.i_int <= 15 )
945         p_sys->param.i_frame_reference = val.i_int;
946
947     var_Get( p_enc, SOUT_CFG_PREFIX "scenecut", &val );
948 #if X264_BUILD >= 0x000b
949     if( val.i_int >= -1 && val.i_int <= 100 )
950         p_sys->param.i_scenecut_threshold = val.i_int;
951 #endif
952
953 #if X264_BUILD >= 55 /* r607 */
954     var_Get( p_enc, SOUT_CFG_PREFIX "pre-scenecut", &val );
955     p_sys->param.b_pre_scenecut = val.b_bool;
956     var_Get( p_enc, SOUT_CFG_PREFIX "non-deterministic", &val );
957     p_sys->param.b_deterministic = val.b_bool;
958 #endif
959
960     var_Get( p_enc, SOUT_CFG_PREFIX "subme", &val );
961     if( val.i_int >= 1 && val.i_int <= SUBME_MAX )
962         p_sys->param.analyse.i_subpel_refine = val.i_int;
963
964 #if X264_BUILD >= 24
965     var_Get( p_enc, SOUT_CFG_PREFIX "me", &val );
966     if( !strcmp( val.psz_string, "dia" ) )
967     {
968         p_sys->param.analyse.i_me_method = X264_ME_DIA;
969     }
970     else if( !strcmp( val.psz_string, "hex" ) )
971     {
972         p_sys->param.analyse.i_me_method = X264_ME_HEX;
973     }
974     else if( !strcmp( val.psz_string, "umh" ) )
975     {
976         p_sys->param.analyse.i_me_method = X264_ME_UMH;
977     }
978     else if( !strcmp( val.psz_string, "esa" ) )
979     {
980         p_sys->param.analyse.i_me_method = X264_ME_ESA;
981     }
982     #if X264_BUILD >= 58 /* r728 */
983         else if( !strcmp( val.psz_string, "tesa" ) )
984         {
985             p_sys->param.analyse.i_me_method = X264_ME_TESA;
986         }
987     #endif
988     free( val.psz_string );
989
990     var_Get( p_enc, SOUT_CFG_PREFIX "merange", &val );
991     if( val.i_int >= 0 && val.i_int <= 64 )
992         p_sys->param.analyse.i_me_range = val.i_int;
993
994     var_Get( p_enc, SOUT_CFG_PREFIX "mvrange", &val );
995         p_sys->param.analyse.i_mv_range = val.i_int;
996 #endif
997
998 #if X264_BUILD >= 55 /* r607 */
999     var_Get( p_enc, SOUT_CFG_PREFIX "mvrange-thread", &val );
1000         p_sys->param.analyse.i_mv_range_thread = val.i_int;
1001 #endif
1002
1003     var_Get( p_enc, SOUT_CFG_PREFIX "direct", &val );
1004     if( !strcmp( val.psz_string, "none" ) )
1005     {
1006         p_sys->param.analyse.i_direct_mv_pred = X264_DIRECT_PRED_NONE;
1007     }
1008     else if( !strcmp( val.psz_string, "spatial" ) )
1009     {
1010         p_sys->param.analyse.i_direct_mv_pred = X264_DIRECT_PRED_SPATIAL;
1011     }
1012     else if( !strcmp( val.psz_string, "temporal" ) )
1013     {
1014         p_sys->param.analyse.i_direct_mv_pred = X264_DIRECT_PRED_TEMPORAL;
1015     }
1016 #if X264_BUILD >= 45 /* r457 */
1017     else if( !strcmp( val.psz_string, "auto" ) )
1018     {
1019         p_sys->param.analyse.i_direct_mv_pred = X264_DIRECT_PRED_AUTO;
1020     }
1021 #endif
1022     free( val.psz_string );
1023
1024     var_Get( p_enc, SOUT_CFG_PREFIX "psnr", &val );
1025     p_sys->param.analyse.b_psnr = val.b_bool;
1026
1027 #if X264_BUILD >= 50 /* r554 */
1028     var_Get( p_enc, SOUT_CFG_PREFIX "ssim", &val );
1029     p_sys->param.analyse.b_ssim = val.b_bool;
1030 #endif
1031
1032 #if X264_BUILD >= 0x0012
1033     var_Get( p_enc, SOUT_CFG_PREFIX "weightb", &val );
1034     p_sys->param.analyse.b_weighted_bipred = val.b_bool;
1035 #endif
1036
1037 #if X264_BUILD >= 0x0013
1038     var_Get( p_enc, SOUT_CFG_PREFIX "b-adapt", &val );
1039     p_sys->param.b_bframe_adaptive = val.b_bool;
1040
1041     var_Get( p_enc, SOUT_CFG_PREFIX "b-bias", &val );
1042     if( val.i_int >= -100 && val.i_int <= 100 )
1043         p_sys->param.i_bframe_bias = val.i_int;
1044 #endif
1045
1046 #if X264_BUILD >= 23
1047     var_Get( p_enc, SOUT_CFG_PREFIX "chroma-me", &val );
1048     p_sys->param.analyse.b_chroma_me = val.b_bool;
1049     var_Get( p_enc, SOUT_CFG_PREFIX "chroma-qp-offset", &val );
1050     p_sys->param.analyse.i_chroma_qp_offset = val.i_int;
1051 #endif
1052
1053 #if X264_BUILD >= 36
1054     var_Get( p_enc, SOUT_CFG_PREFIX "mixed-refs", &val );
1055     p_sys->param.analyse.b_mixed_references = val.b_bool;
1056 #endif
1057
1058 #if X264_BUILD >= 37
1059     var_Get( p_enc, SOUT_CFG_PREFIX "crf", &val );
1060     if( val.i_int > 0 && val.i_int <= 51 )
1061     {
1062 #if X264_BUILD >= 54
1063         p_sys->param.rc.f_rf_constant = val.i_int;
1064 #else
1065         p_sys->param.rc.i_rf_constant = val.i_int;
1066 #endif
1067 #if X264_BUILD >= 48
1068         p_sys->param.rc.i_rc_method = X264_RC_CRF;
1069 #endif
1070     }
1071 #endif
1072
1073 #if X264_BUILD >= 39
1074     var_Get( p_enc, SOUT_CFG_PREFIX "trellis", &val );
1075     if( val.i_int >= 0 && val.i_int <= 2 )
1076         p_sys->param.analyse.i_trellis = val.i_int;
1077 #endif
1078
1079 #if X264_BUILD >= 41
1080     var_Get( p_enc, SOUT_CFG_PREFIX "b-rdo", &val );
1081     p_sys->param.analyse.b_bframe_rdo = val.b_bool;
1082 #endif
1083
1084 #if X264_BUILD >= 42
1085     var_Get( p_enc, SOUT_CFG_PREFIX "fast-pskip", &val );
1086     p_sys->param.analyse.b_fast_pskip = val.b_bool;
1087 #endif
1088
1089 #if X264_BUILD >= 43
1090     var_Get( p_enc, SOUT_CFG_PREFIX "bime", &val );
1091     p_sys->param.analyse.b_bidir_me = val.b_bool;
1092 #endif
1093
1094 #if X264_BUILD >= 44
1095     var_Get( p_enc, SOUT_CFG_PREFIX "nr", &val );
1096     if( val.i_int >= 0 && val.i_int <= 1000 )
1097         p_sys->param.analyse.i_noise_reduction = val.i_int;
1098 #endif
1099
1100 #if X264_BUILD >= 46
1101     var_Get( p_enc, SOUT_CFG_PREFIX "dct-decimate", &val );
1102     p_sys->param.analyse.b_dct_decimate = val.b_bool;
1103 #endif
1104
1105 #if X264_BUILD >= 52
1106     var_Get( p_enc, SOUT_CFG_PREFIX "deadzone-inter", &val );
1107     if( val.i_int >= 0 && val.i_int <= 32 )
1108         p_sys->param.analyse.i_luma_deadzone[0] = val.i_int;
1109
1110     var_Get( p_enc, SOUT_CFG_PREFIX "deadzone-intra", &val );
1111     if( val.i_int >= 0 && val.i_int <= 32 )
1112         p_sys->param.analyse.i_luma_deadzone[1] = val.i_int;
1113
1114     var_Get( p_enc, SOUT_CFG_PREFIX "direct-8x8", &val );
1115     if( val.i_int >= -1 && val.i_int <= 1 )
1116         p_sys->param.analyse.i_direct_8x8_inference = val.i_int;
1117 #endif
1118
1119     var_Get( p_enc, SOUT_CFG_PREFIX "asm", &val );
1120     if( !val.b_bool ) p_sys->param.cpu = 0;
1121
1122 #ifndef X264_ANALYSE_BSUB16x16
1123 #   define X264_ANALYSE_BSUB16x16 0
1124 #endif
1125     var_Get( p_enc, SOUT_CFG_PREFIX "partitions", &val );
1126     if( !strcmp( val.psz_string, "none" ) )
1127     {
1128         p_sys->param.analyse.inter = 0;
1129     }
1130     else if( !strcmp( val.psz_string, "fast" ) )
1131     {
1132         p_sys->param.analyse.inter = X264_ANALYSE_I4x4;
1133     }
1134     else if( !strcmp( val.psz_string, "normal" ) )
1135     {
1136         p_sys->param.analyse.inter =
1137             X264_ANALYSE_I4x4 |
1138             X264_ANALYSE_PSUB16x16;
1139 #ifdef X264_ANALYSE_I8x8
1140         p_sys->param.analyse.inter |= X264_ANALYSE_I8x8;
1141 #endif
1142     }
1143     else if( !strcmp( val.psz_string, "slow" ) )
1144     {
1145         p_sys->param.analyse.inter =
1146             X264_ANALYSE_I4x4 |
1147             X264_ANALYSE_PSUB16x16 |
1148             X264_ANALYSE_BSUB16x16;
1149 #ifdef X264_ANALYSE_I8x8
1150         p_sys->param.analyse.inter |= X264_ANALYSE_I8x8;
1151 #endif
1152     }
1153     else if( !strcmp( val.psz_string, "all" ) )
1154     {
1155         p_sys->param.analyse.inter =
1156             X264_ANALYSE_I4x4 |
1157             X264_ANALYSE_PSUB16x16 |
1158             X264_ANALYSE_BSUB16x16 |
1159             X264_ANALYSE_PSUB8x8;
1160 #ifdef X264_ANALYSE_I8x8
1161         p_sys->param.analyse.inter |= X264_ANALYSE_I8x8;
1162 #endif
1163     }
1164     free( val.psz_string );
1165
1166 #if X264_BUILD >= 30
1167     var_Get( p_enc, SOUT_CFG_PREFIX "8x8dct", &val );
1168     p_sys->param.analyse.b_transform_8x8 = val.b_bool;
1169 #endif
1170
1171     if( p_enc->fmt_in.video.i_aspect > 0 )
1172     {
1173         int64_t i_num, i_den;
1174         unsigned int i_dst_num, i_dst_den;
1175
1176         i_num = p_enc->fmt_in.video.i_aspect *
1177             (int64_t)p_enc->fmt_in.video.i_height;
1178         i_den = VOUT_ASPECT_FACTOR * p_enc->fmt_in.video.i_width;
1179         vlc_ureduce( &i_dst_num, &i_dst_den, i_num, i_den, 0 );
1180
1181         p_sys->param.vui.i_sar_width = i_dst_num;
1182         p_sys->param.vui.i_sar_height = i_dst_den;
1183     }
1184     if( p_enc->fmt_in.video.i_frame_rate_base > 0 )
1185     {
1186         p_sys->param.i_fps_num = p_enc->fmt_in.video.i_frame_rate;
1187         p_sys->param.i_fps_den = p_enc->fmt_in.video.i_frame_rate_base;
1188     }
1189
1190     unsigned i_cpu = vlc_CPU();
1191     if( !(i_cpu & CPU_CAPABILITY_MMX) )
1192     {
1193         p_sys->param.cpu &= ~X264_CPU_MMX;
1194     }
1195     if( !(i_cpu & CPU_CAPABILITY_MMXEXT) )
1196     {
1197         p_sys->param.cpu &= ~X264_CPU_MMXEXT;
1198     }
1199     if( !(i_cpu & CPU_CAPABILITY_SSE) )
1200     {
1201         p_sys->param.cpu &= ~X264_CPU_SSE;
1202     }
1203     if( !(i_cpu & CPU_CAPABILITY_SSE2) )
1204     {
1205         p_sys->param.cpu &= ~X264_CPU_SSE2;
1206     }
1207
1208     /* BUILD 29 adds support for multi-threaded encoding while BUILD 49 (r543)
1209        also adds support for threads = 0 for automatically selecting an optimal
1210        value (cores * 1.5) based on detected CPUs. Default behavior for x264 is
1211        threads = 1, however VLC usage differs and uses threads = 0 (auto) by
1212        default unless ofcourse transcode threads is explicitly specified.. */
1213 #if X264_BUILD >= 29
1214     p_sys->param.i_threads = p_enc->i_threads;
1215 #endif
1216
1217     var_Get( p_enc, SOUT_CFG_PREFIX "stats", &val );
1218     if( val.psz_string )
1219     {
1220         p_sys->param.rc.psz_stat_in  =
1221         p_sys->param.rc.psz_stat_out =
1222         p_sys->psz_stat_name         = val.psz_string;
1223     }
1224
1225     var_Get( p_enc, SOUT_CFG_PREFIX "pass", &val );
1226     if( val.i_int > 0 && val.i_int <= 3 )
1227     {
1228         p_sys->param.rc.b_stat_write = val.i_int & 1;
1229         p_sys->param.rc.b_stat_read = val.i_int & 2;
1230     }
1231
1232     /* We need to initialize pthreadw32 before we open the encoder,
1233        but only oncce for the whole application. Since pthreadw32
1234        doesn't keep a refcount, do it ourselves. */
1235 #ifdef PTW32_STATIC_LIB
1236     vlc_value_t lock, count;
1237
1238     var_Create( p_enc->p_libvlc, "pthread_win32_mutex", VLC_VAR_MUTEX );
1239     var_Get( p_enc->p_libvlc, "pthread_win32_mutex", &lock );
1240     vlc_mutex_lock( lock.p_address );
1241
1242     var_Create( p_enc->p_libvlc, "pthread_win32_count", VLC_VAR_INTEGER );
1243     var_Get( p_enc->p_libvlc, "pthread_win32_count", &count );
1244
1245     if( count.i_int == 0 )
1246     {   
1247         msg_Dbg( p_enc, "initializing pthread-win32" );
1248         if( !pthread_win32_process_attach_np() || !pthread_win32_thread_attach_np() )   
1249         {   
1250             msg_Warn( p_enc, "pthread Win32 Initialization failed" );
1251             vlc_mutex_unlock( lock.p_address );
1252             return VLC_EGENERIC;
1253         }
1254     }
1255
1256     count.i_int++;
1257     var_Set( p_enc->p_libvlc, "pthread_win32_count", count );
1258     vlc_mutex_unlock( lock.p_address );
1259
1260 #endif
1261
1262     /* Open the encoder */
1263     p_sys->h = x264_encoder_open( &p_sys->param );
1264
1265     /* alloc mem */
1266     p_sys->i_buffer = 4 * p_enc->fmt_in.video.i_width *
1267         p_enc->fmt_in.video.i_height + 1000;
1268     p_sys->p_buffer = malloc( p_sys->i_buffer );
1269
1270     /* get the globals headers */
1271     p_enc->fmt_out.i_extra = 0;
1272     p_enc->fmt_out.p_extra = NULL;
1273
1274     x264_encoder_headers( p_sys->h, &nal, &i_nal );
1275     for( i = 0; i < i_nal; i++ )
1276     {
1277         int i_size = p_sys->i_buffer;
1278
1279         x264_nal_encode( p_sys->p_buffer, &i_size, 1, &nal[i] );
1280
1281         p_enc->fmt_out.p_extra = realloc( p_enc->fmt_out.p_extra, p_enc->fmt_out.i_extra + i_size );
1282
1283         memcpy( (uint8_t*)p_enc->fmt_out.p_extra + p_enc->fmt_out.i_extra,
1284             p_sys->p_buffer, i_size );
1285
1286         p_enc->fmt_out.i_extra += i_size;
1287     }
1288
1289     return VLC_SUCCESS;
1290 }
1291
1292 /****************************************************************************
1293  * Encode:
1294  ****************************************************************************/
1295 static block_t *Encode( encoder_t *p_enc, picture_t *p_pict )
1296 {
1297     encoder_sys_t *p_sys = p_enc->p_sys;
1298     x264_picture_t pic;
1299     x264_nal_t *nal;
1300     block_t *p_block;
1301     int i_nal, i_out, i;
1302
1303     /* init pic */
1304     memset( &pic, 0, sizeof( x264_picture_t ) );
1305     pic.i_pts = p_pict->date;
1306     pic.img.i_csp = X264_CSP_I420;
1307     pic.img.i_plane = p_pict->i_planes;
1308     for( i = 0; i < p_pict->i_planes; i++ )
1309     {
1310         pic.img.plane[i] = p_pict->p[i].p_pixels;
1311         pic.img.i_stride[i] = p_pict->p[i].i_pitch;
1312     }
1313
1314 #if X264_BUILD >= 0x0013
1315     x264_encoder_encode( p_sys->h, &nal, &i_nal, &pic, &pic );
1316 #else
1317     x264_encoder_encode( p_sys->h, &nal, &i_nal, &pic );
1318 #endif
1319
1320     if( !i_nal ) return NULL;
1321
1322     for( i = 0, i_out = 0; i < i_nal; i++ )
1323     {
1324         int i_size = p_sys->i_buffer - i_out;
1325         x264_nal_encode( p_sys->p_buffer + i_out, &i_size, 1, &nal[i] );
1326
1327         i_out += i_size;
1328     }
1329
1330     p_block = block_New( p_enc, i_out );
1331     memcpy( p_block->p_buffer, p_sys->p_buffer, i_out );
1332
1333     if( pic.i_type == X264_TYPE_IDR || pic.i_type == X264_TYPE_I )
1334         p_block->i_flags |= BLOCK_FLAG_TYPE_I;
1335     else if( pic.i_type == X264_TYPE_P )
1336         p_block->i_flags |= BLOCK_FLAG_TYPE_P;
1337     else if( pic.i_type == X264_TYPE_B )
1338         p_block->i_flags |= BLOCK_FLAG_TYPE_B;
1339
1340     /* This isn't really valid for streams with B-frames */
1341     p_block->i_length = INT64_C(1000000) *
1342         p_enc->fmt_in.video.i_frame_rate_base /
1343             p_enc->fmt_in.video.i_frame_rate;
1344
1345     p_block->i_pts = pic.i_pts;
1346
1347     if( p_sys->param.i_bframe > 0 )
1348     {
1349         if( p_block->i_flags & BLOCK_FLAG_TYPE_B )
1350         {
1351             /* FIXME : this is wrong if bpyramid is set */
1352             p_block->i_dts = p_block->i_pts;
1353             p_sys->i_interpolated_dts = p_block->i_dts;
1354         }
1355         else
1356         {
1357             if( p_sys->i_interpolated_dts )
1358             {
1359                 p_block->i_dts = p_sys->i_interpolated_dts;
1360             }
1361             else
1362             {
1363                 /* Let's put something sensible */
1364                 p_block->i_dts = p_block->i_pts;
1365             }
1366
1367             p_sys->i_interpolated_dts += p_block->i_length;
1368         }
1369     }
1370     else
1371     {
1372         p_block->i_dts = p_block->i_pts;
1373     }
1374
1375     return p_block;
1376 }
1377
1378 /*****************************************************************************
1379  * CloseEncoder: x264 encoder destruction
1380  *****************************************************************************/
1381 static void Close( vlc_object_t *p_this )
1382 {
1383     encoder_t     *p_enc = (encoder_t *)p_this;
1384     encoder_sys_t *p_sys = p_enc->p_sys;
1385
1386     free( p_sys->psz_stat_name );
1387
1388     x264_encoder_close( p_sys->h );
1389
1390 #ifdef PTW32_STATIC_LIB
1391     vlc_value_t lock, count;
1392
1393     var_Create( p_enc->p_libvlc, "pthread_win32_mutex", VLC_VAR_MUTEX );
1394     var_Get( p_enc->p_libvlc, "pthread_win32_mutex", &lock );
1395     vlc_mutex_lock( lock.p_address );
1396
1397     var_Create( p_enc->p_libvlc, "pthread_win32_count", VLC_VAR_INTEGER );
1398     var_Get( p_enc->p_libvlc, "pthread_win32_count", &count );
1399     count.i_int--;
1400     var_Set( p_enc->p_libvlc, "pthread_win32_count", count );
1401
1402     if( count.i_int == 0 )
1403     {
1404         pthread_win32_thread_detach_np();
1405         pthread_win32_process_detach_np();
1406         msg_Dbg( p_enc, "pthread-win32 deinitialized" );
1407     }
1408     vlc_mutex_unlock( lock.p_address );
1409 #endif
1410
1411     free( p_sys->p_buffer );
1412     free( p_sys );
1413 }