aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/ffmpeg/avutil.pas
diff options
context:
space:
mode:
authork-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2010-05-12 13:46:46 +0000
committerk-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2010-05-12 13:46:46 +0000
commit724522cddc21d41d14f2ef343ae7e858c240e1d6 (patch)
treeb62764bb1b5ec15d82b1ec9cc8df013872ce2277 /src/lib/ffmpeg/avutil.pas
parenta289b5b40ec4a16eb05e2557b88c50f4de39840c (diff)
downloadusdx-724522cddc21d41d14f2ef343ae7e858c240e1d6.tar.gz
usdx-724522cddc21d41d14f2ef343ae7e858c240e1d6.tar.xz
usdx-724522cddc21d41d14f2ef343ae7e858c240e1d6.zip
comments re: TAVMediaType. no code change
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2368 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src/lib/ffmpeg/avutil.pas')
-rw-r--r--src/lib/ffmpeg/avutil.pas8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/lib/ffmpeg/avutil.pas b/src/lib/ffmpeg/avutil.pas
index cc1e3d44..708b5533 100644
--- a/src/lib/ffmpeg/avutil.pas
+++ b/src/lib/ffmpeg/avutil.pas
@@ -141,7 +141,11 @@ function avutil_license(): PAnsiChar;
cdecl; external av__format;
{$IFEND}
-{$IF LIBAVUTIL_VERSION >= 50020000} // >= 50.14.0
+{
+ TAVMediaType moved to avutil in LIBAVUTIL_VERSION 50.14.0
+ but moving it in the pascal headers was not really necessary
+ but caused problems. So, I (KMS) left it there.
+
type
TAVMediaType = (
AVMEDIA_TYPE_UNKNOWN = -1,
@@ -152,7 +156,7 @@ type
AVMEDIA_TYPE_ATTACHMENT,
AVMEDIA_TYPE_NB
);
-{$IFEND}
+}
(* libavutil/error.h *)