aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/ffmpeg-2.2/rational.pas
diff options
context:
space:
mode:
authorbrian-ch <brian-ch@b956fd51-792f-4845-bead-9b4dfca2ff2c>2014-08-03 22:00:58 +0000
committerbrian-ch <brian-ch@b956fd51-792f-4845-bead-9b4dfca2ff2c>2014-08-03 22:00:58 +0000
commit92019ca061a75393ee2623a5b3bf131e147d53ca (patch)
treef57aa2313dc62e4b510551ac53f5f9f0595267f9 /src/lib/ffmpeg-2.2/rational.pas
parent9d670bc59d8aee9858ba9fdecc383b5b6fd80d42 (diff)
downloadusdx-92019ca061a75393ee2623a5b3bf131e147d53ca.tar.gz
usdx-92019ca061a75393ee2623a5b3bf131e147d53ca.tar.xz
usdx-92019ca061a75393ee2623a5b3bf131e147d53ca.zip
Fix some compilation problems with ffmpeg 2.2
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@3079 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src/lib/ffmpeg-2.2/rational.pas')
-rw-r--r--src/lib/ffmpeg-2.2/rational.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ffmpeg-2.2/rational.pas b/src/lib/ffmpeg-2.2/rational.pas
index 5795b81f..d6f63749 100644
--- a/src/lib/ffmpeg-2.2/rational.pas
+++ b/src/lib/ffmpeg-2.2/rational.pas
@@ -226,8 +226,8 @@ end;
function av_make_q(num, den: cint): TAVRational; {$IFDEF HasInline}inline;{$ENDIF}
begin
- Result.num := q.num;
- Result.den := q.den;
+ Result.num := num;
+ Result.den := den;
end;
end.