diff options
author | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2013-01-03 22:47:34 +0000 |
---|---|---|
committer | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2013-01-03 22:47:34 +0000 |
commit | 08aa51105f881f912d7e4e4e4e083cb7732fd4b8 (patch) | |
tree | 9292ef16ce4217cc60eef17d8b207196088553c5 /src/lib/ffmpeg-0.9/libavutil | |
parent | 3d1808b5ec93069182b730bb8ab826121ef1b78a (diff) | |
download | usdx-08aa51105f881f912d7e4e4e4e083cb7732fd4b8.tar.gz usdx-08aa51105f881f912d7e4e4e4e083cb7732fd4b8.tar.xz usdx-08aa51105f881f912d7e4e4e4e083cb7732fd4b8.zip |
merge with the patches of s_alexander from the new svn repository. prepare for second move to the new repository.
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2932 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | src/lib/ffmpeg-0.9/libavutil/opt.pas | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ffmpeg-0.9/libavutil/opt.pas b/src/lib/ffmpeg-0.9/libavutil/opt.pas index 6cf1fcfa..b51b744a 100644 --- a/src/lib/ffmpeg-0.9/libavutil/opt.pas +++ b/src/lib/ffmpeg-0.9/libavutil/opt.pas @@ -519,7 +519,7 @@ function av_opt_find(obj: pointer; name: {const} PAnsiChar; unit_: {const} PAnsi * @return A pointer to the option found, or NULL if no option * was found. *) -funtion av_opt_find2(obj: pointer; name: {const} PAnsiChar; unit: {const} PAnsiChar; +function av_opt_find2(obj: pointer; name: {const} PAnsiChar; unit_: {const} PAnsiChar; opt_flags: cint; search_flags: cint; target_obj: pointer): {const} PAVOption; cdecl; external av__util; @@ -532,7 +532,7 @@ funtion av_opt_find2(obj: pointer; name: {const} PAnsiChar; unit: {const} PAnsiC * or NULL * @return next AVOption or NULL *) -funtion av_opt_next(obj: pointer; prev: {const} PAVOption): {const} PAVOption; +function av_opt_next(obj: pointer; prev: {const} PAVOption): {const} PAVOption; cdecl; external av__util; (** |