mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-16 04:15:05 +00:00
mathops: remove ancient confusing comment
Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
parent
c540061f3f
commit
005db47011
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user