aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authork-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2009-12-17 20:56:40 +0000
committerk-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2009-12-17 20:56:40 +0000
commitfa95eab290da90e3a7d9f49f3be6f1fab96dbc26 (patch)
tree8fc9eafe42cb9574ad19c82154633369ab44f52f
parent988ccd68a2b6b89dd1a9e622ea15be2bcc2d6270 (diff)
downloadusdx-fa95eab290da90e3a7d9f49f3be6f1fab96dbc26.tar.gz
usdx-fa95eab290da90e3a7d9f49f3be6f1fab96dbc26.tar.xz
usdx-fa95eab290da90e3a7d9f49f3be6f1fab96dbc26.zip
remove duplicate declaration of constants for AVCODEC >= 52.42.0
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2047 b956fd51-792f-4845-bead-9b4dfca2ff2c
-rw-r--r--src/lib/ffmpeg/opt.pas7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/lib/ffmpeg/opt.pas b/src/lib/ffmpeg/opt.pas
index 65e055ce..86144598 100644
--- a/src/lib/ffmpeg/opt.pas
+++ b/src/lib/ffmpeg/opt.pas
@@ -122,13 +122,6 @@ type
* This is identical to AVOption except that default_val was replaced by
* an union, it should be compatible with AVOption on normal platforms.
*)
-const
- 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, ...
- AV_OPT_FLAG_AUDIO_PARAM = 8;
- AV_OPT_FLAG_VIDEO_PARAM = 16;
- AV_OPT_FLAG_SUBTITLE_PARAM = 32;
type
PAVOption2 = ^TAVOption2;
TAVOption2 = record