aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/lib/ffmpeg/avutil.pas
diff options
context:
space:
mode:
Diffstat (limited to 'Game/Code/lib/ffmpeg/avutil.pas')
-rw-r--r--Game/Code/lib/ffmpeg/avutil.pas10
1 files changed, 6 insertions, 4 deletions
diff --git a/Game/Code/lib/ffmpeg/avutil.pas b/Game/Code/lib/ffmpeg/avutil.pas
index 0a2078dc..ff833ad4 100644
--- a/Game/Code/lib/ffmpeg/avutil.pas
+++ b/Game/Code/lib/ffmpeg/avutil.pas
@@ -29,13 +29,15 @@ unit avutil;
interface
const
-{$IFDEF win32}
+{$IFDEF MSWINDOWS}
av__util = 'avutil-49.dll';
-{$ELSE}
+{$ENDIF}
+{$IFDEF LINUX}
av__util = 'libavutil.so'; // .0d
-// av__util = 'libavutil.49';
{$ENDIF}
-
+{$IFDEF DARWIN}
+ av__util = 'libavutil.dylib';
+{$ENDIF}
LIBAVUTIL_VERSION_INT = ((49 shl 16) + (4 shl 8) + 1);
LIBAVUTIL_VERSION = '49.4.1';