diff options
author | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2012-07-14 12:58:03 +0000 |
---|---|---|
committer | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2012-07-14 12:58:03 +0000 |
commit | 7ff091f56cb965d06780e30fbf7cbaeab5fc0cb8 (patch) | |
tree | 56e7c7420214f087ac08da3afd1a0d5f5e2f2de0 /src/lib/ffmpeg | |
parent | 7c1b9be0d3462a15c9b37a1388e8d9910a8f6f96 (diff) | |
download | usdx-7ff091f56cb965d06780e30fbf7cbaeab5fc0cb8.tar.gz usdx-7ff091f56cb965d06780e30fbf7cbaeab5fc0cb8.tar.xz usdx-7ff091f56cb965d06780e30fbf7cbaeab5fc0cb8.zip |
fix pointer types.
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2920 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src/lib/ffmpeg')
-rw-r--r-- | src/lib/ffmpeg/avcodec.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ffmpeg/avcodec.pas b/src/lib/ffmpeg/avcodec.pas index 63ffa012..ea6a45dc 100644 --- a/src/lib/ffmpeg/avcodec.pas +++ b/src/lib/ffmpeg/avcodec.pas @@ -3548,7 +3548,7 @@ procedure avpicture_free (picture: PAVPicture); * @param height the height of the image in pixels * @return size of the image data in bytes *) -function avpicture_fill (picture: PAVPicture; ptr: pointer; +function avpicture_fill (picture: PAVPicture; ptr: pcuint8; pix_fmt: TAVPixelFormat; width: cint; height: cint): cint; cdecl; external av__codec; |