Commit 005db470 authored by Mans Rullgard's avatar Mans Rullgard

mathops: remove ancient confusing comment

Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
parent c540061f
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment