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