aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/ffmpeg-0.10
diff options
context:
space:
mode:
authork-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2012-06-09 12:21:14 +0000
committerk-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2012-06-09 12:21:14 +0000
commitf00ec57305414f90c08f004c0e943b29a116de9f (patch)
tree15f375057459b20d95922cd5bffc13bf4b89226e /src/lib/ffmpeg-0.10
parent2ef392845b5a2862ebd031ebd91569f9ff384af5 (diff)
downloadusdx-f00ec57305414f90c08f004c0e943b29a116de9f.tar.gz
usdx-f00ec57305414f90c08f004c0e943b29a116de9f.tar.xz
usdx-f00ec57305414f90c08f004c0e943b29a116de9f.zip
bugfix of wrong type
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2896 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src/lib/ffmpeg-0.10')
-rw-r--r--src/lib/ffmpeg-0.10/libavcodec/audioconvert.pas2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ffmpeg-0.10/libavcodec/audioconvert.pas b/src/lib/ffmpeg-0.10/libavcodec/audioconvert.pas
index 2d50e195..9b2877d1 100644
--- a/src/lib/ffmpeg-0.10/libavcodec/audioconvert.pas
+++ b/src/lib/ffmpeg-0.10/libavcodec/audioconvert.pas
@@ -135,6 +135,6 @@ function av_get_channel_layout_nb_channels(channel_layout: cuint64): cint;
(**
* Return default channel layout for a given number of channels.
*)
-function av_get_default_channel_layout(nb_channels: cint): cint64_t;
+function av_get_default_channel_layout(nb_channels: cint): cint64;
cdecl; external av__util;