Changeset 3443
- Timestamp:
- Mar 15, 2011 5:09:29 AM (14 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/src/pjmedia/echo_speex.c
r2394 r3443 24 24 #include <pj/log.h> 25 25 #include <pj/pool.h> 26 27 #if defined(PJMEDIA_HAS_SPEEX_AEC) && PJMEDIA_HAS_SPEEX_AEC != 0 28 26 29 #include <speex/speex_echo.h> 27 30 #include <speex/speex_preprocess.h> … … 186 189 } 187 190 191 #endif -
pjproject/trunk/pjsip/src/pjsip-simple/presence.c
r3412 r3443 702 702 const pj_str_t STR_MULTIPART = { "multipart", 9 }; 703 703 pjsip_ctype_hdr *ctype_hdr; 704 pj_status_t status ;704 pj_status_t status = PJ_SUCCESS; 705 705 706 706 *p_st_text = NULL; -
pjproject/trunk/pjsip/src/test/uri_test.c
r2660 r3443 953 953 pj_highprec_mul(avg_parse, AVERAGE_URL_LEN); 954 954 pj_highprec_div(avg_parse, var.parse_len); 955 if (avg_parse == 0) 956 avg_parse = 1; 955 957 avg_parse = 1000000 / avg_parse; 956 958 … … 970 972 pj_highprec_mul(avg_print, AVERAGE_URL_LEN); 971 973 pj_highprec_div(avg_print, var.parse_len); 974 if (avg_print == 0) 975 avg_print = 1; 972 976 avg_print = 1000000 / avg_print; 973 977 … … 987 991 pj_highprec_mul(avg_cmp, AVERAGE_URL_LEN); 988 992 pj_highprec_div(avg_cmp, var.cmp_len); 993 if (avg_cmp == 0) 994 avg_cmp = 1; 989 995 avg_cmp = 1000000 / avg_cmp; 990 996
Note: See TracChangeset
for help on using the changeset viewer.