diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-01-10 23:47:40 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-01-10 23:47:40 +0000 |
commit | fc79f056741619c9432fe5f5e99f861e82705a2e (patch) | |
tree | b81616c7f1dc3070daf42c4f2c8eb4d0ca317cc1 /Game/Code/lib/ffmpeg | |
parent | 6084e90af46bac033d637a9075f308b4d2ec57fd (diff) | |
download | usdx-fc79f056741619c9432fe5f5e99f861e82705a2e.tar.gz usdx-fc79f056741619c9432fe5f5e99f861e82705a2e.tar.xz usdx-fc79f056741619c9432fe5f5e99f861e82705a2e.zip |
eddie is right: pb is a pointer and not a TByteIOContext struct.
I changed the generic Pointer to a PByteIOContext to be more specific.
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@778 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | Game/Code/lib/ffmpeg/avformat.pas | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Game/Code/lib/ffmpeg/avformat.pas b/Game/Code/lib/ffmpeg/avformat.pas index 4b130dd3..091b8fe0 100644 --- a/Game/Code/lib/ffmpeg/avformat.pas +++ b/Game/Code/lib/ffmpeg/avformat.pas @@ -316,10 +316,9 @@ type oformat: PAVOutputFormat; priv_data: pointer; - //pb: TByteIOContext; - pb: Pointer; // eddie: This is a pointer (at least on OS X) - - nb_streams: cardinal; (* CAT#3 *) + pb: PByteIOContext; + + nb_streams: cardinal; (* CAT#3 *) streams: array [0..MAX_STREAMS - 1] of PAVStream; filename: array [0..1023] of char; (* input or output filename *) (* stream info *) |