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