Skip to content

Commit

Permalink
Update FFmpeg DLLs to 7.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
s09bQ5 committed Jul 28, 2024
1 parent e3c1b81 commit 8ddb4a4
Show file tree
Hide file tree
Showing 18 changed files with 17 additions and 18 deletions.
Binary file not shown.
Binary file renamed game/avcodec-60.dll → game/avcodec-61.dll
Binary file not shown.
Binary file not shown.
Binary file removed game/avformat-60.dll
Binary file not shown.
Binary file not shown.
Binary file added game/avformat-61.dll
Binary file not shown.
Binary file not shown.
Binary file removed game/avutil-58.dll
Binary file not shown.
Binary file not shown.
Binary file added game/avutil-59.dll
Binary file not shown.
Binary file not shown.
Binary file removed game/swresample-4.dll
Binary file not shown.
Binary file not shown.
Binary file added game/swresample-5.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file renamed game/swscale-7.dll → game/swscale-8.dll
Binary file not shown.
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 8ddb4a4

Please sign in to comment.