Skip to content

Commit

Permalink
#415: switch to ffmpeg2 by default for win32 builds
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@5188 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Jan 15, 2014
1 parent bd40717 commit e1838bb
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/win32/MAKE-INSTALLER.BAT
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ SET SHOW_DEPENDENCIES=0

REM "SET THESE TO 0 TO DISABLE VPX/RENCODE/CLIPBOARD/etc:"
SET ENC_X264=1
SET DEC_AVCODEC=1
SET DEC_AVCODEC2=0
SET DEC_AVCODEC=0
SET DEC_AVCODEC2=1
SET CSC_NVCUDA=0
SET NVENC=0
SET VPX=1
Expand Down Expand Up @@ -74,7 +74,7 @@ SET BUILD_ARGS=

IF %ENC_X264% NEQ 1 SET BUILD_ARGS=%BUILD_ARGS% --without-enc_x264
IF %DEC_AVCODEC% NEQ 1 SET BUILD_ARGS=%BUILD_ARGS% --without-dec_avcodec
IF %DEC_AVCODEC2%==1 SET BUILD_ARGS=%BUILD_ARGS% --with-dec_avcodec2
IF %DEC_AVCODEC2% EQU 1 SET BUILD_ARGS=%BUILD_ARGS% --with-dec_avcodec2
IF %CSC_NVCUDA% NEQ 1 SET BUILD_ARGS=%BUILD_ARGS% --without-csc_nvcuda
IF %NVENC% NEQ 1 SET BUILD_ARGS=%BUILD_ARGS% --without-nvenc
IF %VPX% NEQ 1 SET BUILD_ARGS=%BUILD_ARGS% --without-vpx
Expand All @@ -96,10 +96,11 @@ ECHO ****** ensure Visual Studio env is available
if "%VSINSTALLDIR%"=="" (
call "%VC%\bin\vcvars32.bat"
)


ECHO ***************************************************************
ECHO ****** build cython pyd files inplace
SET CYTHON_ARGS=%BUILD_ARGS%

SET CYTHON_ARGS=%BUILD_ARGS%
IF %DEBUG% EQU 1 SET CYTHON_ARGS=%BUILD_ARGS% --pyrex-gdb

ECHO %PYTHON_EXE% -OO setup.py build_ext %CYTHON_ARGS% --inplace
Expand Down

0 comments on commit e1838bb

Please sign in to comment.