mathops: remove ancient confusing comment

Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
Mans Rullgard 2011-05-16 21:31:06 +01:00
parent c540061f3f
commit 005db47011
1 changed files with 0 additions and 3 deletions

View File

@ -45,9 +45,6 @@
#endif
#ifndef MULH
//gcc 3.4 creates an incredibly bloated mess out of this
//# define MULH(a,b) (((int64_t)(a) * (int64_t)(b))>>32)
static av_always_inline int MULH(int a, int b){
return ((int64_t)(a) * (int64_t)(b))>>32;
}