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