aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/lib/ffmpeg/opt.pas
diff options
context:
space:
mode:
authorjaybinks <jaybinks@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-10-11 08:03:12 +0000
committerjaybinks <jaybinks@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-10-11 08:03:12 +0000
commit48676faa6c0da1eb77999512322896840ea13cb1 (patch)
tree34783f49bcbb5d159955d16e9648daa95a5b2d64 /Game/Code/lib/ffmpeg/opt.pas
parent2f80e3be339f528bd0c7ef54db8ff7cc641883e3 (diff)
downloadusdx-48676faa6c0da1eb77999512322896840ea13cb1.tar.gz
usdx-48676faa6c0da1eb77999512322896840ea13cb1.tar.xz
usdx-48676faa6c0da1eb77999512322896840ea13cb1.zip
major changes to FFMPEG Headers so they now support linux.
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@500 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/lib/ffmpeg/opt.pas')
-rw-r--r--Game/Code/lib/ffmpeg/opt.pas19
1 files changed, 10 insertions, 9 deletions
diff --git a/Game/Code/lib/ffmpeg/opt.pas b/Game/Code/lib/ffmpeg/opt.pas
index c8b72479..0acead1f 100644
--- a/Game/Code/lib/ffmpeg/opt.pas
+++ b/Game/Code/lib/ffmpeg/opt.pas
@@ -16,15 +16,19 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*)
+(* This is a part of Pascal porting of ffmpeg. Originally by Victor Zinetz for Delphi and Free Pascal on Windows.
+For Mac OS X, some modifications were made by The Creative CAT, denoted as CAT
+in the source codes *)
+
unit opt;
+{$MODE DELPHI} (* CAT *)
+{$PACKENUM 4} (* every enum type variables uses 4 bytes, CAT *)
+{$PACKRECORDS C} (* GCC compatible, Record Packing, CAT *)
interface
uses
- {$IFDEF win32}
- windows,
- {$ENDIF}
- rational;
+ rational; (* CAT *)
type
TAVOptionType = (
@@ -39,12 +43,9 @@ type
);
const
+(* version numbers are changed by The Creative CAT *)
+ av__codec = 'libavcodec.51';
- {$IFDEF win32}
- av__codec = 'avcodec-51.dll';
- {$ELSE}
- av__codec = 'avcodec.so'; // .0d
- {$ENDIF}
AV_OPT_FLAG_ENCODING_PARAM = 1; ///< a generic parameter which can be set by the user for muxing or encoding
AV_OPT_FLAG_DECODING_PARAM = 2; ///< a generic parameter which can be set by the user for demuxing or decoding