diff options
-rw-r--r-- | src/config-win.inc | 8 | ||||
-rw-r--r-- | src/lib/libpng/png.pas | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/config-win.inc b/src/config-win.inc index e8932b7a..6d32043b 100644 --- a/src/config-win.inc +++ b/src/config-win.inc @@ -19,7 +19,7 @@ {$MACRO ON} {$IFNDEF FFMPEG_DIR} {$IF (4 > 0) or (2 > 0)} - {$DEFINE FFMPEG_DIR := 'ffmpeg-2.7'} + {$DEFINE FFMPEG_DIR := 'ffmpeg-2.8'} {$DEFINE FF_API_OLD_DECODE_AUDIO} {$ELSE} {$DEFINE FFMPEG_DIR := 'ffmpeg'} @@ -27,10 +27,10 @@ {$IFEND} {$ENDIF} {$IF Defined(IncludeConstants)} - FFMPEG_VERSION_INT = 2007000; + FFMPEG_VERSION_INT = 2008000; av__codec = 'avcodec-56'; LIBAVCODEC_VERSION_MAJOR = 56; - LIBAVCODEC_VERSION_MINOR = 57; + LIBAVCODEC_VERSION_MINOR = 60; LIBAVCODEC_VERSION_RELEASE = 100; av__format = 'avformat-56'; @@ -40,7 +40,7 @@ av__util = 'avutil-54'; LIBAVUTIL_VERSION_MAJOR = 54; - LIBAVUTIL_VERSION_MINOR = 30; + LIBAVUTIL_VERSION_MINOR = 31; LIBAVUTIL_VERSION_RELEASE = 100; {$IFEND} {$IFEND} diff --git a/src/lib/libpng/png.pas b/src/lib/libpng/png.pas index 0092dde3..b5ea49e8 100644 --- a/src/lib/libpng/png.pas +++ b/src/lib/libpng/png.pas @@ -30,10 +30,10 @@ uses const {$IFDEF MSWINDOWS} - // use libpng12-0 (Version 1.2.18), delivered wih SDL_Image - LibPng = 'libpng12-0'; // 'libpng13'; - // matching lib version for libpng13.dll, needed for initialization - PNG_LIBPNG_VER_STRING='1.2.12'; + // use libpng15-15 (Version 1.2.15), delivered wih SDL_Image + LibPng = 'libpng15-15'; + // matching lib version for libpngxx.dll, needed for initialization + PNG_LIBPNG_VER_STRING='1.2.15'; // define the compiler that was used to built the DLL (necessary for jmp_buf) // SDL_Image was compiled with GCC //{$define MSVC_DLL} // MS Visual C++ |