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