From 74c640aebbb07302f36b86f291c1d82690411f2c Mon Sep 17 00:00:00 2001 From: "turajs@google.com" Date: Tue, 30 Aug 2011 20:44:24 +0000 Subject: [PATCH] fix build break Review URL: http://webrtc-codereview.appspot.com/132004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@493 4adac7df-926f-26a2-2b94-8c16560cd09d --- src/modules/audio_coding/codecs/PCM16B/main/source/pcm16b.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/modules/audio_coding/codecs/PCM16B/main/source/pcm16b.c b/src/modules/audio_coding/codecs/PCM16B/main/source/pcm16b.c index 539135f719..ac15eb8754 100644 --- a/src/modules/audio_coding/codecs/PCM16B/main/source/pcm16b.c +++ b/src/modules/audio_coding/codecs/PCM16B/main/source/pcm16b.c @@ -11,6 +11,8 @@ #include "pcm16b.h" +#include + #include "typedefs.h" #ifdef WEBRTC_BIG_ENDIAN @@ -66,7 +68,6 @@ WebRtc_Word16 WebRtcPcm16b_DecodeW16(void *inst, WebRtc_Word16 *speechOut16b, WebRtc_Word16* speechType) { - // Avoid warning (void)(inst = NULL); #ifdef WEBRTC_BIG_ENDIAN WEBRTC_SPL_MEMCPY_W8(speechOut16b, speechIn16b, ((len*sizeof(WebRtc_Word16)+1)>>1));