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