Skip to content

Commit d486dad

Browse files
committed
Remove the unused macro SUBSAMPLE
1 parent 5125ca2 commit d486dad

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

third_party/libyuv/source/scale.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ static __inline int Abs(int v) {
2121
return v >= 0 ? v : -v;
2222
}
2323

24-
#define SUBSAMPLE(v, a, s) (v < 0) ? (-((-v + a) >> s)) : ((v + a) >> s)
2524
#define CENTERSTART(dx, s) (dx < 0) ? -((-dx >> 1) + s) : ((dx >> 1) + s)
2625

2726
#define MIN1(x) ((x) < 1 ? 1 : (x))

0 commit comments

Comments
 (0)