common_audio/signal_processing: Removes macro WEBRTC_SPL_UMUL_RSFT16
This macro was only used on two lines in iSACfix and I replaced those with the operations the macro performed. BUG=3348 TESTED=trybots, manual unittests R=tina.legrand@webrtc.org Review URL: https://webrtc-codereview.appspot.com/14529004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6184 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -53,8 +53,6 @@
|
||||
((int32_t) ((int32_t)(a) * (int32_t)(b)))
|
||||
#define WEBRTC_SPL_UMUL(a, b) \
|
||||
((uint32_t) ((uint32_t)(a) * (uint32_t)(b)))
|
||||
#define WEBRTC_SPL_UMUL_RSFT16(a, b) \
|
||||
((uint32_t) ((uint32_t)(a) * (uint32_t)(b)) >> 16)
|
||||
#define WEBRTC_SPL_UMUL_16_16(a, b) \
|
||||
((uint32_t) (uint16_t)(a) * (uint16_t)(b))
|
||||
#define WEBRTC_SPL_UMUL_16_16_RSFT16(a, b) \
|
||||
|
||||
Reference in New Issue
Block a user