X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2Fwebrtc%2Fcommon_audio%2Fsignal_processing%2Finclude%2Fsignal_processing_library.h;h=60c60bc9639879a6d028a8795000278cdea777fa;hb=ff3e2503a20db9193d323c1d19c38c68004dec4a;hp=852bbf96e43487dd0e53a6554e640e2dfc5e8aa1;hpb=7338fba38ba696536d1cc9d389afd716a6ab2fe6;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/webrtc/common_audio/signal_processing/include/signal_processing_library.h b/src/third_party/webrtc/common_audio/signal_processing/include/signal_processing_library.h index 852bbf9..60c60bc 100644 --- a/src/third_party/webrtc/common_audio/signal_processing/include/signal_processing_library.h +++ b/src/third_party/webrtc/common_audio/signal_processing/include/signal_processing_library.h @@ -143,9 +143,6 @@ #define WEBRTC_SPL_RSHIFT_U32(x, c) ((uint32_t)(x) >> (c)) #define WEBRTC_SPL_LSHIFT_U32(x, c) ((uint32_t)(x) << (c)) -#define WEBRTC_SPL_VNEW(t, n) (t *) malloc (sizeof (t) * (n)) -#define WEBRTC_SPL_FREE free - #define WEBRTC_SPL_RAND(a) \ ((int16_t)(WEBRTC_SPL_MUL_16_16_RSFT((a), 18816, 7) & 0x00007fff))