From 6aa2f991011f9dcda5cad29e0a0c7a850eaee185 Mon Sep 17 00:00:00 2001 From: k-m_schindler Date: Fri, 17 May 2013 21:39:12 +0000 Subject: another try with opt2.pas. git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2994 b956fd51-792f-4845-bead-9b4dfca2ff2c --- src/lib/ffmpeg-0.9/libavutil/opt2.pas | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/lib') diff --git a/src/lib/ffmpeg-0.9/libavutil/opt2.pas b/src/lib/ffmpeg-0.9/libavutil/opt2.pas index dcc240c5..46a1a0ce 100644 --- a/src/lib/ffmpeg-0.9/libavutil/opt2.pas +++ b/src/lib/ffmpeg-0.9/libavutil/opt2.pas @@ -60,7 +60,9 @@ 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; +type + PPcuint8 = ^Pcuint8; +function av_opt_get (obj: pointer; name: {const} PAnsiChar; search_flags: cint; outval: PPcuint8): 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; -- cgit v1.2.3