diff options
author | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2013-05-17 21:37:03 +0000 |
---|---|---|
committer | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2013-05-17 21:37:03 +0000 |
commit | 4c038bad8edb8cc60e5db85e83f55798de66c4b6 (patch) | |
tree | 2997a5f56ef20626efb0fea63de63a7fb7e95163 /src/lib/ffmpeg-0.9/libavutil | |
parent | fb01fe7bb3cc155b39ac4419b68c02639e97d916 (diff) | |
download | usdx-4c038bad8edb8cc60e5db85e83f55798de66c4b6.tar.gz usdx-4c038bad8edb8cc60e5db85e83f55798de66c4b6.tar.xz usdx-4c038bad8edb8cc60e5db85e83f55798de66c4b6.zip |
one more fix on avformat and a try with opt2.pas.
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2993 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 1d88d7af..dcc240c5 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; |