Commit 45153ca4 authored by Felix Paul Kühne's avatar Felix Paul Kühne

* temporarily fix x264 encoding on darwin/x86 by disabling all CPU optimisations

parent 34e94939
......@@ -487,8 +487,13 @@ vlc_module_begin();
/* Input/Output */
#if defined(__DARWIN__) && defined(__INTEL__)
add_bool( SOUT_CFG_PREFIX "asm", 1, NULL, ASM_TEXT,
ASM_LONGTEXT, VLC_TRUE );
#else
add_bool( SOUT_CFG_PREFIX "asm", 1, NULL, ASM_TEXT,
ASM_LONGTEXT, VLC_FALSE );
#endif
/* x264 psnr = 1 (default). disable PSNR computation for speed. */
add_bool( SOUT_CFG_PREFIX "psnr", 0, NULL, PSNR_TEXT,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment