Changeset 2252
- Timestamp:
- Aug 28, 2008 10:44:46 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/src/pjmedia/echo_speex.c
r2198 r2252 21 21 #include <pjmedia/errno.h> 22 22 #include <pj/assert.h> 23 #include <pj/log.h> 23 24 #include <pj/pool.h> 24 25 #include <speex/speex_echo.h> … … 67 68 channel_count, channel_count); 68 69 #else 69 PJ_ASSERT_RETURN(channel_count==1, PJ_EINVAL); 70 if (channel_count != 1) { 71 PJ_LOG(2,("echo_speex.c", "Multichannel EC is not supported by this " 72 "echo canceller. It may not work.")); 73 } 70 74 echo->state = speex_echo_state_init(echo->samples_per_frame, 71 75 clock_rate * tail_ms / 1000);
Note: See TracChangeset
for help on using the changeset viewer.