mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02: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
|
#endif
|
||||||
|
|
||||||
#ifndef MULH
|
#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){
|
static av_always_inline int MULH(int a, int b){
|
||||||
return ((int64_t)(a) * (int64_t)(b))>>32;
|
return ((int64_t)(a) * (int64_t)(b))>>32;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user