Commit be1db21b authored by Diego Biurrun's avatar Diego Biurrun

mathops: Drop disabled alternative mid_pred() implementation

parent be3363f6
......@@ -99,15 +99,6 @@ static av_always_inline unsigned UMULH(unsigned a, unsigned b){
#define mid_pred mid_pred
static inline av_const int mid_pred(int a, int b, int c)
{
#if 0
int t= (a-b)&((a-b)>>31);
a-=t;
b+=t;
b-= (b-c)&((b-c)>>31);
b+= (a-b)&((a-b)>>31);
return b;
#else
if(a>b){
if(c>b){
if(c>a) b=a;
......@@ -120,7 +111,6 @@ static inline av_const int mid_pred(int a, int b, int c)
}
}
return b;
#endif
}
#endif
......
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