]> git.sesse.net Git - vlc/blob - modules/codec/x264.c
Cleanup whitespace and use fastmemcpy.
[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 )
775     {
776         i_qmin = val.i_int;
777         p_sys->param.rc.i_qp_min = i_qmin;
778     }
779     var_Get( p_enc, SOUT_CFG_PREFIX "qpmax", &val );
780     if( val.i_int >= 0 && val.i_int <= 51 )
781     {
782         i_qmax = val.i_int;
783         p_sys->param.rc.i_qp_max = i_qmax;
784     }
785
786     var_Get( p_enc, SOUT_CFG_PREFIX "qp", &val );
787     if( val.i_int >= 0 && val.i_int <= 51 )
788     {
789         if( i_qmin > val.i_int ) i_qmin = val.i_int;
790         if( i_qmax < val.i_int ) i_qmax = val.i_int;
791
792         p_sys->param.rc.i_rc_method = X264_RC_CQP;
793 #if X264_BUILD >= 0x000a
794         p_sys->param.rc.i_qp_constant = val.i_int;
795         p_sys->param.rc.i_qp_min = i_qmin;
796         p_sys->param.rc.i_qp_max = i_qmax;
797 #else
798         p_sys->param.i_qp_constant = val.i_int;
799 #endif
800     }
801
802 #if X264_BUILD >= 24
803     var_Get( p_enc, SOUT_CFG_PREFIX "ratetol", &val );
804     p_sys->param.rc.f_rate_tolerance = val.f_float;
805
806     var_Get( p_enc, SOUT_CFG_PREFIX "vbv-init", &val );
807     p_sys->param.rc.f_vbv_buffer_init = val.f_float;
808
809     var_Get( p_enc, SOUT_CFG_PREFIX "vbv-bufsize", &val );
810     p_sys->param.rc.i_vbv_buffer_size = val.i_int;
811
812     /* x264 vbv-bufsize = 0 (default). if not provided set period
813        in seconds for local maximum bitrate (cache/bufsize) based
814        on average bitrate. */
815     if( !val.i_int )
816         p_sys->param.rc.i_vbv_buffer_size = p_sys->param.rc.i_bitrate * 2;
817
818     /* max bitrate = average bitrate -> CBR */
819     var_Get( p_enc, SOUT_CFG_PREFIX "vbv-maxrate", &val );
820     p_sys->param.rc.i_vbv_max_bitrate = val.i_int;
821
822 #else
823     p_sys->param.rc.i_rc_buffer_size = p_sys->param.rc.i_bitrate;
824     p_sys->param.rc.i_rc_init_buffer = p_sys->param.rc.i_bitrate / 4;
825 #endif
826
827     var_Get( p_enc, SOUT_CFG_PREFIX "cabac", &val );
828     p_sys->param.b_cabac = val.b_bool;
829
830     /* disable deblocking when nf (no loop filter) is enabled */
831     var_Get( p_enc, SOUT_CFG_PREFIX "nf", &val );
832     p_sys->param.b_deblocking_filter = !val.b_bool;
833
834     var_Get( p_enc, SOUT_CFG_PREFIX "deblock", &val );
835     if( val.psz_string )
836     {
837         char *p = strchr( val.psz_string, ':' );
838         p_sys->param.i_deblocking_filter_alphac0 = atoi( val.psz_string );
839         p_sys->param.i_deblocking_filter_beta = p ? atoi( p+1 ) : p_sys->param.i_deblocking_filter_alphac0;
840         free( val.psz_string );
841     }
842
843     var_Get( p_enc, SOUT_CFG_PREFIX "level", &val );
844     if( val.psz_string )
845     {
846         if( atof (val.psz_string) < 6 )
847             p_sys->param.i_level_idc = (int) ( 10 * atof (val.psz_string) + .5);
848         else
849             p_sys->param.i_level_idc = atoi (val.psz_string);
850         free( val.psz_string );
851     }
852
853 #if X264_BUILD >= 51 /* r570 */
854     var_Get( p_enc, SOUT_CFG_PREFIX "interlaced", &val );
855     p_sys->param.b_interlaced = val.b_bool;
856 #endif
857
858     var_Get( p_enc, SOUT_CFG_PREFIX "ipratio", &val );
859     p_sys->param.rc.f_ip_factor = val.f_float;
860
861     var_Get( p_enc, SOUT_CFG_PREFIX "pbratio", &val );
862     p_sys->param.rc.f_pb_factor = val.f_float;
863
864     var_Get( p_enc, SOUT_CFG_PREFIX "qcomp", &val );
865     p_sys->param.rc.f_qcompress = val.f_float;
866
867     var_Get( p_enc, SOUT_CFG_PREFIX "cplxblur", &val );
868     p_sys->param.rc.f_complexity_blur = val.f_float;
869
870     var_Get( p_enc, SOUT_CFG_PREFIX "qblur", &val );
871     p_sys->param.rc.f_qblur = val.f_float;
872
873 #if X264_BUILD >= 0x000e
874     var_Get( p_enc, SOUT_CFG_PREFIX "verbose", &val );
875     if( val.b_bool ) p_sys->param.i_log_level = X264_LOG_DEBUG;
876 #endif
877
878     var_Get( p_enc, SOUT_CFG_PREFIX "quiet", &val );
879     if( val.b_bool ) p_sys->param.i_log_level = X264_LOG_NONE;
880
881 #if X264_BUILD >= 47 /* r518 */
882     var_Get( p_enc, SOUT_CFG_PREFIX "sps-id", &val );
883     if( val.i_int >= 0 ) p_sys->param.i_sps_id = val.i_int;
884 #endif
885
886     var_Get( p_enc, SOUT_CFG_PREFIX "aud", &val );
887     if( val.b_bool ) p_sys->param.b_aud = val.b_bool;
888
889     var_Get( p_enc, SOUT_CFG_PREFIX "keyint", &val );
890 #if X264_BUILD >= 0x000e
891     if( val.i_int > 0 ) p_sys->param.i_keyint_max = val.i_int;
892 #else
893     if( val.i_int > 0 ) p_sys->param.i_iframe = val.i_int;
894 #endif
895
896     var_Get( p_enc, SOUT_CFG_PREFIX "min-keyint", &val );
897 #if X264_BUILD >= 0x000e
898     if( val.i_int > 0 ) p_sys->param.i_keyint_min = val.i_int;
899 #else
900     if( val.i_int > 0 ) p_sys->param.i_idrframe = val.i_int;
901 #endif
902
903     var_Get( p_enc, SOUT_CFG_PREFIX "bframes", &val );
904     if( val.i_int >= 0 && val.i_int <= 16 )
905         p_sys->param.i_bframe = val.i_int;
906
907 #if X264_BUILD >= 22
908     var_Get( p_enc, SOUT_CFG_PREFIX "bpyramid", &val );
909     p_sys->param.b_bframe_pyramid = val.b_bool;
910 #endif
911
912     var_Get( p_enc, SOUT_CFG_PREFIX "ref", &val );
913     if( val.i_int > 0 && val.i_int <= 15 )
914         p_sys->param.i_frame_reference = val.i_int;
915
916     var_Get( p_enc, SOUT_CFG_PREFIX "scenecut", &val );
917 #if X264_BUILD >= 0x000b
918     if( val.i_int >= -1 && val.i_int <= 100 )
919         p_sys->param.i_scenecut_threshold = val.i_int;
920 #endif
921
922 #if X264_BUILD >= 55 /* r607 */
923     var_Get( p_enc, SOUT_CFG_PREFIX "pre-scenecut", &val );
924     p_sys->param.b_pre_scenecut = val.b_bool;
925     var_Get( p_enc, SOUT_CFG_PREFIX "non-deterministic", &val );
926     p_sys->param.b_deterministic = val.b_bool;
927 #endif
928
929     var_Get( p_enc, SOUT_CFG_PREFIX "subme", &val );
930     if( val.i_int >= 1 && val.i_int <= SUBME_MAX )
931         p_sys->param.analyse.i_subpel_refine = val.i_int;
932
933 #if X264_BUILD >= 24
934     var_Get( p_enc, SOUT_CFG_PREFIX "me", &val );
935     if( !strcmp( val.psz_string, "dia" ) )
936     {
937         p_sys->param.analyse.i_me_method = X264_ME_DIA;
938     }
939     else if( !strcmp( val.psz_string, "hex" ) )
940     {
941         p_sys->param.analyse.i_me_method = X264_ME_HEX;
942     }
943     else if( !strcmp( val.psz_string, "umh" ) )
944     {
945         p_sys->param.analyse.i_me_method = X264_ME_UMH;
946     }
947     else if( !strcmp( val.psz_string, "esa" ) )
948     {
949         p_sys->param.analyse.i_me_method = X264_ME_ESA;
950     }
951     #if X264_BUILD >= 58 /* r728 */
952         else if( !strcmp( val.psz_string, "tesa" ) )
953         {
954             p_sys->param.analyse.i_me_method = X264_ME_TESA;
955         }
956     #endif
957     free( val.psz_string );
958
959     var_Get( p_enc, SOUT_CFG_PREFIX "merange", &val );
960     if( val.i_int >= 0 && val.i_int <= 64 )
961         p_sys->param.analyse.i_me_range = val.i_int;
962
963     var_Get( p_enc, SOUT_CFG_PREFIX "mvrange", &val );
964         p_sys->param.analyse.i_mv_range = val.i_int;
965 #endif
966
967 #if X264_BUILD >= 55 /* r607 */
968     var_Get( p_enc, SOUT_CFG_PREFIX "mvrange-thread", &val );
969         p_sys->param.analyse.i_mv_range_thread = val.i_int;
970 #endif
971
972     var_Get( p_enc, SOUT_CFG_PREFIX "direct", &val );
973     if( !strcmp( val.psz_string, "none" ) )
974     {
975         p_sys->param.analyse.i_direct_mv_pred = X264_DIRECT_PRED_NONE;
976     }
977     else if( !strcmp( val.psz_string, "spatial" ) )
978     {
979         p_sys->param.analyse.i_direct_mv_pred = X264_DIRECT_PRED_SPATIAL;
980     }
981     else if( !strcmp( val.psz_string, "temporal" ) )
982     {
983         p_sys->param.analyse.i_direct_mv_pred = X264_DIRECT_PRED_TEMPORAL;
984     }
985 #if X264_BUILD >= 45 /* r457 */
986     else if( !strcmp( val.psz_string, "auto" ) )
987     {
988         p_sys->param.analyse.i_direct_mv_pred = X264_DIRECT_PRED_AUTO;
989     }
990 #endif
991     free( val.psz_string );
992
993     var_Get( p_enc, SOUT_CFG_PREFIX "psnr", &val );
994     p_sys->param.analyse.b_psnr = val.b_bool;
995
996 #if X264_BUILD >= 50 /* r554 */
997     var_Get( p_enc, SOUT_CFG_PREFIX "ssim", &val );
998     p_sys->param.analyse.b_ssim = val.b_bool;
999 #endif
1000
1001 #if X264_BUILD >= 0x0012
1002     var_Get( p_enc, SOUT_CFG_PREFIX "weightb", &val );
1003     p_sys->param.analyse.b_weighted_bipred = val.b_bool;
1004 #endif
1005
1006 #if X264_BUILD >= 0x0013
1007     var_Get( p_enc, SOUT_CFG_PREFIX "b-adapt", &val );
1008     p_sys->param.b_bframe_adaptive = val.b_bool;
1009
1010     var_Get( p_enc, SOUT_CFG_PREFIX "b-bias", &val );
1011     if( val.i_int >= -100 && val.i_int <= 100 )
1012         p_sys->param.i_bframe_bias = val.i_int;
1013 #endif
1014
1015 #if X264_BUILD >= 23
1016     var_Get( p_enc, SOUT_CFG_PREFIX "chroma-me", &val );
1017     p_sys->param.analyse.b_chroma_me = val.b_bool;
1018     var_Get( p_enc, SOUT_CFG_PREFIX "chroma-qp-offset", &val );
1019     p_sys->param.analyse.i_chroma_qp_offset = val.i_int;
1020 #endif
1021
1022 #if X264_BUILD >= 36
1023     var_Get( p_enc, SOUT_CFG_PREFIX "mixed-refs", &val );
1024     p_sys->param.analyse.b_mixed_references = val.b_bool;
1025 #endif
1026
1027 #if X264_BUILD >= 37
1028     var_Get( p_enc, SOUT_CFG_PREFIX "crf", &val );
1029     if( val.i_int > 0 && val.i_int <= 51 )
1030     {
1031 #if X264_BUILD >= 54
1032         p_sys->param.rc.f_rf_constant = val.i_int;
1033 #else
1034         p_sys->param.rc.i_rf_constant = val.i_int;
1035 #endif
1036 #if X264_BUILD >= 48
1037         p_sys->param.rc.i_rc_method = X264_RC_CRF;
1038 #endif
1039     }
1040 #endif
1041
1042 #if X264_BUILD >= 39
1043     var_Get( p_enc, SOUT_CFG_PREFIX "trellis", &val );
1044     if( val.i_int >= 0 && val.i_int <= 2 )
1045         p_sys->param.analyse.i_trellis = val.i_int;
1046 #endif
1047
1048 #if X264_BUILD >= 41
1049     var_Get( p_enc, SOUT_CFG_PREFIX "b-rdo", &val );
1050     p_sys->param.analyse.b_bframe_rdo = val.b_bool;
1051 #endif
1052
1053 #if X264_BUILD >= 42
1054     var_Get( p_enc, SOUT_CFG_PREFIX "fast-pskip", &val );
1055     p_sys->param.analyse.b_fast_pskip = val.b_bool;
1056 #endif
1057
1058 #if X264_BUILD >= 43
1059     var_Get( p_enc, SOUT_CFG_PREFIX "bime", &val );
1060     p_sys->param.analyse.b_bidir_me = val.b_bool;
1061 #endif
1062
1063 #if X264_BUILD >= 44
1064     var_Get( p_enc, SOUT_CFG_PREFIX "nr", &val );
1065     if( val.i_int >= 0 && val.i_int <= 1000 )
1066         p_sys->param.analyse.i_noise_reduction = val.i_int;
1067 #endif
1068
1069 #if X264_BUILD >= 46
1070     var_Get( p_enc, SOUT_CFG_PREFIX "dct-decimate", &val );
1071     p_sys->param.analyse.b_dct_decimate = val.b_bool;
1072 #endif
1073
1074 #if X264_BUILD >= 52
1075     var_Get( p_enc, SOUT_CFG_PREFIX "deadzone-inter", &val );
1076     if( val.i_int >= 0 && val.i_int <= 32 )
1077         p_sys->param.analyse.i_luma_deadzone[0] = val.i_int;
1078
1079     var_Get( p_enc, SOUT_CFG_PREFIX "deadzone-intra", &val );
1080     if( val.i_int >= 0 && val.i_int <= 32 )
1081         p_sys->param.analyse.i_luma_deadzone[1] = val.i_int;
1082
1083     var_Get( p_enc, SOUT_CFG_PREFIX "direct-8x8", &val );
1084     if( val.i_int >= -1 && val.i_int <= 1 )
1085         p_sys->param.analyse.i_direct_8x8_inference = val.i_int;
1086 #endif
1087
1088     var_Get( p_enc, SOUT_CFG_PREFIX "asm", &val );
1089     if( !val.b_bool ) p_sys->param.cpu = 0;
1090
1091 #ifndef X264_ANALYSE_BSUB16x16
1092 #   define X264_ANALYSE_BSUB16x16 0
1093 #endif
1094     var_Get( p_enc, SOUT_CFG_PREFIX "partitions", &val );
1095     if( !strcmp( val.psz_string, "none" ) )
1096     {
1097         p_sys->param.analyse.inter = 0;
1098     }
1099     else if( !strcmp( val.psz_string, "fast" ) )
1100     {
1101         p_sys->param.analyse.inter = X264_ANALYSE_I4x4;
1102     }
1103     else if( !strcmp( val.psz_string, "normal" ) )
1104     {
1105         p_sys->param.analyse.inter =
1106             X264_ANALYSE_I4x4 |
1107             X264_ANALYSE_PSUB16x16;
1108 #ifdef X264_ANALYSE_I8x8
1109         p_sys->param.analyse.inter |= X264_ANALYSE_I8x8;
1110 #endif
1111     }
1112     else if( !strcmp( val.psz_string, "slow" ) )
1113     {
1114         p_sys->param.analyse.inter =
1115             X264_ANALYSE_I4x4 |
1116             X264_ANALYSE_PSUB16x16 |
1117             X264_ANALYSE_BSUB16x16;
1118 #ifdef X264_ANALYSE_I8x8
1119         p_sys->param.analyse.inter |= X264_ANALYSE_I8x8;
1120 #endif
1121     }
1122     else if( !strcmp( val.psz_string, "all" ) )
1123     {
1124         p_sys->param.analyse.inter =
1125             X264_ANALYSE_I4x4 |
1126             X264_ANALYSE_PSUB16x16 |
1127             X264_ANALYSE_BSUB16x16 |
1128             X264_ANALYSE_PSUB8x8;
1129 #ifdef X264_ANALYSE_I8x8
1130         p_sys->param.analyse.inter |= X264_ANALYSE_I8x8;
1131 #endif
1132     }
1133     free( val.psz_string );
1134
1135 #if X264_BUILD >= 30
1136     var_Get( p_enc, SOUT_CFG_PREFIX "8x8dct", &val );
1137     p_sys->param.analyse.b_transform_8x8 = val.b_bool;
1138 #endif
1139
1140     if( p_enc->fmt_in.video.i_aspect > 0 )
1141     {
1142         int64_t i_num, i_den;
1143         unsigned int i_dst_num, i_dst_den;
1144
1145         i_num = p_enc->fmt_in.video.i_aspect *
1146             (int64_t)p_enc->fmt_in.video.i_height;
1147         i_den = VOUT_ASPECT_FACTOR * p_enc->fmt_in.video.i_width;
1148         vlc_ureduce( &i_dst_num, &i_dst_den, i_num, i_den, 0 );
1149
1150         p_sys->param.vui.i_sar_width = i_dst_num;
1151         p_sys->param.vui.i_sar_height = i_dst_den;
1152     }
1153     if( p_enc->fmt_in.video.i_frame_rate_base > 0 )
1154     {
1155         p_sys->param.i_fps_num = p_enc->fmt_in.video.i_frame_rate;
1156         p_sys->param.i_fps_den = p_enc->fmt_in.video.i_frame_rate_base;
1157     }
1158
1159     unsigned i_cpu = vlc_CPU();
1160     if( !(i_cpu & CPU_CAPABILITY_MMX) )
1161     {
1162         p_sys->param.cpu &= ~X264_CPU_MMX;
1163     }
1164     if( !(i_cpu & CPU_CAPABILITY_MMXEXT) )
1165     {
1166         p_sys->param.cpu &= ~X264_CPU_MMXEXT;
1167     }
1168     if( !(i_cpu & CPU_CAPABILITY_SSE) )
1169     {
1170         p_sys->param.cpu &= ~X264_CPU_SSE;
1171     }
1172     if( !(i_cpu & CPU_CAPABILITY_SSE2) )
1173     {
1174         p_sys->param.cpu &= ~X264_CPU_SSE2;
1175     }
1176
1177     /* BUILD 29 adds support for multi-threaded encoding while BUILD 49 (r543)
1178        also adds support for threads = 0 for automatically selecting an optimal
1179        value (cores * 1.5) based on detected CPUs. Default behavior for x264 is
1180        threads = 1, however VLC usage differs and uses threads = 0 (auto) by
1181        default unless ofcourse transcode threads is explicitly specified.. */
1182 #if X264_BUILD >= 29
1183     p_sys->param.i_threads = p_enc->i_threads;
1184 #endif
1185
1186     var_Get( p_enc, SOUT_CFG_PREFIX "stats", &val );
1187     if( val.psz_string )
1188     {
1189         p_sys->param.rc.psz_stat_in  =
1190         p_sys->param.rc.psz_stat_out =
1191         p_sys->psz_stat_name         = val.psz_string;
1192     }
1193
1194     var_Get( p_enc, SOUT_CFG_PREFIX "pass", &val );
1195     if( val.i_int > 0 && val.i_int <= 3 )
1196     {
1197         p_sys->param.rc.b_stat_write = val.i_int & 1;
1198         p_sys->param.rc.b_stat_read = val.i_int & 2;
1199     }
1200
1201     /* We need to initialize pthreadw32 before we open the encoder,
1202        but only oncce for the whole application. Since pthreadw32
1203        doesn't keep a refcount, do it ourselves. */
1204 #ifdef PTW32_STATIC_LIB
1205     vlc_value_t lock, count;
1206
1207     var_Create( p_enc->p_libvlc, "pthread_win32_mutex", VLC_VAR_MUTEX );
1208     var_Get( p_enc->p_libvlc, "pthread_win32_mutex", &lock );
1209     vlc_mutex_lock( lock.p_address );
1210
1211     var_Create( p_enc->p_libvlc, "pthread_win32_count", VLC_VAR_INTEGER );
1212     var_Get( p_enc->p_libvlc, "pthread_win32_count", &count );
1213
1214     if( count.i_int == 0 )
1215     {   
1216         msg_Dbg( p_enc, "initializing pthread-win32" );
1217         if( !pthread_win32_process_attach_np() || !pthread_win32_thread_attach_np() )   
1218         {   
1219             msg_Warn( p_enc, "pthread Win32 Initialization failed" );
1220             vlc_mutex_unlock( lock.p_address );
1221             return VLC_EGENERIC;
1222         }
1223     }
1224
1225     count.i_int++;
1226     var_Set( p_enc->p_libvlc, "pthread_win32_count", count );
1227     vlc_mutex_unlock( lock.p_address );
1228
1229 #endif
1230
1231     /* Open the encoder */
1232     p_sys->h = x264_encoder_open( &p_sys->param );
1233
1234     /* alloc mem */
1235     p_sys->i_buffer = 4 * p_enc->fmt_in.video.i_width *
1236         p_enc->fmt_in.video.i_height + 1000;
1237     p_sys->p_buffer = malloc( p_sys->i_buffer );
1238
1239     /* get the globals headers */
1240     p_enc->fmt_out.i_extra = 0;
1241     p_enc->fmt_out.p_extra = NULL;
1242
1243     x264_encoder_headers( p_sys->h, &nal, &i_nal );
1244     for( i = 0; i < i_nal; i++ )
1245     {
1246         int i_size = p_sys->i_buffer;
1247
1248         x264_nal_encode( p_sys->p_buffer, &i_size, 1, &nal[i] );
1249
1250         p_enc->fmt_out.p_extra = realloc( p_enc->fmt_out.p_extra, p_enc->fmt_out.i_extra + i_size );
1251
1252         memcpy( (uint8_t*)p_enc->fmt_out.p_extra + p_enc->fmt_out.i_extra,
1253             p_sys->p_buffer, i_size );
1254
1255         p_enc->fmt_out.i_extra += i_size;
1256     }
1257
1258     return VLC_SUCCESS;
1259 }
1260
1261 /****************************************************************************
1262  * Encode:
1263  ****************************************************************************/
1264 static block_t *Encode( encoder_t *p_enc, picture_t *p_pict )
1265 {
1266     encoder_sys_t *p_sys = p_enc->p_sys;
1267     x264_picture_t pic;
1268     x264_nal_t *nal;
1269     block_t *p_block;
1270     int i_nal, i_out, i;
1271
1272     /* init pic */
1273     memset( &pic, 0, sizeof( x264_picture_t ) );
1274     pic.i_pts = p_pict->date;
1275     pic.img.i_csp = X264_CSP_I420;
1276     pic.img.i_plane = p_pict->i_planes;
1277     for( i = 0; i < p_pict->i_planes; i++ )
1278     {
1279         pic.img.plane[i] = p_pict->p[i].p_pixels;
1280         pic.img.i_stride[i] = p_pict->p[i].i_pitch;
1281     }
1282
1283 #if X264_BUILD >= 0x0013
1284     x264_encoder_encode( p_sys->h, &nal, &i_nal, &pic, &pic );
1285 #else
1286     x264_encoder_encode( p_sys->h, &nal, &i_nal, &pic );
1287 #endif
1288
1289     if( !i_nal ) return NULL;
1290
1291     for( i = 0, i_out = 0; i < i_nal; i++ )
1292     {
1293         int i_size = p_sys->i_buffer - i_out;
1294         x264_nal_encode( p_sys->p_buffer + i_out, &i_size, 1, &nal[i] );
1295
1296         i_out += i_size;
1297     }
1298
1299     p_block = block_New( p_enc, i_out );
1300     memcpy( p_block->p_buffer, p_sys->p_buffer, i_out );
1301
1302     if( pic.i_type == X264_TYPE_IDR || pic.i_type == X264_TYPE_I )
1303         p_block->i_flags |= BLOCK_FLAG_TYPE_I;
1304     else if( pic.i_type == X264_TYPE_P )
1305         p_block->i_flags |= BLOCK_FLAG_TYPE_P;
1306     else if( pic.i_type == X264_TYPE_B )
1307         p_block->i_flags |= BLOCK_FLAG_TYPE_B;
1308
1309     /* This isn't really valid for streams with B-frames */
1310     p_block->i_length = I64C(1000000) *
1311         p_enc->fmt_in.video.i_frame_rate_base /
1312             p_enc->fmt_in.video.i_frame_rate;
1313
1314     p_block->i_pts = pic.i_pts;
1315
1316     if( p_sys->param.i_bframe > 0 )
1317     {
1318         if( p_block->i_flags & BLOCK_FLAG_TYPE_B )
1319         {
1320             /* FIXME : this is wrong if bpyramid is set */
1321             p_block->i_dts = p_block->i_pts;
1322             p_sys->i_interpolated_dts = p_block->i_dts;
1323         }
1324         else
1325         {
1326             if( p_sys->i_interpolated_dts )
1327             {
1328                 p_block->i_dts = p_sys->i_interpolated_dts;
1329             }
1330             else
1331             {
1332                 /* Let's put something sensible */
1333                 p_block->i_dts = p_block->i_pts;
1334             }
1335
1336             p_sys->i_interpolated_dts += p_block->i_length;
1337         }
1338     }
1339     else
1340     {
1341         p_block->i_dts = p_block->i_pts;
1342     }
1343
1344     return p_block;
1345 }
1346
1347 /*****************************************************************************
1348  * CloseEncoder: x264 encoder destruction
1349  *****************************************************************************/
1350 static void Close( vlc_object_t *p_this )
1351 {
1352     encoder_t     *p_enc = (encoder_t *)p_this;
1353     encoder_sys_t *p_sys = p_enc->p_sys;
1354
1355     free( p_sys->psz_stat_name );
1356
1357     x264_encoder_close( p_sys->h );
1358
1359 #ifdef PTW32_STATIC_LIB
1360     vlc_value_t lock, count;
1361
1362     var_Create( p_enc->p_libvlc, "pthread_win32_mutex", VLC_VAR_MUTEX );
1363     var_Get( p_enc->p_libvlc, "pthread_win32_mutex", &lock );
1364     vlc_mutex_lock( lock.p_address );
1365
1366     var_Create( p_enc->p_libvlc, "pthread_win32_count", VLC_VAR_INTEGER );
1367     var_Get( p_enc->p_libvlc, "pthread_win32_count", &count );
1368     count.i_int--;
1369     var_Set( p_enc->p_libvlc, "pthread_win32_count", count );
1370
1371     if( count.i_int == 0 )
1372     {
1373         pthread_win32_thread_detach_np();
1374         pthread_win32_process_detach_np();
1375         msg_Dbg( p_enc, "pthread-win32 deinitialized" );
1376     }
1377     vlc_mutex_unlock( lock.p_address );
1378 #endif
1379
1380     free( p_sys->p_buffer );
1381     free( p_sys );
1382 }