diff options
author | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2013-05-17 21:09:01 +0000 |
---|---|---|
committer | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2013-05-17 21:09:01 +0000 |
commit | 6b696eb1fcbce5971403ea5435be2756e933e280 (patch) | |
tree | ca1660e5cddf57f1efd4559f68a5dc0d2a3ac7f1 /src/lib/ffmpeg-0.9/libavutil | |
parent | 4d2b91a9707d0875effd1f0af8c9c1f9c8d8aa4b (diff) | |
download | usdx-6b696eb1fcbce5971403ea5435be2756e933e280.tar.gz usdx-6b696eb1fcbce5971403ea5435be2756e933e280.tar.xz usdx-6b696eb1fcbce5971403ea5435be2756e933e280.zip |
a couple of fixes.
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2991 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src/lib/ffmpeg-0.9/libavutil')
-rw-r--r-- | src/lib/ffmpeg-0.9/libavutil/opt2.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ffmpeg-0.9/libavutil/opt2.pas b/src/lib/ffmpeg-0.9/libavutil/opt2.pas index dcc240c5..1d88d7af 100644 --- a/src/lib/ffmpeg-0.9/libavutil/opt2.pas +++ b/src/lib/ffmpeg-0.9/libavutil/opt2.pas @@ -60,7 +60,7 @@ function av_opt_set_q (obj: pointer; name: {const} PAnsiChar; val: TAVRation (** * @note the returned string will av_malloc()ed and must be av_free()ed by the caller *) -function av_opt_get (obj: pointer; name: {const} PAnsiChar; search_flags: cint; outval: ^Pcuint8): cint; +function av_opt_get (obj: pointer; name: {const} PAnsiChar; search_flags: cint; outval: Pcuint8): cint; cdecl; external av__util; function av_opt_get_int (obj: pointer; name: {const} PAnsiChar; search_flags: cint; outval: Pcint64): cint; cdecl; external av__util; |