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