aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/ffmpeg
diff options
context:
space:
mode:
authortobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2010-06-05 09:03:40 +0000
committertobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2010-06-05 09:03:40 +0000
commit49afe883b07fd22db57f0283ee31f1bb6dd0bbd7 (patch)
tree0cf230890ba8a3cdbace29f25ec9126f623d077f /src/lib/ffmpeg
parent85e05243b664f1b1b82c8c79ad370ae22b6e49c5 (diff)
downloadusdx-49afe883b07fd22db57f0283ee31f1bb6dd0bbd7.tar.gz
usdx-49afe883b07fd22db57f0283ee31f1bb6dd0bbd7.tar.xz
usdx-49afe883b07fd22db57f0283ee31f1bb6dd0bbd7.zip
bugfix: avutil_version() is in libavutil not libavformat
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2441 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src/lib/ffmpeg')
-rw-r--r--src/lib/ffmpeg/avutil.pas6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/ffmpeg/avutil.pas b/src/lib/ffmpeg/avutil.pas
index cca33620..5387a0f1 100644
--- a/src/lib/ffmpeg/avutil.pas
+++ b/src/lib/ffmpeg/avutil.pas
@@ -120,7 +120,7 @@ const
* Returns the LIBAVUTIL_VERSION_INT constant.
*)
function avutil_version(): cuint;
- cdecl; external av__format;
+ cdecl; external av__util;
{$IFEND}
{$IF LIBAVUTIL_VERSION >= 50004000} // >= 50.4.0
@@ -128,13 +128,13 @@ function avutil_version(): cuint;
* Returns the libavutil build-time configuration.
*)
function avutil_configuration(): PAnsiChar;
- cdecl; external av__format;
+ cdecl; external av__util;
(**
* Returns the libavutil license.
*)
function avutil_license(): PAnsiChar;
- cdecl; external av__format;
+ cdecl; external av__util;
{$IFEND}
{