diff options
author | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2012-10-20 07:59:59 +0000 |
---|---|---|
committer | k-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2012-10-20 07:59:59 +0000 |
commit | 65a64deeb0d295749f97f04ebd4c85122082fe71 (patch) | |
tree | cbbbab6f60d925596509d3e455f9bb163b29ed57 | |
parent | eaca529cd5bcea6af4b8cdf9a878bec49cba231c (diff) | |
download | usdx-65a64deeb0d295749f97f04ebd4c85122082fe71.tar.gz usdx-65a64deeb0d295749f97f04ebd4c85122082fe71.tar.xz usdx-65a64deeb0d295749f97f04ebd4c85122082fe71.zip |
fix compilation for old ffmpeg?
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2927 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | src/ultrastardx.dpr | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ultrastardx.dpr b/src/ultrastardx.dpr index 0c899632..9a77eea3 100644 --- a/src/ultrastardx.dpr +++ b/src/ultrastardx.dpr @@ -88,9 +88,11 @@ uses {$IFDEF UseFFmpeg} {$IFDEF FPC} // This solution is not very elegant, but working - avcodec in 'lib\' + FFMPEG_DIR + '\avcodec.pas', + avcodec in 'lib\' + FFMPEG_DIR + '\avcodec.pas', avformat in 'lib\' + FFMPEG_DIR + '\avformat.pas', avutil in 'lib\' + FFMPEG_DIR + '\avutil.pas', + mathematics in 'lib\' + FFMPEG_DIR + '\mathematics.pas', + opt in 'lib\' + FFMPEG_DIR + '\opt.pas', rational in 'lib\' + FFMPEG_DIR + '\rational.pas', avio in 'lib\' + FFMPEG_DIR + '\avio.pas', {$IFDEF UseSWScale} |