summaryrefslogtreecommitdiffstats
path: root/k9decmpeg/motion_comp_vis.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'k9decmpeg/motion_comp_vis.cpp')
-rwxr-xr-xk9decmpeg/motion_comp_vis.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/k9decmpeg/motion_comp_vis.cpp b/k9decmpeg/motion_comp_vis.cpp
index 218af8a..49e1b69 100755
--- a/k9decmpeg/motion_comp_vis.cpp
+++ b/k9decmpeg/motion_comp_vis.cpp
@@ -37,10 +37,10 @@
* (x+y+1)>>1 == (x|y)-((x^y)>>1)
*
* This allows us to average 8 bytes at a time in a 64-bit FPU reg.
- * We avoid overflows by masking before we do the shift, and we
+ * We avoid overflows by tqmasking before we do the shift, and we
* implement the shift by multiplying by 1/2 using mul8x16. So in
- * VIS this is (assume 'x' is in f0, 'y' is in f2, a repeating mask
- * of '0xfe' is in f4, a repeating mask of '0x7f' is in f6, and
+ * VIS this is (assume 'x' is in f0, 'y' is in f2, a repeating tqmask
+ * of '0xfe' is in f4, a repeating tqmask of '0x7f' is in f6, and
* the value 0x80808080 is in f8):
*
* fxor f0, f2, f10