]> git.sesse.net Git - vlc/blob - modules/codec/x264.c
Fix allocation size mismatch (cid #1047373)
[vlc] / modules / codec / x264.c
1 /*****************************************************************************
2  * x264.c: h264 video encoder
3  *****************************************************************************
4  * Copyright (C) 2004-2010 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Ilkka Ollakka <ileoo (at)videolan org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc_common.h>
33 #include <vlc_plugin.h>
34 #include <vlc_sout.h>
35 #include <vlc_codec.h>
36 #include <vlc_charset.h>
37 #include <vlc_cpu.h>
38 #include <math.h>
39
40 #ifdef PTW32_STATIC_LIB
41 #include <pthread.h>
42 #endif
43 #include <x264.h>
44
45 #include <assert.h>
46
47 #ifdef MODULE_NAME_IS_x26410b
48 #define SOUT_CFG_PREFIX "sout-x26410b-"
49 #else
50 #define SOUT_CFG_PREFIX "sout-x264-"
51 #endif
52
53 /*****************************************************************************
54  * Module descriptor
55  *****************************************************************************/
56 static int  Open ( vlc_object_t * );
57 static void Close( vlc_object_t * );
58 static void x264_log( void *, int i_level, const char *psz, va_list );
59
60 /* Frame-type options */
61
62 #define KEYINT_TEXT N_("Maximum GOP size")
63 #define KEYINT_LONGTEXT N_( "Sets maximum interval between IDR-frames." \
64     "Larger values save bits, thus improving quality for a given bitrate at " \
65     "the cost of seeking precision. Use -1 for infinite." )
66
67 #define MIN_KEYINT_TEXT N_("Minimum GOP size")
68 #define MIN_KEYINT_LONGTEXT N_( "Sets minimum interval between IDR-frames. " \
69     "In H.264, I-frames do not necessarily bound a closed GOP because it is " \
70     "allowable for a P-frame to be predicted from more frames than just the " \
71     "one frame before it (also see reference frame option). Therefore, " \
72     "I-frames are not necessarily seekable. IDR-frames restrict subsequent " \
73     "P-frames from referring to any frame prior to the IDR-frame. \n" \
74     "If scenecuts appear within this interval, they are still encoded as " \
75     "I-frames, but do not start a new GOP." )
76
77 #define OPENGOP_TEXT N_("Use recovery points to close GOPs")
78 #if X264_BUILD < 115
79 #define OPENGOP_LONGTEXT N_("none: use closed GOPs only\n"\
80     "normal: use standard open GOPs\n" \
81     "bluray: use Blu-ray compatible open GOPs" )
82 #else
83 #define OPENGOP_LONGTEXT N_("use open GOP, for bluray compatibility use also bluray-compat option")
84 #endif
85
86 #define BLURAY_TEXT N_("Enable compatibility hacks for Blu-ray support")
87 #define BLURAY_LONGTEXT N_("Enable hacks for Blu-ray support, this doesn't enforce every aspect of Blu-ray compatibility\n" \
88     "e.g. resolution, framerate, level" )
89
90 #define SCENE_TEXT N_("Extra I-frames aggressivity" )
91 #define SCENE_LONGTEXT N_( "Scene-cut detection. Controls how " \
92     "aggressively to insert extra I-frames. With small values of " \
93     "scenecut, the codec often has " \
94     "to force an I-frame when it would exceed keyint. " \
95     "Good values of scenecut may find a better location for the " \
96     "I-frame. Large values use more I-frames " \
97     "than necessary, thus wasting bits. -1 disables scene-cut detection, so " \
98     "I-frames are inserted only every other keyint frames, which probably " \
99     "leads to ugly encoding artifacts. Range 1 to 100." )
100
101
102 #define BFRAMES_TEXT N_("B-frames between I and P")
103 #define BFRAMES_LONGTEXT N_( "Number of consecutive B-frames between I and " \
104     "P-frames. Range 1 to 16." )
105
106 #define B_ADAPT_TEXT N_("Adaptive B-frame decision")
107 #define B_ADAPT_LONGTEXT N_( "Force the specified number of " \
108     "consecutive B-frames to be used, except possibly before an I-frame." \
109     "Range 0 to 2." )
110
111 #define B_BIAS_TEXT N_("Influence (bias) B-frames usage")
112 #define B_BIAS_LONGTEXT N_( "Bias the choice to use B-frames. Positive values " \
113     "cause more B-frames, negative values cause less B-frames." )
114
115
116 #define BPYRAMID_TEXT N_("Keep some B-frames as references")
117 #define BPYRAMID_LONGTEXT N_( "Allows B-frames to be used as references for " \
118     "predicting other frames. Keeps the middle of 2+ consecutive B-frames " \
119     "as a reference, and reorders frame appropriately.\n" \
120     " - none: Disabled\n" \
121     " - strict: Strictly hierarchical pyramid\n" \
122     " - normal: Non-strict (not Blu-ray compatible)\n"\
123     )
124
125 #define FULLRANGE_TEXT N_("Use fullrange instead of TV colorrange")
126 #define FULLRANGE_LONGTEXT N_("TV-range is usually used colorrange, defining this to true " \
127                               "will enable libx264 to use full colorrange on encoding")
128
129 #define CABAC_TEXT N_("CABAC")
130 #define CABAC_LONGTEXT N_( "CABAC (Context-Adaptive Binary Arithmetic "\
131     "Coding). Slightly slows down encoding and decoding, but should save " \
132     "10 to 15% bitrate." )
133
134 #define REF_TEXT N_("Number of reference frames")
135 #define REF_LONGTEXT N_( "Number of previous frames used as predictors. " \
136     "This is effective in Anime, but seems to make little difference in " \
137     "live-action source material. Some decoders are unable to deal with " \
138     "large frameref values. Range 1 to 16." )
139
140 #define NF_TEXT N_("Skip loop filter")
141 #define NF_LONGTEXT N_( "Deactivate the deblocking loop filter (decreases quality).")
142
143 #define FILTER_TEXT N_("Loop filter AlphaC0 and Beta parameters alpha:beta")
144 #define FILTER_LONGTEXT N_( "Loop filter AlphaC0 and Beta parameters. " \
145     "Range -6 to 6 for both alpha and beta parameters. -6 means light " \
146     "filter, 6 means strong.")
147
148 #define LEVEL_TEXT N_("H.264 level")
149 #define LEVEL_LONGTEXT N_( "Specify H.264 level (as defined by Annex A " \
150     "of the standard). Levels are not enforced; it's up to the user to select " \
151     "a level compatible with the rest of the encoding options. Range 1 to 5.1 " \
152     "(10 to 51 is also allowed). Set to 0 for letting x264 set level.")
153
154 #define PROFILE_TEXT N_("H.264 profile")
155 #define PROFILE_LONGTEXT N_("Specify H.264 profile which limits are enforced over " \
156         "other settings" )
157
158 /* In order to play an interlaced output stream encoded by x264, a decoder needs
159    mbaff support. r570 is using the 'mb' part and not 'aff' yet; so it's really
160    'pure-interlaced' mode */
161 #define INTERLACED_TEXT N_("Interlaced mode")
162 #define INTERLACED_LONGTEXT N_( "Pure-interlaced mode.")
163
164 #define FRAMEPACKING_TEXT N_("Frame packing")
165 #define FRAMEPACKING_LONGTEXT N_( "For stereoscopic videos define frame arrangement:\n" \
166     " 0: checkerboard - pixels are alternatively from L and R\n" \
167     " 1: column alternation - L and R are interlaced by column\n" \
168     " 2: row alternation - L and R are interlaced by row\n" \
169     " 3: side by side - L is on the left, R on the right\n" \
170     " 4: top bottom - L is on top, R on bottom\n" \
171     " 5: frame alternation - one view per frame" )
172
173 #define INTRAREFRESH_TEXT N_("Use Periodic Intra Refresh")
174 #define INTRAREFRESH_LONGTEXT N_("Use Periodic Intra Refresh instead of IDR frames")
175
176 #define MBTREE_TEXT N_("Use mb-tree ratecontrol")
177 #define MBTREE_LONGTEXT N_("You can disable use of Macroblock-tree on ratecontrol")
178
179 #define SLICE_COUNT N_("Force number of slices per frame")
180 #define SLICE_COUNT_LONGTEXT N_("Force rectangular slices and is overridden by other slicing options")
181
182 #define SLICE_MAX_SIZE N_("Limit the size of each slice in bytes")
183 #define SLICE_MAX_SIZE_LONGTEXT N_("Sets a maximum slice size in bytes, Includes NAL overhead in size")
184
185 #define SLICE_MAX_MBS N_("Limit the size of each slice in macroblocks")
186 #define SLICE_MAX_MBS_LONGTEXT N_("Sets a maximum number of macroblocks per slice")
187 /* Ratecontrol */
188
189 #define QP_TEXT N_("Set QP")
190 #define QP_LONGTEXT N_( "This selects the quantizer to use. " \
191     "Lower values result in better fidelity, but higher bitrates. 26 is a " \
192     "good default value. Range 0 (lossless) to 51." )
193
194 #define CRF_TEXT N_("Quality-based VBR")
195 #define CRF_LONGTEXT N_( "1-pass Quality-based VBR. Range 0 to 51." )
196
197 #define QPMIN_TEXT N_("Min QP")
198 #define QPMIN_LONGTEXT N_( "Minimum quantizer parameter. 15 to 35 seems to " \
199     "be a useful range." )
200
201 #define QPMAX_TEXT N_("Max QP")
202 #define QPMAX_LONGTEXT N_( "Maximum quantizer parameter." )
203
204 #define QPSTEP_TEXT N_("Max QP step")
205 #define QPSTEP_LONGTEXT N_( "Max QP step between frames.")
206
207 #define RATETOL_TEXT N_("Average bitrate tolerance")
208 #define RATETOL_LONGTEXT N_( "Allowed variance in average " \
209     "bitrate (in kbits/s).")
210
211 #define VBV_MAXRATE_TEXT N_("Max local bitrate")
212 #define VBV_MAXRATE_LONGTEXT N_( "Sets a maximum local bitrate (in kbits/s).")
213
214 #define VBV_BUFSIZE_TEXT N_("VBV buffer")
215 #define VBV_BUFSIZE_LONGTEXT N_( "Averaging period for the maximum " \
216     "local bitrate (in kbits).")
217
218 #define VBV_INIT_TEXT N_("Initial VBV buffer occupancy")
219 #define VBV_INIT_LONGTEXT N_( "Sets the initial buffer occupancy as a " \
220     "fraction of the buffer size. Range 0.0 to 1.0.")
221
222 #define AQ_MODE_TEXT N_("How AQ distributes bits")
223 #define AQ_MODE_LONGTEXT N_("Defines bitdistribution mode for AQ, default 1\n" \
224         " - 0: Disabled\n"\
225         " - 1: Current x264 default mode\n"\
226         " - 2: uses log(var)^2 instead of log(var) and attempts to adapt strength per frame")
227
228 #define AQ_STRENGTH_TEXT N_("Strength of AQ")
229 #define AQ_STRENGTH_LONGTEXT N_("Strength to reduce blocking and blurring in flat\n"\
230         "and textured areas, default 1.0 recommended to be between 0..2\n"\
231         " - 0.5: weak AQ\n"\
232         " - 1.5: strong AQ")
233
234 /* IP Ratio < 1 is technically valid but should never improve quality */
235 #define IPRATIO_TEXT N_("QP factor between I and P")
236 #define IPRATIO_LONGTEXT N_( "QP factor between I and P. Range 1.0 to 2.0.")
237
238 /* PB ratio < 1 is not valid and breaks ratecontrol */
239 #define PBRATIO_TEXT N_("QP factor between P and B")
240 #define PBRATIO_LONGTEXT N_( "QP factor between P and B. Range 1.0 to 2.0.")
241
242 #define CHROMA_QP_OFFSET_TEXT N_("QP difference between chroma and luma")
243 #define CHROMA_QP_OFFSET_LONGTEXT N_( "QP difference between chroma and luma.")
244
245 #define PASS_TEXT N_("Multipass ratecontrol")
246 #define PASS_LONGTEXT N_( "Multipass ratecontrol:\n" \
247     " - 1: First pass, creates stats file\n" \
248     " - 2: Last pass, does not overwrite stats file\n" \
249     " - 3: Nth pass, overwrites stats file\n" )
250
251 #define QCOMP_TEXT N_("QP curve compression")
252 #define QCOMP_LONGTEXT N_( "QP curve compression. Range 0.0 (CBR) to 1.0 (QCP).")
253
254 #define CPLXBLUR_TEXT N_("Reduce fluctuations in QP")
255 #define CPLXBLUR_LONGTEXT N_( "This reduces the fluctuations in QP " \
256     "before curve compression. Temporally blurs complexity.")
257
258 #define QBLUR_TEXT N_("Reduce fluctuations in QP")
259 #define QBLUR_LONGTEXT N_( "This reduces the fluctuations in QP " \
260     "after curve compression. Temporally blurs quants.")
261
262 /* Analysis */
263
264 #define ANALYSE_TEXT N_("Partitions to consider")
265 #define ANALYSE_LONGTEXT N_( "Partitions to consider in analyse mode: \n" \
266     " - none  : \n" \
267     " - fast  : i4x4\n" \
268     " - normal: i4x4,p8x8,(i8x8)\n" \
269     " - slow  : i4x4,p8x8,(i8x8),b8x8\n" \
270     " - all   : i4x4,p8x8,(i8x8),b8x8,p4x4\n" \
271     "(p4x4 requires p8x8. i8x8 requires 8x8dct).")
272
273 #define DIRECT_PRED_TEXT N_("Direct MV prediction mode")
274 #define DIRECT_PRED_LONGTEXT DIRECT_PRED_TEXT
275
276 #define DIRECT_PRED_SIZE_TEXT N_("Direct prediction size")
277 #define DIRECT_PRED_SIZE_LONGTEXT N_( "Direct prediction size: "\
278     " -  0: 4x4\n" \
279     " -  1: 8x8\n" \
280     " - -1: smallest possible according to level\n" )
281
282 #define WEIGHTB_TEXT N_("Weighted prediction for B-frames")
283 #define WEIGHTB_LONGTEXT N_( "Weighted prediction for B-frames.")
284
285 #define WEIGHTP_TEXT N_("Weighted prediction for P-frames")
286 #define WEIGHTP_LONGTEXT N_(" Weighted prediction for P-frames: "\
287     " - 0: Disabled\n"\
288     " - 1: Blind offset\n"\
289     " - 2: Smart analysis\n" )
290
291 #define ME_TEXT N_("Integer pixel motion estimation method")
292 #define ME_LONGTEXT N_( "Selects the motion estimation algorithm: "\
293     " - dia: diamond search, radius 1 (fast)\n" \
294     " - hex: hexagonal search, radius 2\n" \
295     " - umh: uneven multi-hexagon search (better but slower)\n" \
296     " - esa: exhaustive search (extremely slow, primarily for testing)\n" \
297     " - tesa: hadamard exhaustive search (extremely slow, primarily for testing)\n" )
298
299 #define MERANGE_TEXT N_("Maximum motion vector search range")
300 #define MERANGE_LONGTEXT N_( "Maximum distance to search for " \
301     "motion estimation, measured from predicted position(s). " \
302     "Default of 16 is good for most footage, high motion sequences may " \
303     "benefit from settings between 24 and 32. Range 0 to 64." )
304
305 #define MVRANGE_TEXT N_("Maximum motion vector length")
306 #define MVRANGE_LONGTEXT N_( "Maximum motion vector length in pixels. " \
307     "-1 is automatic, based on level." )
308
309 #define MVRANGE_THREAD_TEXT N_("Minimum buffer space between threads")
310 #define MVRANGE_THREAD_LONGTEXT N_( "Minimum buffer space between threads. " \
311     "-1 is automatic, based on number of threads." )
312
313 #define PSY_RD_TEXT N_( "Strength of psychovisual optimization, default is \"1.0:0.0\"")
314 #define PSY_RD_LONGTEXT N_( "First parameter controls if RD is on (subme>=6) or off.\n"\
315         "Second parameter controls if Trellis is used on psychovisual optimization, " \
316         "default off")
317
318 #define SUBME_TEXT N_("Subpixel motion estimation and partition decision " \
319     "quality")
320 #define SUBME_LONGTEXT N_( "This parameter controls quality versus speed " \
321     "tradeoffs involved in the motion estimation decision process " \
322     "(lower = quicker and higher = better quality). Range 1 to 9." )
323
324 #define B_RDO_LONGTEXT N_( "RD based mode decision for B-frames. This " \
325     "requires subme 6 (or higher).")
326
327 #define MIXED_REFS_TEXT N_("Decide references on a per partition basis")
328 #define MIXED_REFS_LONGTEXT N_( "Allows each 8x8 or 16x8 partition to " \
329     "independently select a reference frame, as opposed to only one ref " \
330     "per macroblock." )
331
332 #define CHROMA_ME_TEXT N_("Chroma in motion estimation")
333 #define CHROMA_ME_LONGTEXT N_( "Chroma ME for subpel and mode decision in " \
334     "P-frames.")
335
336 #define BIME_LONGTEXT N_( "Joint bidirectional motion refinement.")
337
338 #define TRANSFORM_8X8DCT_TEXT N_("Adaptive spatial transform size")
339 #define TRANSFORM_8X8DCT_LONGTEXT N_( \
340     "SATD-based decision for 8x8 transform in inter-MBs.")
341
342 #define TRELLIS_TEXT N_("Trellis RD quantization" )
343 #define TRELLIS_LONGTEXT N_( "Trellis RD quantization: \n" \
344     " - 0: disabled\n" \
345     " - 1: enabled only on the final encode of a MB\n" \
346     " - 2: enabled on all mode decisions\n" \
347     "This requires CABAC." )
348
349 #define FAST_PSKIP_TEXT N_("Early SKIP detection on P-frames")
350 #define FAST_PSKIP_LONGTEXT N_( "Early SKIP detection on P-frames.")
351
352 #define DCT_DECIMATE_TEXT N_("Coefficient thresholding on P-frames")
353 #define DCT_DECIMATE_LONGTEXT N_( "Coefficient thresholding on P-frames." \
354     "Eliminate dct blocks containing only a small single coefficient.")
355
356 #define PSY_TEXT N_("Use Psy-optimizations")
357 #define PSY_LONGTEXT N_("Use all visual optimizations that can worsen both PSNR and SSIM")
358
359 /* Noise reduction 1 is too weak to measure, suggest at least 10 */
360 #define NR_TEXT N_("Noise reduction")
361 #define NR_LONGTEXT N_( "Dct-domain noise reduction. Adaptive pseudo-deadzone. " \
362     "10 to 1000 seems to be a useful range." )
363
364 #define DEADZONE_INTER_TEXT N_("Inter luma quantization deadzone")
365 #define DEADZONE_INTER_LONGTEXT N_( "Set the size of the inter luma quantization deadzone. " \
366     "Range 0 to 32." )
367
368 #define DEADZONE_INTRA_TEXT N_("Intra luma quantization deadzone")
369 #define DEADZONE_INTRA_LONGTEXT N_( "Set the size of the intra luma quantization deadzone. " \
370     "Range 0 to 32." )
371
372 /* Input/Output */
373
374 #define NON_DETERMINISTIC_TEXT N_("Non-deterministic optimizations when threaded")
375 #define NON_DETERMINISTIC_LONGTEXT N_( "Slightly improve quality of SMP, " \
376     "at the cost of repeatability.")
377
378 #define ASM_TEXT N_("CPU optimizations")
379 #define ASM_LONGTEXT N_( "Use assembler CPU optimizations.")
380
381 #define STATS_TEXT N_("Filename for 2 pass stats file")
382 #define STATS_LONGTEXT N_( "Filename for 2 pass stats file for multi-pass encoding.")
383
384 #define PSNR_TEXT N_("PSNR computation")
385 #define PSNR_LONGTEXT N_( "Compute and print PSNR stats. This has no effect on " \
386     "the actual encoding quality." )
387
388 #define SSIM_TEXT N_("SSIM computation")
389 #define SSIM_LONGTEXT N_( "Compute and print SSIM stats. This has no effect on " \
390     "the actual encoding quality." )
391
392 #define QUIET_TEXT N_("Quiet mode")
393
394 #define VERBOSE_TEXT N_("Statistics")
395 #define VERBOSE_LONGTEXT N_( "Print stats for each frame.")
396
397 #define SPS_ID_TEXT N_("SPS and PPS id numbers")
398 #define SPS_ID_LONGTEXT N_( "Set SPS and PPS id numbers to allow concatenating " \
399     "streams with different settings.")
400
401 #define AUD_TEXT N_("Access unit delimiters")
402 #define AUD_LONGTEXT N_( "Generate access unit delimiter NAL units.")
403
404 #define LOOKAHEAD_TEXT N_("Framecount to use on frametype lookahead")
405 #define LOOKAHEAD_LONGTEXT N_("Framecount to use on frametype lookahead. " \
406     "Currently default can cause sync-issues on unmuxable output, like rtsp-output without ts-mux" )
407
408 #define HRD_TEXT N_("HRD-timing information")
409 #define TUNE_TEXT N_("Default tune setting used" )
410 #define PRESET_TEXT N_("Default preset setting used" )
411
412 #define X264_OPTIONS_TEXT N_("x264 advanced options.")
413 #define X264_OPTIONS_LONGTEXT N_("x264 advanced options, in the form {opt=val,op2=val2} .")
414
415 static const char *const enc_me_list[] =
416   { "dia", "hex", "umh", "esa", "tesa" };
417 static const char *const enc_me_list_text[] =
418   { N_("dia"), N_("hex"), N_("umh"), N_("esa"), N_("tesa") };
419
420 static const char *const profile_list[] =
421   { "baseline", "main", "high" };
422
423 static const char *const bpyramid_list[] =
424   { "none", "strict", "normal" };
425
426 static const char *const enc_analyse_list[] =
427   { "none", "fast", "normal", "slow", "all" };
428 static const char *const enc_analyse_list_text[] =
429   { N_("None"), N_("Fast"), N_("Normal"), N_("Slow"), N_("All") };
430
431 static const char *const direct_pred_list[] =
432   { "none", "spatial", "temporal", "auto" };
433 static const char *const direct_pred_list_text[] =
434   { N_("None"), N_("Spatial"), N_("Temporal"), N_("Auto") };
435
436 static const int const framepacking_list[] =
437   { -1, 0, 1, 2, 3, 4, 5 };
438 static const char *const framepacking_list_text[] =
439   { "", N_("checkerboard"), N_("column alternation"), N_("row alternation"), N_("side by side"), N_("top bottom"), N_("frame alternation") };
440
441 vlc_module_begin ()
442 #ifdef MODULE_NAME_IS_x26410b
443     set_description( N_("H.264/MPEG-4 Part 10/AVC encoder (x264 10-bit)"))
444     set_capability( "encoder", 0 )
445 #else
446     set_description( N_("H.264/MPEG-4 Part 10/AVC encoder (x264)"))
447     set_capability( "encoder", 200 )
448 #endif
449     set_callbacks( Open, Close )
450     set_category( CAT_INPUT )
451     set_subcategory( SUBCAT_INPUT_VCODEC )
452
453 /* Frame-type options */
454
455     add_integer( SOUT_CFG_PREFIX "keyint", 250, KEYINT_TEXT,
456                  KEYINT_LONGTEXT, false )
457
458     add_integer( SOUT_CFG_PREFIX "min-keyint", 25, MIN_KEYINT_TEXT,
459                  MIN_KEYINT_LONGTEXT, true )
460
461 #if X264_BUILD >= 102 && X264_BUILD <= 114
462     add_string( SOUT_CFG_PREFIX "opengop", "none", OPENGOP_TEXT,
463                OPENGOP_LONGTEXT, true )
464         change_string_list( x264_open_gop_names, x264_open_gop_names )
465 #elif X264_BUILD > 114
466     add_bool( SOUT_CFG_PREFIX "opengop", false, OPENGOP_TEXT,
467                OPENGOP_LONGTEXT, true )
468     add_bool( SOUT_CFG_PREFIX "bluray-compat", false, BLURAY_TEXT,
469                BLURAY_LONGTEXT, true )
470 #endif
471
472     add_integer( SOUT_CFG_PREFIX "scenecut", 40, SCENE_TEXT,
473                  SCENE_LONGTEXT, true )
474         change_integer_range( -1, 100 )
475
476     add_obsolete_bool( SOUT_CFG_PREFIX "pre-scenecut" )
477
478     add_integer( SOUT_CFG_PREFIX "bframes", 3, BFRAMES_TEXT,
479                  BFRAMES_LONGTEXT, true )
480         change_integer_range( 0, 16 )
481
482     add_integer( SOUT_CFG_PREFIX "b-adapt", 1, B_ADAPT_TEXT,
483                  B_ADAPT_LONGTEXT, true )
484         change_integer_range( 0, 2 )
485
486     add_integer( SOUT_CFG_PREFIX "b-bias", 0, B_BIAS_TEXT,
487                  B_BIAS_LONGTEXT, true )
488         change_integer_range( -100, 100 )
489
490 #if X264_BUILD >= 87
491     add_string( SOUT_CFG_PREFIX "bpyramid", "normal", BPYRAMID_TEXT,
492               BPYRAMID_LONGTEXT, true )
493 #else
494     add_string( SOUT_CFG_PREFIX "bpyramid", "none", BPYRAMID_TEXT,
495               BPYRAMID_LONGTEXT, true )
496 #endif
497         change_string_list( bpyramid_list, bpyramid_list )
498
499     add_bool( SOUT_CFG_PREFIX "cabac", true, CABAC_TEXT, CABAC_LONGTEXT,
500               true )
501
502     add_bool( SOUT_CFG_PREFIX "fullrange", false, FULLRANGE_TEXT, FULLRANGE_LONGTEXT,
503               true )
504
505     add_integer( SOUT_CFG_PREFIX "ref", 3, REF_TEXT,
506                  REF_LONGTEXT, true )
507         change_integer_range( 1, 16 )
508
509     add_bool( SOUT_CFG_PREFIX "nf", false, NF_TEXT,
510               NF_LONGTEXT, true )
511
512     add_string( SOUT_CFG_PREFIX "deblock", "0:0", FILTER_TEXT,
513                  FILTER_LONGTEXT, true )
514
515     add_string( SOUT_CFG_PREFIX "psy-rd", "1.0:0.0", PSY_RD_TEXT,
516                 PSY_RD_LONGTEXT, true )
517
518     add_bool( SOUT_CFG_PREFIX "psy", true, PSY_TEXT, PSY_LONGTEXT, true )
519
520     add_string( SOUT_CFG_PREFIX "level", "0", LEVEL_TEXT,
521                LEVEL_LONGTEXT, false )
522
523     add_string( SOUT_CFG_PREFIX "profile", "high", PROFILE_TEXT,
524                PROFILE_LONGTEXT, false )
525         vlc_config_set (VLC_CONFIG_LIST,
526             (sizeof(x264_profile_names) / sizeof (char*)) - 1,
527             x264_profile_names, x264_profile_names);
528
529
530     add_bool( SOUT_CFG_PREFIX "interlaced", false, INTERLACED_TEXT, INTERLACED_LONGTEXT,
531               true )
532
533 #if X264_BUILD >= 111
534     add_integer( SOUT_CFG_PREFIX "frame-packing", -1, FRAMEPACKING_TEXT, FRAMEPACKING_LONGTEXT, true )
535         change_integer_list( framepacking_list, framepacking_list_text )
536         change_integer_range( -1, 5)
537 #endif
538
539     add_integer( SOUT_CFG_PREFIX "slices", 0, SLICE_COUNT, SLICE_COUNT_LONGTEXT, true )
540     add_integer( SOUT_CFG_PREFIX "slice-max-size", 0, SLICE_MAX_SIZE, SLICE_MAX_SIZE_LONGTEXT, true )
541     add_integer( SOUT_CFG_PREFIX "slice-max-mbs", 0, SLICE_MAX_MBS, SLICE_MAX_MBS_LONGTEXT, true )
542
543 #if X264_BUILD >= 89
544     add_string( SOUT_CFG_PREFIX "hrd", "none", HRD_TEXT, HRD_TEXT, true )
545         vlc_config_set (VLC_CONFIG_LIST,
546             (sizeof(x264_nal_hrd_names) / sizeof (char*)) - 1,
547             x264_nal_hrd_names, x264_nal_hrd_names);
548 #endif
549
550
551 /* Ratecontrol */
552
553     add_integer( SOUT_CFG_PREFIX "qp", -1, QP_TEXT, QP_LONGTEXT,
554                  true )
555         change_integer_range( -1, 51 ) /* QP 0 -> lossless encoding */
556
557     add_integer( SOUT_CFG_PREFIX "crf", 23, CRF_TEXT,
558                  CRF_LONGTEXT, true )
559         change_integer_range( 0, 51 )
560
561     add_integer( SOUT_CFG_PREFIX "qpmin", 10, QPMIN_TEXT,
562                  QPMIN_LONGTEXT, true )
563         change_integer_range( 0, 51 )
564
565     add_integer( SOUT_CFG_PREFIX "qpmax", 51, QPMAX_TEXT,
566                  QPMAX_LONGTEXT, true )
567         change_integer_range( 0, 51 )
568
569     add_integer( SOUT_CFG_PREFIX "qpstep", 4, QPSTEP_TEXT,
570                  QPSTEP_LONGTEXT, true )
571         change_integer_range( 0, 51 )
572
573     add_float( SOUT_CFG_PREFIX "ratetol", 1.0, RATETOL_TEXT,
574                RATETOL_LONGTEXT, true )
575         change_float_range( 0, 100 )
576
577     add_integer( SOUT_CFG_PREFIX "vbv-maxrate", 0, VBV_MAXRATE_TEXT,
578                  VBV_MAXRATE_LONGTEXT, true )
579
580     add_integer( SOUT_CFG_PREFIX "vbv-bufsize", 0, VBV_BUFSIZE_TEXT,
581                  VBV_BUFSIZE_LONGTEXT, true )
582
583     add_float( SOUT_CFG_PREFIX "vbv-init", 0.9, VBV_INIT_TEXT,
584                VBV_INIT_LONGTEXT, true )
585         change_float_range( 0, 1 )
586
587     add_float( SOUT_CFG_PREFIX "ipratio", 1.40, IPRATIO_TEXT,
588                IPRATIO_LONGTEXT, true )
589         change_float_range( 1, 2 )
590
591     add_float( SOUT_CFG_PREFIX "pbratio", 1.30, PBRATIO_TEXT,
592                PBRATIO_LONGTEXT, true )
593         change_float_range( 1, 2 )
594
595     add_integer( SOUT_CFG_PREFIX "chroma-qp-offset", 0, CHROMA_QP_OFFSET_TEXT,
596                  CHROMA_QP_OFFSET_LONGTEXT, true )
597
598     add_integer( SOUT_CFG_PREFIX "pass", 0, PASS_TEXT,
599                  PASS_LONGTEXT, false )
600         change_integer_range( 0, 3 )
601
602     add_float( SOUT_CFG_PREFIX "qcomp", 0.60, QCOMP_TEXT,
603                QCOMP_LONGTEXT, true )
604         change_float_range( 0, 1 )
605
606     add_float( SOUT_CFG_PREFIX "cplxblur", 20.0, CPLXBLUR_TEXT,
607                CPLXBLUR_LONGTEXT, true )
608
609     add_float( SOUT_CFG_PREFIX "qblur", 0.5, QBLUR_TEXT,
610                QBLUR_LONGTEXT, true )
611
612     add_integer( SOUT_CFG_PREFIX "aq-mode", X264_AQ_VARIANCE, AQ_MODE_TEXT,
613                  AQ_MODE_LONGTEXT, true )
614          change_integer_range( 0, 2 )
615     add_float( SOUT_CFG_PREFIX "aq-strength", 1.0, AQ_STRENGTH_TEXT,
616                AQ_STRENGTH_LONGTEXT, true )
617
618 /* Analysis */
619
620     /* x264 partitions = none (default). set at least "normal" mode. */
621     add_string( SOUT_CFG_PREFIX "partitions", "normal", ANALYSE_TEXT,
622                 ANALYSE_LONGTEXT, true )
623         change_string_list( enc_analyse_list, enc_analyse_list_text )
624
625     add_string( SOUT_CFG_PREFIX "direct", "spatial", DIRECT_PRED_TEXT,
626                 DIRECT_PRED_LONGTEXT, true )
627         change_string_list( direct_pred_list, direct_pred_list_text )
628
629     add_integer( SOUT_CFG_PREFIX "direct-8x8", 1, DIRECT_PRED_SIZE_TEXT,
630                  DIRECT_PRED_SIZE_LONGTEXT, true )
631         change_integer_range( -1, 1 )
632
633     add_bool( SOUT_CFG_PREFIX "weightb", true, WEIGHTB_TEXT,
634               WEIGHTB_LONGTEXT, true )
635
636     add_integer( SOUT_CFG_PREFIX "weightp", 2, WEIGHTP_TEXT,
637               WEIGHTP_LONGTEXT, true )
638         change_integer_range( 0, 2 )
639
640     add_string( SOUT_CFG_PREFIX "me", "hex", ME_TEXT,
641                 ME_LONGTEXT, true )
642         change_string_list( enc_me_list, enc_me_list_text )
643
644     add_integer( SOUT_CFG_PREFIX "merange", 16, MERANGE_TEXT,
645                  MERANGE_LONGTEXT, true )
646         change_integer_range( 1, 64 )
647
648     add_integer( SOUT_CFG_PREFIX "mvrange", -1, MVRANGE_TEXT,
649                  MVRANGE_LONGTEXT, true )
650
651     add_integer( SOUT_CFG_PREFIX "mvrange-thread", -1, MVRANGE_THREAD_TEXT,
652                  MVRANGE_THREAD_LONGTEXT, true )
653
654     add_integer( SOUT_CFG_PREFIX "subme", 7, SUBME_TEXT,
655                  SUBME_LONGTEXT, true )
656
657     add_obsolete_bool( SOUT_CFG_PREFIX "b-rdo" )
658
659     add_bool( SOUT_CFG_PREFIX "mixed-refs", true, MIXED_REFS_TEXT,
660               MIXED_REFS_LONGTEXT, true )
661
662     add_bool( SOUT_CFG_PREFIX "chroma-me", true, CHROMA_ME_TEXT,
663               CHROMA_ME_LONGTEXT, true )
664
665     add_obsolete_bool( SOUT_CFG_PREFIX "bime" )
666
667     add_bool( SOUT_CFG_PREFIX "8x8dct", true, TRANSFORM_8X8DCT_TEXT,
668               TRANSFORM_8X8DCT_LONGTEXT, true )
669
670     add_integer( SOUT_CFG_PREFIX "trellis", 1, TRELLIS_TEXT,
671                  TRELLIS_LONGTEXT, true )
672         change_integer_range( 0, 2 )
673
674     add_integer( SOUT_CFG_PREFIX "lookahead", 40, LOOKAHEAD_TEXT,
675                  LOOKAHEAD_LONGTEXT, true )
676         change_integer_range( 0, 60 )
677
678     add_bool( SOUT_CFG_PREFIX "intra-refresh", false, INTRAREFRESH_TEXT,
679               INTRAREFRESH_LONGTEXT, true )
680
681     add_bool( SOUT_CFG_PREFIX "mbtree", true, MBTREE_TEXT, MBTREE_LONGTEXT, true )
682
683     add_bool( SOUT_CFG_PREFIX "fast-pskip", true, FAST_PSKIP_TEXT,
684               FAST_PSKIP_LONGTEXT, true )
685
686     add_bool( SOUT_CFG_PREFIX "dct-decimate", true, DCT_DECIMATE_TEXT,
687               DCT_DECIMATE_LONGTEXT, true )
688
689     add_integer( SOUT_CFG_PREFIX "nr", 0, NR_TEXT,
690                  NR_LONGTEXT, true )
691         change_integer_range( 0, 1000 )
692
693     add_integer( SOUT_CFG_PREFIX "deadzone-inter", 21, DEADZONE_INTER_TEXT,
694                  DEADZONE_INTRA_LONGTEXT, true )
695         change_integer_range( 0, 32 )
696
697     add_integer( SOUT_CFG_PREFIX "deadzone-intra", 11, DEADZONE_INTRA_TEXT,
698                  DEADZONE_INTRA_LONGTEXT, true )
699         change_integer_range( 0, 32 )
700
701 /* Input/Output */
702
703     add_bool( SOUT_CFG_PREFIX "non-deterministic", false, NON_DETERMINISTIC_TEXT,
704               NON_DETERMINISTIC_LONGTEXT, true )
705
706     add_bool( SOUT_CFG_PREFIX "asm", true, ASM_TEXT,
707               ASM_LONGTEXT, true )
708
709     /* x264 psnr = 1 (default). disable PSNR computation for speed. */
710     add_bool( SOUT_CFG_PREFIX "psnr", false, PSNR_TEXT,
711               PSNR_LONGTEXT, true )
712
713     /* x264 ssim = 1 (default). disable SSIM computation for speed. */
714     add_bool( SOUT_CFG_PREFIX "ssim", false, SSIM_TEXT,
715               SSIM_LONGTEXT, true )
716
717     add_bool( SOUT_CFG_PREFIX "quiet", false, QUIET_TEXT,
718               QUIET_TEXT, true )
719
720     add_integer( SOUT_CFG_PREFIX "sps-id", 0, SPS_ID_TEXT,
721                  SPS_ID_LONGTEXT, true )
722
723     add_bool( SOUT_CFG_PREFIX "aud", false, AUD_TEXT,
724               AUD_LONGTEXT, true )
725
726     add_bool( SOUT_CFG_PREFIX "verbose", false, VERBOSE_TEXT,
727               VERBOSE_LONGTEXT, true )
728
729     add_string( SOUT_CFG_PREFIX "stats", "x264_2pass.log", STATS_TEXT,
730                 STATS_LONGTEXT, true )
731
732     add_string( SOUT_CFG_PREFIX "preset", NULL , PRESET_TEXT , PRESET_TEXT, false )
733         vlc_config_set (VLC_CONFIG_LIST,
734             (sizeof(x264_preset_names) / sizeof (char*)) - 1,
735             x264_preset_names, x264_preset_names);
736     add_string( SOUT_CFG_PREFIX "tune", NULL , TUNE_TEXT, TUNE_TEXT, false )
737         vlc_config_set (VLC_CONFIG_LIST,
738             (sizeof(x264_tune_names) / sizeof (char*)) - 1,
739             x264_tune_names, x264_tune_names);
740
741     add_string( SOUT_CFG_PREFIX "options", NULL, X264_OPTIONS_TEXT,
742                 X264_OPTIONS_LONGTEXT, true )
743
744 vlc_module_end ()
745
746 /*****************************************************************************
747  * Local prototypes
748  *****************************************************************************/
749 static const char *const ppsz_sout_options[] = {
750     "8x8dct", "asm", "aud", "bframes", "bime", "bpyramid",
751     "b-adapt", "b-bias", "b-rdo", "cabac", "chroma-me", "chroma-qp-offset",
752     "cplxblur", "crf", "dct-decimate", "deadzone-inter", "deadzone-intra",
753     "deblock", "direct", "direct-8x8", "fast-pskip",
754     "interlaced", "ipratio", "keyint", "level",
755     "me", "merange", "min-keyint", "mixed-refs", "mvrange", "mvrange-thread",
756     "nf", "non-deterministic", "nr", "partitions", "pass", "pbratio",
757     "pre-scenecut", "psnr", "qblur", "qp", "qcomp", "qpstep", "qpmax",
758     "qpmin", "quiet", "ratetol", "ref", "scenecut",
759     "sps-id", "ssim", "stats", "subme", "trellis",
760     "verbose", "vbv-bufsize", "vbv-init", "vbv-maxrate", "weightb", "weightp",
761     "aq-mode", "aq-strength", "psy-rd", "psy", "profile", "lookahead", "slices",
762     "slice-max-size", "slice-max-mbs", "intra-refresh", "mbtree", "hrd",
763     "tune","preset", "opengop", "bluray-compat", "frame-packing", "options",
764     "fullrange",
765     NULL
766 };
767
768 static block_t *Encode( encoder_t *, picture_t * );
769
770 struct encoder_sys_t
771 {
772     x264_t          *h;
773     x264_param_t    param;
774
775     mtime_t         i_initial_delay;
776
777     char            *psz_stat_name;
778     int             i_sei_size;
779     uint32_t         i_colorspace;
780     uint8_t         *p_sei;
781 };
782
783 #ifdef PTW32_STATIC_LIB
784 static vlc_mutex_t pthread_win32_mutex = VLC_STATIC_MUTEX;
785 static int pthread_win32_count = 0;
786 #endif
787
788 /*****************************************************************************
789  * Open: probe the encoder
790  *****************************************************************************/
791 static int  Open ( vlc_object_t *p_this )
792 {
793     encoder_t     *p_enc = (encoder_t *)p_this;
794     encoder_sys_t *p_sys;
795     int i_val;
796     char *psz_val;
797     int i_qmin = 0, i_qmax = 0;
798     x264_nal_t    *nal;
799     int i, i_nal;
800     bool fullrange = false;
801
802     if( p_enc->fmt_out.i_codec != VLC_CODEC_H264 &&
803         !p_enc->b_force )
804     {
805         return VLC_EGENERIC;
806     }
807     /* X264_POINTVER or X264_VERSION are not available */
808     msg_Dbg ( p_enc, "version x264 0.%d.X", X264_BUILD );
809
810     config_ChainParse( p_enc, SOUT_CFG_PREFIX, ppsz_sout_options, p_enc->p_cfg );
811
812     p_enc->fmt_out.i_cat = VIDEO_ES;
813     p_enc->fmt_out.i_codec = VLC_CODEC_H264;
814     p_enc->p_sys = p_sys = malloc( sizeof( encoder_sys_t ) );
815     if( !p_sys )
816         return VLC_ENOMEM;
817
818     fullrange = var_GetBool( p_enc, SOUT_CFG_PREFIX "fullrange" );
819     p_enc->fmt_in.i_codec = fullrange ? VLC_CODEC_J420 : VLC_CODEC_I420;
820     p_sys->i_colorspace = X264_CSP_I420;
821 #if X264_BUILD >= 118
822     char *psz_profile = var_GetString( p_enc, SOUT_CFG_PREFIX "profile" );
823     if( psz_profile )
824     {
825         const int mask = x264_bit_depth > 8 ? X264_CSP_HIGH_DEPTH : 0;
826
827 #ifdef MODULE_NAME_IS_x26410b
828         if( mask == 0)
829         {
830             msg_Err( p_enc, "Only high bith depth encoding supported, bit depth:%d", x264_bit_depth);
831             return VLC_EGENERIC;
832         }
833 #endif
834
835         if( !strcmp( psz_profile, "high10" ) )
836         {
837             p_enc->fmt_in.i_codec = mask ? VLC_CODEC_I420_10L : fullrange ? VLC_CODEC_J420 : VLC_CODEC_I420;
838             p_sys->i_colorspace = X264_CSP_I420 | mask;
839         }
840         else if( !strcmp( psz_profile, "high422" ) )
841         {
842             p_enc->fmt_in.i_codec = mask ? VLC_CODEC_I422_10L : fullrange ? VLC_CODEC_J422 : VLC_CODEC_I422;
843             p_sys->i_colorspace = X264_CSP_I422 | mask;
844         }
845         else if( !strcmp( psz_profile, "high444" ) )
846         {
847             p_enc->fmt_in.i_codec = mask ? VLC_CODEC_I444_10L : fullrange ? VLC_CODEC_J444 : VLC_CODEC_I444;
848             p_sys->i_colorspace = X264_CSP_I444 | mask;
849         }
850 #ifdef MODULE_NAME_IS_x26410b
851         else
852         {
853             msg_Err( p_enc, "Only high-profiles and 10-bit are supported");
854             return VLC_EGENERIC;
855         }
856
857 #endif
858     }
859 #ifdef MODULE_NAME_IS_x26410b
860     else
861     {
862             msg_Err( p_enc, "Only high-profiles and 10-bit are supported");
863             return VLC_EGENERIC;
864     }
865 #endif
866     free( psz_profile );
867 #endif //X264_BUILD
868
869     p_enc->pf_encode_video = Encode;
870     p_enc->pf_encode_audio = NULL;
871     p_sys->i_initial_delay = 0;
872     p_sys->psz_stat_name = NULL;
873     p_sys->i_sei_size = 0;
874     p_sys->p_sei = NULL;
875
876     x264_param_default( &p_sys->param );
877     char *psz_preset = var_GetString( p_enc, SOUT_CFG_PREFIX  "preset" );
878     char *psz_tune = var_GetString( p_enc, SOUT_CFG_PREFIX  "tune" );
879     if( *psz_preset == '\0' )
880     {
881         free(psz_preset);
882         psz_preset = NULL;
883     }
884     x264_param_default_preset( &p_sys->param, psz_preset, psz_tune );
885     free( psz_preset );
886     free( psz_tune );
887     p_sys->param.i_csp = p_sys->i_colorspace;
888     p_sys->param.i_width  = p_enc->fmt_in.video.i_width;
889     p_sys->param.i_height = p_enc->fmt_in.video.i_height;
890     p_sys->param.vui.b_fullrange = fullrange;
891
892     if( fabs(var_GetFloat( p_enc, SOUT_CFG_PREFIX "qcomp" ) - 0.60) > 0.005 )
893        p_sys->param.rc.f_qcompress = var_GetFloat( p_enc, SOUT_CFG_PREFIX "qcomp" );
894
895     /* transcode-default bitrate is 0,
896      * set more to ABR if user specifies bitrate */
897     if( p_enc->fmt_out.i_bitrate > 0 )
898     {
899         p_sys->param.rc.i_bitrate = p_enc->fmt_out.i_bitrate / 1000;
900         p_sys->param.rc.i_rc_method = X264_RC_ABR;
901     }
902     else /* Set default to CRF */
903     {
904         i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "crf" );
905         if( i_val > 0 && i_val <= 51 )
906         {
907             p_sys->param.rc.f_rf_constant = i_val;
908             p_sys->param.rc.i_rc_method = X264_RC_CRF;
909         }
910     }
911
912     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "qpstep" );
913     if( i_val >= 0 && i_val <= 51 ) p_sys->param.rc.i_qp_step = i_val;
914
915     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "qpmin" );
916     if( i_val >= 0 && i_val <= 51 )
917     {
918         i_qmin = i_val;
919         p_sys->param.rc.i_qp_min = i_qmin;
920     }
921     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "qpmax" );
922     if( i_val >= 0 && i_val <= 51 )
923     {
924         i_qmax = i_val;
925         p_sys->param.rc.i_qp_max = i_qmax;
926     }
927
928     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "qp" );
929     if( i_val >= 0 && i_val <= 51 )
930     {
931         if( i_qmin > i_val ) i_qmin = i_val;
932         if( i_qmax < i_val ) i_qmax = i_val;
933
934         /* User defined QP-value, so change ratecontrol method */
935         p_sys->param.rc.i_rc_method = X264_RC_CQP;
936         p_sys->param.rc.i_qp_constant = i_val;
937         p_sys->param.rc.i_qp_min = i_qmin;
938         p_sys->param.rc.i_qp_max = i_qmax;
939     }
940
941
942     p_sys->param.rc.f_rate_tolerance = var_GetFloat( p_enc,
943                             SOUT_CFG_PREFIX "ratetol" );
944     p_sys->param.rc.f_vbv_buffer_init = var_GetFloat( p_enc,
945                             SOUT_CFG_PREFIX "vbv-init" );
946     p_sys->param.rc.i_vbv_buffer_size = var_GetInteger( p_enc,
947                             SOUT_CFG_PREFIX "vbv-bufsize" );
948
949     /* max bitrate = average bitrate -> CBR */
950     p_sys->param.rc.i_vbv_max_bitrate = var_GetInteger( p_enc, SOUT_CFG_PREFIX "vbv-maxrate" );
951     if( p_sys->param.rc.i_vbv_max_bitrate && p_sys->param.rc.i_rc_method != X264_RC_ABR )
952         p_enc->fmt_out.i_bitrate = p_sys->param.rc.i_vbv_max_bitrate * 1000;
953
954
955     if( !var_GetBool( p_enc, SOUT_CFG_PREFIX "mbtree" ) )
956        p_sys->param.rc.b_mb_tree = var_GetBool( p_enc, SOUT_CFG_PREFIX "mbtree" );
957
958     if( !var_GetBool( p_enc, SOUT_CFG_PREFIX "cabac" ) )
959         p_sys->param.b_cabac = var_GetBool( p_enc, SOUT_CFG_PREFIX "cabac" );
960
961     /* disable deblocking when nf (no loop filter) is enabled */
962     if( var_GetBool( p_enc, SOUT_CFG_PREFIX "nf" ) )
963        p_sys->param.b_deblocking_filter = !var_GetBool( p_enc, SOUT_CFG_PREFIX "nf" );
964
965     psz_val = var_GetString( p_enc, SOUT_CFG_PREFIX "deblock" );
966     if( psz_val )
967     {
968         if( atoi( psz_val ) != 0 )
969         {
970            char *p = strchr( psz_val, ':' );
971            p_sys->param.i_deblocking_filter_alphac0 = atoi( psz_val );
972            p_sys->param.i_deblocking_filter_beta = p ?
973                     atoi( p+1 ) : p_sys->param.i_deblocking_filter_alphac0;
974         }
975         free( psz_val );
976     }
977
978     psz_val = var_GetString( p_enc, SOUT_CFG_PREFIX "psy-rd" );
979     if( psz_val )
980     {
981         if( us_atof( psz_val ) != 1.0 )
982         {
983            char *p = strchr( psz_val, ':' );
984            p_sys->param.analyse.f_psy_rd = us_atof( psz_val );
985            p_sys->param.analyse.f_psy_trellis = p ? us_atof( p+1 ) : 0;
986         }
987         free( psz_val );
988     }
989
990     if( !var_GetBool( p_enc, SOUT_CFG_PREFIX "psy" ) )
991        p_sys->param.analyse.b_psy = var_GetBool( p_enc, SOUT_CFG_PREFIX "psy" );
992
993     psz_val = var_GetString( p_enc, SOUT_CFG_PREFIX "level" );
994     if( psz_val )
995     {
996         if( us_atof (psz_val) < 6 && us_atof (psz_val) > 0 )
997             p_sys->param.i_level_idc = (int) (10 * us_atof (psz_val)
998                                               + .5);
999         else if( atoi(psz_val) >= 10 && atoi(psz_val) <= 51 )
1000             p_sys->param.i_level_idc = atoi (psz_val);
1001         free( psz_val );
1002     }
1003
1004     p_sys->param.b_interlaced = var_GetBool( p_enc, SOUT_CFG_PREFIX "interlaced" );
1005     if( fabs(var_GetFloat( p_enc, SOUT_CFG_PREFIX "ipratio" ) - 1.4) > 0.005 )
1006        p_sys->param.rc.f_ip_factor = var_GetFloat( p_enc, SOUT_CFG_PREFIX "ipratio" );
1007     if( fabs(var_GetFloat( p_enc, SOUT_CFG_PREFIX "pbratio" ) - 1.3 ) > 0.005 )
1008        p_sys->param.rc.f_pb_factor = var_GetFloat( p_enc, SOUT_CFG_PREFIX "pbratio" );
1009     p_sys->param.rc.f_complexity_blur = var_GetFloat( p_enc, SOUT_CFG_PREFIX "cplxblur" );
1010     p_sys->param.rc.f_qblur = var_GetFloat( p_enc, SOUT_CFG_PREFIX "qblur" );
1011     if( var_GetInteger( p_enc, SOUT_CFG_PREFIX "aq-mode" ) != X264_AQ_VARIANCE )
1012        p_sys->param.rc.i_aq_mode = var_GetInteger( p_enc, SOUT_CFG_PREFIX "aq-mode" );
1013     if( fabs( var_GetFloat( p_enc, SOUT_CFG_PREFIX "aq-strength" ) - 1.0) > 0.005 )
1014        p_sys->param.rc.f_aq_strength = var_GetFloat( p_enc, SOUT_CFG_PREFIX "aq-strength" );
1015
1016 #if X264_BUILD >= 111
1017     if( var_GetInteger( p_enc, SOUT_CFG_PREFIX "frame-packing" ) > -1 )
1018        p_sys->param.i_frame_packing = var_GetInteger( p_enc, SOUT_CFG_PREFIX "frame-packing" );
1019 #endif
1020
1021     if( var_GetBool( p_enc, SOUT_CFG_PREFIX "verbose" ) )
1022         p_sys->param.i_log_level = X264_LOG_DEBUG;
1023
1024     if( var_GetBool( p_enc, SOUT_CFG_PREFIX "quiet" ) )
1025         p_sys->param.i_log_level = X264_LOG_NONE;
1026
1027     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "sps-id" );
1028     if( i_val >= 0 ) p_sys->param.i_sps_id = i_val;
1029
1030     if( var_GetBool( p_enc, SOUT_CFG_PREFIX "aud" ) )
1031         p_sys->param.b_aud = true;
1032
1033     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "keyint" );
1034     if( i_val > 0 && i_val != 250 ) p_sys->param.i_keyint_max = i_val;
1035 #if X264_BUILD >= 102
1036     if( i_val == -1 ) p_sys->param.i_keyint_max = X264_KEYINT_MAX_INFINITE;
1037 #endif
1038
1039     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "min-keyint" );
1040     if( i_val > 0 && i_val != 25 ) p_sys->param.i_keyint_min = i_val;
1041
1042 #if X264_BUILD >= 102 && X264_BUILD <= 114
1043     psz_val = var_GetString( p_enc, SOUT_CFG_PREFIX "opengop" );
1044     if( !strcmp( psz_val, "none" ) )
1045         p_sys->param.i_open_gop = X264_OPEN_GOP_NONE;
1046     else if( !strcmp( psz_val, "normal" ) )
1047         p_sys->param.i_open_gop = X264_OPEN_GOP_NORMAL;
1048     else if( !strcmp( psz_val, "bluray" ) )
1049         p_sys->param.i_open_gop = X264_OPEN_GOP_BLURAY;
1050     free( psz_val );
1051 #elif X264_BUILD >= 115
1052     p_sys->param.b_open_gop = var_GetBool( p_enc, SOUT_CFG_PREFIX "opengop" );
1053     p_sys->param.b_bluray_compat = var_GetBool( p_enc, SOUT_CFG_PREFIX "bluray-compat" );
1054 #endif
1055     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "bframes" );
1056     if( i_val >= 0 && i_val <= 16 && i_val != 3 )
1057         p_sys->param.i_bframe = i_val;
1058
1059     p_sys->param.b_intra_refresh = var_GetBool( p_enc, SOUT_CFG_PREFIX "intra-refresh" );
1060
1061     psz_val = var_GetString( p_enc, SOUT_CFG_PREFIX "bpyramid" );
1062     if( !strcmp( psz_val, "normal" ) )
1063     {
1064         p_sys->param.i_bframe_pyramid = X264_B_PYRAMID_NORMAL;
1065     }
1066     else if ( !strcmp( psz_val, "strict" ) )
1067     {
1068         p_sys->param.i_bframe_pyramid = X264_B_PYRAMID_STRICT;
1069     }
1070     else if ( !strcmp( psz_val, "none" ) )
1071     {
1072         p_sys->param.i_bframe_pyramid = X264_B_PYRAMID_NONE;
1073     }
1074
1075     free( psz_val );
1076
1077     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "ref" );
1078     if( i_val > 0 && i_val <= 15 && i_val != 3 )
1079         p_sys->param.i_frame_reference = i_val;
1080
1081     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "scenecut" );
1082     if( i_val >= -1 && i_val <= 100 && i_val != 40 )
1083         p_sys->param.i_scenecut_threshold = i_val;
1084
1085     p_sys->param.b_deterministic = var_GetBool( p_enc,
1086                         SOUT_CFG_PREFIX "non-deterministic" );
1087
1088     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "subme" );
1089     if( i_val >= 1 && i_val != 7 )
1090         p_sys->param.analyse.i_subpel_refine = i_val;
1091
1092 #if X264_BUILD >= 89
1093     psz_val = var_GetString( p_enc, SOUT_CFG_PREFIX "hrd");
1094     if( !strcmp( psz_val, "vbr" ) )
1095         p_sys->param.i_nal_hrd = X264_NAL_HRD_VBR;
1096     else if( !strcmp( psz_val, "cbr" ) )
1097         p_sys->param.i_nal_hrd = X264_NAL_HRD_CBR;
1098     free( psz_val );
1099 #endif
1100
1101     //TODO: psz_val == NULL ?
1102     psz_val = var_GetString( p_enc, SOUT_CFG_PREFIX "me" );
1103     if( psz_val && strcmp( psz_val, "hex" ) )
1104     {
1105        if( !strcmp( psz_val, "dia" ) )
1106        {
1107             p_sys->param.analyse.i_me_method = X264_ME_DIA;
1108        }
1109        else if( !strcmp( psz_val, "umh" ) )
1110        {
1111             p_sys->param.analyse.i_me_method = X264_ME_UMH;
1112         }
1113        else if( !strcmp( psz_val, "esa" ) )
1114        {
1115            p_sys->param.analyse.i_me_method = X264_ME_ESA;
1116        }
1117        else if( !strcmp( psz_val, "tesa" ) )
1118        {
1119            p_sys->param.analyse.i_me_method = X264_ME_TESA;
1120        }
1121        free( psz_val );
1122     }
1123
1124     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "merange" );
1125     if( i_val >= 0 && i_val <= 64 && i_val != 16 )
1126         p_sys->param.analyse.i_me_range = i_val;
1127
1128     p_sys->param.analyse.i_mv_range = var_GetInteger( p_enc,
1129                                     SOUT_CFG_PREFIX "mvrange" );
1130     p_sys->param.analyse.i_mv_range_thread = var_GetInteger( p_enc,
1131                                     SOUT_CFG_PREFIX "mvrange-thread" );
1132
1133     psz_val = var_GetString( p_enc, SOUT_CFG_PREFIX "direct" );
1134     if( !strcmp( psz_val, "none" ) )
1135     {
1136         p_sys->param.analyse.i_direct_mv_pred = X264_DIRECT_PRED_NONE;
1137     }
1138     else if( !strcmp( psz_val, "spatial" ) )
1139     {
1140         p_sys->param.analyse.i_direct_mv_pred = X264_DIRECT_PRED_SPATIAL;
1141     }
1142     else if( !strcmp( psz_val, "temporal" ) )
1143     {
1144         p_sys->param.analyse.i_direct_mv_pred = X264_DIRECT_PRED_TEMPORAL;
1145     }
1146     else if( !strcmp( psz_val, "auto" ) )
1147     {
1148         p_sys->param.analyse.i_direct_mv_pred = X264_DIRECT_PRED_AUTO;
1149     }
1150     free( psz_val );
1151
1152     p_sys->param.analyse.b_psnr = var_GetBool( p_enc, SOUT_CFG_PREFIX "psnr" );
1153     p_sys->param.analyse.b_ssim = var_GetBool( p_enc, SOUT_CFG_PREFIX "ssim" );
1154     if( !var_GetBool( p_enc, SOUT_CFG_PREFIX "weightb" ) )
1155        p_sys->param.analyse.b_weighted_bipred = var_GetBool( p_enc,
1156                                     SOUT_CFG_PREFIX "weightb" );
1157     if( var_GetInteger( p_enc, SOUT_CFG_PREFIX "weightp" ) != 2 )
1158        p_sys->param.analyse.i_weighted_pred = var_GetInteger( p_enc, SOUT_CFG_PREFIX "weightp" );
1159
1160     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "b-adapt" );
1161     if( i_val != 1 )
1162        p_sys->param.i_bframe_adaptive = i_val;
1163
1164     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "b-bias" );
1165     if( i_val >= -100 && i_val <= 100 && i_val != 0)
1166         p_sys->param.i_bframe_bias = i_val;
1167
1168     p_sys->param.analyse.b_chroma_me = var_GetBool( p_enc,
1169                                     SOUT_CFG_PREFIX "chroma-me" );
1170     p_sys->param.analyse.i_chroma_qp_offset = var_GetInteger( p_enc,
1171                                     SOUT_CFG_PREFIX "chroma-qp-offset" );
1172     if( !var_GetBool( p_enc, SOUT_CFG_PREFIX "mixed-refs" ) )
1173        p_sys->param.analyse.b_mixed_references = var_GetBool( p_enc,
1174                                     SOUT_CFG_PREFIX "mixed-refs" );
1175
1176     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "trellis" );
1177     if( i_val >= 0 && i_val <= 2 && i_val != 1 )
1178         p_sys->param.analyse.i_trellis = i_val;
1179
1180     if( !var_GetBool( p_enc, SOUT_CFG_PREFIX "fast-pskip" ) )
1181        p_sys->param.analyse.b_fast_pskip = var_GetBool( p_enc,
1182                                     SOUT_CFG_PREFIX "fast-pskip" );
1183
1184     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "nr" );
1185     if( i_val > 0 && i_val <= 1000 )
1186         p_sys->param.analyse.i_noise_reduction = i_val;
1187
1188     if( !var_GetBool( p_enc, SOUT_CFG_PREFIX "dct-decimate" ) )
1189        p_sys->param.analyse.b_dct_decimate = var_GetBool( p_enc,
1190                                     SOUT_CFG_PREFIX "dct-decimate" );
1191
1192     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "deadzone-inter" );
1193     if( i_val >= 0 && i_val <= 32 && i_val != 21 )
1194         p_sys->param.analyse.i_luma_deadzone[0] = i_val;
1195
1196     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "deadzone-intra" );
1197     if( i_val >= 0 && i_val <= 32 && i_val != 11)
1198         p_sys->param.analyse.i_luma_deadzone[1] = i_val;
1199
1200     if( !var_GetBool( p_enc, SOUT_CFG_PREFIX "asm" ) )
1201         p_sys->param.cpu = 0;
1202
1203 #ifndef X264_ANALYSE_BSUB16x16
1204 #   define X264_ANALYSE_BSUB16x16 0
1205 #endif
1206     psz_val = var_GetString( p_enc, SOUT_CFG_PREFIX "partitions" );
1207     if( !strcmp( psz_val, "none" ) )
1208     {
1209         p_sys->param.analyse.inter = 0;
1210     }
1211     else if( !strcmp( psz_val, "fast" ) )
1212     {
1213         p_sys->param.analyse.inter = X264_ANALYSE_I4x4;
1214     }
1215     else if( !strcmp( psz_val, "normal" ) )
1216     {
1217         p_sys->param.analyse.inter =
1218             X264_ANALYSE_I4x4 |
1219             X264_ANALYSE_PSUB16x16;
1220 #ifdef X264_ANALYSE_I8x8
1221         p_sys->param.analyse.inter |= X264_ANALYSE_I8x8;
1222 #endif
1223     }
1224     else if( !strcmp( psz_val, "slow" ) )
1225     {
1226         p_sys->param.analyse.inter =
1227             X264_ANALYSE_I4x4 |
1228             X264_ANALYSE_PSUB16x16 |
1229             X264_ANALYSE_BSUB16x16;
1230 #ifdef X264_ANALYSE_I8x8
1231         p_sys->param.analyse.inter |= X264_ANALYSE_I8x8;
1232 #endif
1233     }
1234     else if( !strcmp( psz_val, "all" ) )
1235     {
1236         p_sys->param.analyse.inter = ~0;
1237     }
1238     free( psz_val );
1239
1240     if( !var_GetBool( p_enc, SOUT_CFG_PREFIX "8x8dct" ) )
1241        p_sys->param.analyse.b_transform_8x8 = var_GetBool( p_enc,
1242                                     SOUT_CFG_PREFIX "8x8dct" );
1243
1244     if( p_enc->fmt_in.video.i_sar_num > 0 &&
1245         p_enc->fmt_in.video.i_sar_den > 0 )
1246     {
1247         unsigned int i_dst_num, i_dst_den;
1248         vlc_ureduce( &i_dst_num, &i_dst_den,
1249                      p_enc->fmt_in.video.i_sar_num,
1250                      p_enc->fmt_in.video.i_sar_den, 0 );
1251         p_sys->param.vui.i_sar_width = i_dst_num;
1252         p_sys->param.vui.i_sar_height = i_dst_den;
1253     }
1254
1255     if( p_enc->fmt_in.video.i_frame_rate_base > 0 )
1256     {
1257         p_sys->param.i_fps_num = p_enc->fmt_in.video.i_frame_rate;
1258         p_sys->param.i_fps_den = p_enc->fmt_in.video.i_frame_rate_base;
1259         p_sys->param.i_timebase_num = 1;
1260         p_sys->param.i_timebase_den = INT64_C(1000000);
1261         p_sys->param.b_vfr_input = 0;
1262     }
1263
1264     /* Check slice-options */
1265     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "slices" );
1266     if( i_val > 0 )
1267         p_sys->param.i_slice_count = i_val;
1268     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "slice-max-size" );
1269     if( i_val > 0 )
1270         p_sys->param.i_slice_max_size = i_val;
1271     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "slice-max-mbs" );
1272     if( i_val > 0 )
1273         p_sys->param.i_slice_max_mbs = i_val;
1274
1275     /* Check if user has given some profile (baseline,main,high) to limit
1276      * settings, and apply those*/
1277     psz_val = var_GetString( p_enc, SOUT_CFG_PREFIX "profile" );
1278     if( psz_val && *psz_val )
1279         x264_param_apply_profile( &p_sys->param, psz_val );
1280     free( psz_val );
1281
1282 #if defined (__i386__) || defined (__x86_64__)
1283     if( !vlc_CPU_MMX() )
1284         p_sys->param.cpu &= ~X264_CPU_MMX;
1285     if( !vlc_CPU_MMXEXT() )
1286         p_sys->param.cpu &= ~X264_CPU_MMXEXT;
1287     if( !vlc_CPU_SSE() )
1288         p_sys->param.cpu &= ~X264_CPU_SSE;
1289     if( !vlc_CPU_SSE2() )
1290         p_sys->param.cpu &= ~X264_CPU_SSE2;
1291 #endif
1292
1293     /* BUILD 29 adds support for multi-threaded encoding while BUILD 49 (r543)
1294        also adds support for threads = 0 for automatically selecting an optimal
1295        value (cores * 1.5) based on detected CPUs. Default behavior for x264 is
1296        threads = 1, however VLC usage differs and uses threads = 0 (auto) by
1297        default unless ofcourse transcode threads is explicitly specified.. */
1298     p_sys->param.i_threads = p_enc->i_threads;
1299
1300     psz_val = var_GetString( p_enc, SOUT_CFG_PREFIX "stats" );
1301     if( psz_val )
1302     {
1303         p_sys->param.rc.psz_stat_in  =
1304         p_sys->param.rc.psz_stat_out =
1305         p_sys->psz_stat_name         = psz_val;
1306     }
1307
1308     i_val = var_GetInteger( p_enc, SOUT_CFG_PREFIX "pass" );
1309     if( i_val > 0 && i_val <= 3 )
1310     {
1311         p_sys->param.rc.b_stat_write = i_val & 1;
1312         p_sys->param.rc.b_stat_read = i_val & 2;
1313     }
1314
1315     p_sys->param.pf_log = x264_log;
1316     p_sys->param.p_log_private = p_enc;
1317     /* We need to initialize pthreadw32 before we open the encoder,
1318        but only once for the whole application. Since pthreadw32
1319        doesn't keep a refcount, do it ourselves. */
1320 #ifdef PTW32_STATIC_LIB
1321     vlc_mutex_lock( &pthread_win32_mutex );
1322
1323     if( pthread_win32_count == 0 )
1324     {
1325         msg_Dbg( p_enc, "initializing pthread-win32" );
1326         if( !pthread_win32_process_attach_np() || !pthread_win32_thread_attach_np() )
1327         {
1328             msg_Warn( p_enc, "pthread Win32 Initialization failed" );
1329             vlc_mutex_unlock( &pthread_win32_mutex );
1330             return VLC_EGENERIC;
1331         }
1332     }
1333
1334     pthread_win32_count++;
1335     vlc_mutex_unlock( &pthread_win32_mutex );
1336 #endif
1337
1338     if( var_GetInteger( p_enc, SOUT_CFG_PREFIX "lookahead" ) != 40 )
1339     {
1340        p_sys->param.rc.i_lookahead = var_GetInteger( p_enc, SOUT_CFG_PREFIX "lookahead" );
1341     }
1342
1343     /* We don't want repeated headers, we repeat p_extra ourself if needed */
1344     p_sys->param.b_repeat_headers = 0;
1345
1346     char *psz_opts = var_InheritString( p_enc, SOUT_CFG_PREFIX "options" );
1347     if (psz_opts && *psz_opts) {
1348         config_chain_t *cfg = NULL;
1349         config_ChainParseOptions(&cfg, psz_opts);
1350         while (cfg) {
1351             config_chain_t *next = cfg->p_next;
1352             char *name  = cfg->psz_name;
1353             char *value = cfg->psz_value;
1354             int ret = x264_param_parse(&p_sys->param, name, value);
1355             if (ret == X264_PARAM_BAD_NAME) {
1356                 msg_Err(p_enc, "Unknown option \"%s\"", name);
1357             } else if (ret == X264_PARAM_BAD_VALUE) {
1358                 msg_Err(p_enc, "Bad value \"%s\" for option \"%s\"", value, name);
1359             }
1360             free(name);
1361             free(value);
1362             free(cfg);
1363             cfg = next;
1364         }
1365     }
1366     free(psz_opts);
1367
1368     /* Open the encoder */
1369     p_sys->h = x264_encoder_open( &p_sys->param );
1370
1371     if( p_sys->h == NULL )
1372     {
1373         msg_Err( p_enc, "cannot open x264 encoder" );
1374         Close( VLC_OBJECT(p_enc) );
1375         return VLC_EGENERIC;
1376     }
1377
1378     /* get the globals headers */
1379     size_t i_extra = x264_encoder_headers( p_sys->h, &nal, &i_nal );
1380     uint8_t *p_extra = p_enc->fmt_out.p_extra = malloc( i_extra );
1381     if( !p_extra )
1382     {
1383         Close( VLC_OBJECT(p_enc) );
1384         return VLC_ENOMEM;
1385     }
1386
1387     for( i = 0; i < i_nal; i++ )
1388     {
1389         if( nal[i].i_type != NAL_SEI )
1390         {
1391             memcpy( p_extra, nal[i].p_payload, nal[i].i_payload );
1392             p_extra += nal[i].i_payload;
1393             continue; /* next NAL */
1394         }
1395
1396         /* we won't store this NAL in p_extra */
1397         assert( i_extra >= (size_t)nal[i].i_payload );
1398         i_extra -= nal[i].i_payload;
1399
1400         /* Make sure we only have one SEI NAL in the headers */
1401         assert(p_sys->i_sei_size == 0);
1402         p_sys->i_sei_size = nal[i].i_payload;
1403
1404         p_sys->p_sei = malloc( p_sys->i_sei_size );
1405         if( !p_sys->p_sei )
1406         {
1407             free( p_extra );
1408             Close( VLC_OBJECT(p_enc) );
1409             return VLC_ENOMEM;
1410         }
1411         memcpy( p_sys->p_sei, nal[i].p_payload, nal[i].i_payload );
1412     }
1413
1414     p_enc->fmt_out.i_extra = i_extra;
1415
1416     return VLC_SUCCESS;
1417 }
1418
1419 /****************************************************************************
1420  * Logging
1421  ****************************************************************************/
1422 static void x264_log( void *data, int i_level, const char *psz, va_list args)
1423 {
1424     encoder_t *p_enc = (encoder_t *)data;
1425
1426     switch( i_level )
1427     {
1428         case X264_LOG_ERROR:
1429             i_level = VLC_MSG_ERR;
1430             break;
1431         case X264_LOG_WARNING:
1432             i_level = VLC_MSG_WARN;
1433             break;
1434         case X264_LOG_INFO:
1435             i_level = VLC_MSG_INFO;
1436             break;
1437         case X264_LOG_DEBUG:
1438             i_level = VLC_MSG_DBG;
1439         default:
1440             i_level = VLC_MSG_DBG;
1441     }
1442
1443     msg_GenericVa( p_enc, i_level, MODULE_STRING, psz, args );
1444 };
1445
1446 /****************************************************************************
1447  * Encode:
1448  ****************************************************************************/
1449 static block_t *Encode( encoder_t *p_enc, picture_t *p_pict )
1450 {
1451     encoder_sys_t *p_sys = p_enc->p_sys;
1452     x264_picture_t pic;
1453     x264_nal_t *nal;
1454     block_t *p_block;
1455     int i_nal=0, i_out=0, i=0;
1456
1457     /* init pic */
1458 #if X264_BUILD >= 98
1459     x264_picture_init( &pic );
1460 #else
1461     memset( &pic, 0, sizeof( x264_picture_t ) );
1462 #endif
1463     if( likely(p_pict) ) {
1464        pic.i_pts = p_pict->date;
1465        pic.img.i_csp = p_sys->i_colorspace;
1466        pic.img.i_plane = p_pict->i_planes;
1467        for( i = 0; i < p_pict->i_planes; i++ )
1468        {
1469            pic.img.plane[i] = p_pict->p[i].p_pixels;
1470            pic.img.i_stride[i] = p_pict->p[i].i_pitch;
1471        }
1472
1473        x264_encoder_encode( p_sys->h, &nal, &i_nal, &pic, &pic );
1474     } else {
1475        if( x264_encoder_delayed_frames( p_sys->h ) ) {
1476            x264_encoder_encode( p_sys->h, &nal, &i_nal, NULL, &pic );
1477        }
1478     }
1479
1480     if( !i_nal ) return NULL;
1481
1482
1483     /* Get size of block we need */
1484     for( i = 0; i < i_nal; i++ )
1485         i_out += nal[i].i_payload;
1486
1487     p_block = block_Alloc( i_out + p_sys->i_sei_size );
1488     if( !p_block ) return NULL;
1489
1490     unsigned int i_offset = 0;
1491     if( unlikely( p_sys->i_sei_size ) )
1492     {
1493        /* insert x264 headers SEI nal into the first picture block at the start */
1494        memcpy( p_block->p_buffer, p_sys->p_sei, p_sys->i_sei_size );
1495        i_offset = p_sys->i_sei_size;
1496        p_sys->i_sei_size = 0;
1497        free( p_sys->p_sei );
1498        p_sys->p_sei = NULL;
1499     }
1500     /* copy encoded data directly to block */
1501     memcpy( p_block->p_buffer + i_offset, nal[0].p_payload, i_out );
1502
1503     if( pic.b_keyframe )
1504         p_block->i_flags |= BLOCK_FLAG_TYPE_I;
1505     else if( pic.i_type == X264_TYPE_P || pic.i_type == X264_TYPE_I )
1506         p_block->i_flags |= BLOCK_FLAG_TYPE_P;
1507     else if( IS_X264_TYPE_B( pic.i_type ) )
1508         p_block->i_flags |= BLOCK_FLAG_TYPE_B;
1509     else
1510         p_block->i_flags |= BLOCK_FLAG_TYPE_PB;
1511
1512     /* This isn't really valid for streams with B-frames */
1513     p_block->i_length = INT64_C(1000000) *
1514         p_enc->fmt_in.video.i_frame_rate_base /
1515             p_enc->fmt_in.video.i_frame_rate;
1516
1517     /* scale pts-values back*/
1518     p_block->i_pts = pic.i_pts;
1519     p_block->i_dts = pic.i_dts;
1520
1521     return p_block;
1522 }
1523
1524 /*****************************************************************************
1525  * CloseEncoder: x264 encoder destruction
1526  *****************************************************************************/
1527 static void Close( vlc_object_t *p_this )
1528 {
1529     encoder_t     *p_enc = (encoder_t *)p_this;
1530     encoder_sys_t *p_sys = p_enc->p_sys;
1531
1532     free( p_sys->psz_stat_name );
1533     free( p_sys->p_sei );
1534
1535     msg_Dbg( p_enc, "framecount still in libx264 buffer: %d", x264_encoder_delayed_frames( p_sys->h ) );
1536
1537     if( p_sys->h )
1538         x264_encoder_close( p_sys->h );
1539
1540 #ifdef PTW32_STATIC_LIB
1541     vlc_mutex_lock( &pthread_win32_mutex );
1542     pthread_win32_count--;
1543
1544     if( pthread_win32_count == 0 )
1545     {
1546         pthread_win32_thread_detach_np();
1547         pthread_win32_process_detach_np();
1548         msg_Dbg( p_enc, "pthread-win32 deinitialized" );
1549     }
1550
1551     vlc_mutex_unlock( &pthread_win32_mutex );
1552 #endif
1553
1554     free( p_sys );
1555 }