aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/lib/ffmpeg/opt.pas
diff options
context:
space:
mode:
authortobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-01-11 03:26:05 +0000
committertobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-01-11 03:26:05 +0000
commit9ddb8c2b7c851d82922342ee8873267f0f1ae310 (patch)
tree5bd532af8f9b468b312b0b21cbf4c38d69bae331 /Game/Code/lib/ffmpeg/opt.pas
parentfc79f056741619c9432fe5f5e99f861e82705a2e (diff)
downloadusdx-9ddb8c2b7c851d82922342ee8873267f0f1ae310.tar.gz
usdx-9ddb8c2b7c851d82922342ee8873267f0f1ae310.tar.xz
usdx-9ddb8c2b7c851d82922342ee8873267f0f1ae310.zip
there were some changes in the ffmpeg interface (for example TAVFormatContext's pb member is a pointer now).
To better track version changes, version numbers of the dlls are now managed by the version.inc file. git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@779 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/lib/ffmpeg/opt.pas')
-rw-r--r--Game/Code/lib/ffmpeg/opt.pas11
1 files changed, 2 insertions, 9 deletions
diff --git a/Game/Code/lib/ffmpeg/opt.pas b/Game/Code/lib/ffmpeg/opt.pas
index e70d77ad..bd3f14fd 100644
--- a/Game/Code/lib/ffmpeg/opt.pas
+++ b/Game/Code/lib/ffmpeg/opt.pas
@@ -32,6 +32,8 @@ interface
uses
rational; (* CAT *)
+{$I version.inc}
+
type
TAVOptionType = (
FF_OPT_TYPE_FLAGS,
@@ -45,15 +47,6 @@ type
);
const
-
-{$IFDEF win32}
- av__codec = 'avcodec-51.dll';
-{$ELSE}
- av__codec = 'avcodec.so'; // .0d
- // av__codec = 'libavcodec.51';
-{$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
AV_OPT_FLAG_METADATA = 4; ///< some data extracted or inserted into the file like title, comment, ...