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