aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/ffmpeg7/avutil.pas
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/ffmpeg7/avutil.pas')
-rw-r--r--src/lib/ffmpeg7/avutil.pas24
1 files changed, 16 insertions, 8 deletions
diff --git a/src/lib/ffmpeg7/avutil.pas b/src/lib/ffmpeg7/avutil.pas
index 1b66b2e5..6dd0643f 100644
--- a/src/lib/ffmpeg7/avutil.pas
+++ b/src/lib/ffmpeg7/avutil.pas
@@ -49,8 +49,6 @@ interface
uses
ctypes,
- mathematics,
- opt,
rational,
{$IFDEF UNIX}
BaseUnix,
@@ -154,19 +152,29 @@ type
function av_get_picture_type_char(pict_type: TAVPictureType): Pchar;
cdecl; external av__util;
-{$INCLUDE error.pas}
+{$INCLUDE libavutil/cpu.pas}
-{$INCLUDE pixfmt.pas}
+{$INCLUDE libavutil/dict.pas}
+
+{$INCLUDE libavutil/error.pas}
+
+{$INCLUDE libavutil/mathematics.pas}
+
+{$INCLUDE libavutil/mem.pas}
+
+{$INCLUDE libavutil/opt.pas}
+
+{$INCLUDE libavutil/log.pas}
+
+{$INCLUDE libavutil/pixfmt.pas}
+
+{$INCLUDE libavutil/samplefmt.pas}
(* libavutil/common.h *) // until now MKTAG and MKBETAG is all from common.h KMS 19/5/2010
function MKTAG (a, b, c, d: AnsiChar): integer;
function MKBETAG(a, b, c, d: AnsiChar): integer;
-{$INCLUDE mem.pas}
-
-{$INCLUDE log.pas}
-
implementation
(* libavutil/common.h *)