mod_sangoma_codec: fix compilation warning/error

This commit is contained in:
Moises Silva 2010-10-20 10:31:18 -04:00
parent ad74326b3f
commit 3baa433e0b
1 changed files with 3 additions and 3 deletions

View File

@ -596,9 +596,9 @@ static switch_status_t switch_sangoma_decode(switch_codec_t *codec, /* codec ses
* whether the buffer passed in by the core will be enough */
switch_frame_t encoded_frame;
switch_frame_t ulaw_frame;
switch_status_t sres;
switch_time_t now_time, difftime;
switch_time_t func_start_time, func_end_time;
switch_status_t sres = 0;
switch_time_t now_time = 0, difftime = 0;
switch_time_t func_start_time = 0, func_end_time = 0;
short *dbuf_linear;
int i = 0;
int res = 0;