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