summaryrefslogtreecommitdiffstats
path: root/libswscale/swscale.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-04-07 14:07:51 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-04-07 14:07:51 +0000
commit2a39682956457d63934762ec2b314a28cbc36284 (patch)
tree06366d2e5e6e709db43847ac12dd48d7446a3686 /libswscale/swscale.c
parent79e828c998e7a3121c563fc95c461f61b8047e0c (diff)
downloadmpv-2a39682956457d63934762ec2b314a28cbc36284.tar.bz2
mpv-2a39682956457d63934762ec2b314a28cbc36284.tar.xz
typo
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22932 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libswscale/swscale.c')
-rw-r--r--libswscale/swscale.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c
index 54924b0eef..a56cdefa3f 100644
--- a/libswscale/swscale.c
+++ b/libswscale/swscale.c
@@ -2050,7 +2050,7 @@ SwsContext *sws_getContext(int srcW, int srcH, int srcFormat, int dstW, int dstH
c->chrIntHSubSample= c->chrDstHSubSample;
c->chrIntVSubSample= c->chrSrcVSubSample;
- // note the -((-x)>>y) is so that we allways round toward +inf
+ // Note the -((-x)>>y) is so that we always round toward +inf.
c->chrSrcW= -((-srcW) >> c->chrSrcHSubSample);
c->chrSrcH= -((-srcH) >> c->chrSrcVSubSample);
c->chrDstW= -((-dstW) >> c->chrDstHSubSample);