Changeset 4087
- Timestamp:
- Apr 26, 2012 3:39:24 AM (13 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/configure-iphone
r3999 r4087 134 134 135 135 # And finally invoke the configure script itself 136 ./aconfigure --host=arm-apple-darwin9 --disable-floating-point $*136 ./aconfigure --host=arm-apple-darwin9 --disable-floating-point --disable-sdl $* 137 137 138 138 if test "$?" = "0"; then -
pjproject/trunk/pjmedia/src/pjmedia/converter.c
r3664 r4087 40 40 { 41 41 pjmedia_converter_mgr *mgr; 42 pj_status_t status ;42 pj_status_t status = PJ_SUCCESS; 43 43 44 44 mgr = PJ_POOL_ALLOC_T(pool, pjmedia_converter_mgr); -
pjproject/trunk/pjmedia/src/pjmedia/format.c
r3953 r4087 54 54 return (pjmedia_audio_format_detail*) &fmt->det.aud; 55 55 } else { 56 /* Get rid of unused var compiler warning if pj_assert() 57 * macro does not do anything 58 */ 59 PJ_UNUSED_ARG(assert_valid); 56 60 pj_assert(!assert_valid || !"Invalid audio format detail"); 57 61 return NULL; -
pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app.c
r4086 r4087 3372 3372 arrange_window(PJSUA_INVALID_ID); 3373 3373 } 3374 #else 3375 PJ_UNUSED_ARG(med_idx); 3376 PJ_UNUSED_ARG(event); 3374 3377 #endif 3375 3378 } -
pjproject/trunk/pjsip-apps/src/pjsystest/systest.c
r4082 r4087 89 89 /*****************************************************************/ 90 90 91 #if defined(PJ_DARWINOS) && PJ_DARWINOS!=0 91 92 PJ_INLINE(char *) add_path(const char *path, const char *fname) 92 93 { … … 95 96 return fpath; 96 97 } 98 #else 99 # define add_path(path, fname) fname 100 #endif 97 101 98 102 static void exit_app(void) -
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_media.c
r4071 r4087 2655 2655 const pj_str_t *xml_st) 2656 2656 { 2657 #if PJMEDIA_HAS_VIDEO 2657 2658 pjsua_call *call = &pjsua_var.calls[call_id]; 2658 2659 const pj_str_t PICT_FAST_UPDATE = {"picture_fast_update", 19}; 2659 2660 2660 #if PJMEDIA_HAS_VIDEO2661 2661 if (pj_strstr(xml_st, &PICT_FAST_UPDATE)) { 2662 2662 unsigned i; … … 2677 2677 2678 2678 /* Just to avoid compiler warning of unused var */ 2679 PJ_UNUSED_ARG(call_id); 2679 2680 PJ_UNUSED_ARG(xml_st); 2680 2681
Note: See TracChangeset
for help on using the changeset viewer.