Skip to content

Commit

Permalink
Update DLLs
Browse files Browse the repository at this point in the history
  • Loading branch information
s09bQ5 committed Aug 20, 2024
1 parent bd0eedd commit 34cca35
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 19 deletions.
2 changes: 1 addition & 1 deletion dldlls.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import sys
import os

sha = '97b88f326c429bccab263f809a16798c3e1ec6b5'
sha = '67f6a4f9305a2ee1508215ad4a861f23f7b8e3da'
filename = 'usdx-dlls-i686'
urlbase = 'https://api.github.com/repos/UltraStar-Deluxe/mxe/'
headers = {
Expand Down
10 changes: 10 additions & 0 deletions installer/settings/files_main_install.nsh
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,16 @@ IfFileExists $INSTDIR\libtiff-5.dll 0 +2
Delete "$INSTDIR\libtiff-5.dll"
IfFileExists $INSTDIR\libwebp-4.dll 0 +2
Delete "$INSTDIR\libwebp-4.dll"
IfFileExists $INSTDIR\avcodec-60.dll 0 +2
Delete "$INSTDIR\avcodec-60.dll"
IfFileExists $INSTDIR\avformat-60.dll 0 +2
Delete "$INSTDIR\avformat-60.dll"
IfFileExists $INSTDIR\avutil-58.dll 0 +2
Delete "$INSTDIR\avutil-58.dll"
IfFileExists $INSTDIR\swresample-4.dll 0 +2
Delete "$INSTDIR\swresample-4.dll"
IfFileExists $INSTDIR\swscale-7.dll 0 +2
Delete "$INSTDIR\swscale-7.dll"

RMDir /r "$INSTDIR\Themes"
RMDir /r "$INSTDIR\Skins"
Expand Down
5 changes: 5 additions & 0 deletions installer/settings/files_main_uninstall.nsh
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,11 @@
Delete "$INSTDIR\libtiff-6.dll"
Delete "$INSTDIR\libwebp-7.dll"
Delete "$INSTDIR\libdav1d.dll"
Delete "$INSTDIR\avcodec-61.dll"
Delete "$INSTDIR\avformat-61.dll"
Delete "$INSTDIR\avutil-59.dll"
Delete "$INSTDIR\swresample-5.dll"
Delete "$INSTDIR\swscale-8.dll"

StrCpy $0 "$INSTDIR\songs"
Call un.DeleteIfEmpty
Expand Down
35 changes: 17 additions & 18 deletions src/config-win.inc
Original file line number Diff line number Diff line change
Expand Up @@ -15,49 +15,48 @@
{$IFEND}

{$DEFINE HaveFFmpeg}
//the required DLLs can be downloaded here: https://ffmpeg.zeranoe.com/builds/win32/shared/
//the required DLLs can be built with MXE
{$IF Defined(HaveFFmpeg)}
{$MACRO ON}
{$IFNDEF FFMPEG_DIR}
{$IF (0 > 0) or (6 > 0)}
{$DEFINE FFMPEG_DIR := 'ffmpeg-6.0'}
{$DEFINE FF_API_OLD_DECODE_AUDIO}
{$IF (0 > 0) or (7 > 0)}
{$DEFINE FFMPEG_DIR := 'ffmpeg-7.0'}
{$ELSE}
{$DEFINE FFMPEG_DIR := 'ffmpeg'}
{$DEFINE useOLD_FFMPEG}
{$IFEND}
{$ENDIF}
{$IF Defined(IncludeConstants)}
FFMPEG_VERSION_INT = 6000000;
av__codec = 'avcodec-60';
LIBAVCODEC_VERSION_MAJOR = 60;
FFMPEG_VERSION_INT = 7000000;
av__codec = 'avcodec-61';
LIBAVCODEC_VERSION_MAJOR = 61;
LIBAVCODEC_VERSION_MINOR = 3;
LIBAVCODEC_VERSION_RELEASE = 100;

av__format = 'avformat-60';
LIBAVFORMAT_VERSION_MAJOR = 60;
LIBAVFORMAT_VERSION_MINOR = 3;
av__format = 'avformat-61';
LIBAVFORMAT_VERSION_MAJOR = 61;
LIBAVFORMAT_VERSION_MINOR = 1;
LIBAVFORMAT_VERSION_RELEASE = 100;

av__util = 'avutil-58';
LIBAVUTIL_VERSION_MAJOR = 58;
LIBAVUTIL_VERSION_MINOR = 2;
av__util = 'avutil-59';
LIBAVUTIL_VERSION_MAJOR = 59;
LIBAVUTIL_VERSION_MINOR = 8;
LIBAVUTIL_VERSION_RELEASE = 100;
{$IFEND}
{$IFEND}

{$DEFINE HaveSWResample}
{$IF Defined(HaveSWScale) and Defined(IncludeConstants)}
sw__resample = 'swresample-4';
LIBSWRESAMPLE_VERSION_MAJOR = 4;
LIBSWRESAMPLE_VERSION_MINOR = 10;
sw__resample = 'swresample-5';
LIBSWRESAMPLE_VERSION_MAJOR = 5;
LIBSWRESAMPLE_VERSION_MINOR = 1;
LIBSWRESAMPLE_VERSION_RELEASE = 100;
{$IFEND}

{$DEFINE HaveSWScale}
{$IF Defined(HaveSWScale) and Defined(IncludeConstants)}
sw__scale = 'swscale-7';
LIBSWSCALE_VERSION_MAJOR = 7;
sw__scale = 'swscale-8';
LIBSWSCALE_VERSION_MAJOR = 8;
LIBSWSCALE_VERSION_MINOR = 1;
LIBSWSCALE_VERSION_RELEASE = 100;
{$IFEND}
Expand Down

0 comments on commit 34cca35

Please sign in to comment.