diff options
author | b1indy <b1indy@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-12-22 19:37:52 +0000 |
---|---|---|
committer | b1indy <b1indy@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-12-22 19:37:52 +0000 |
commit | b1adf70e2659a6414175b5ae66ffa33f90bf573e (patch) | |
tree | d2356caff14cbeed495d43e22bff09393dc49ea4 /Game/Code/lib/ffmpeg | |
parent | a62b466452023d1d82881a124c29797844f553a6 (diff) | |
download | usdx-b1adf70e2659a6414175b5ae66ffa33f90bf573e.tar.gz usdx-b1adf70e2659a6414175b5ae66ffa33f90bf573e.tar.xz usdx-b1adf70e2659a6414175b5ae66ffa33f90bf573e.zip |
incorporated av_free_packet fix
fixed #VIDEOGAP problem
fixed unexpected #START problem (needs to be fixed in trunk too
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/1.0.1@741 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/lib/ffmpeg')
-rw-r--r-- | Game/Code/lib/ffmpeg/avformat.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Game/Code/lib/ffmpeg/avformat.pas b/Game/Code/lib/ffmpeg/avformat.pas index aa74043b..e7584d87 100644 --- a/Game/Code/lib/ffmpeg/avformat.pas +++ b/Game/Code/lib/ffmpeg/avformat.pas @@ -113,7 +113,7 @@ type stream_index: integer; flags: integer; duration: integer; ///< presentation duration in time_base units (0 if not available) - destruct: procedure (p: PAVPacket); (* This cannot be var : TAVPacket. + destruct: procedure (p: PAVPacket);cdecl; (* This cannot be var : TAVPacket. because TAVPacket is not completely defined yet *) priv: pointer; pos: int64 ///< byte position in stream, -1 if unknown |