Ignore:
Timestamp:
Jul 19, 2011 8:40:20 AM (13 years ago)
Author:
nanang
Message:

Re #1326:

  • Fixed compile warnings on vs2005
  • Fixed compile error when PJMEDIA_HAS_VIDEO set to 0 on vs2005
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app.c

    r3664 r3666  
    26542654/* General processing for media state. "mi" is the media index */ 
    26552655static void on_call_generic_media_state(pjsua_call_info *ci, unsigned mi, 
    2656                                          pj_bool_t *has_error) 
     2656                                        pj_bool_t *has_error) 
    26572657{ 
    26582658    const char *status_name[] = { 
     
    26642664    }; 
    26652665 
     2666    PJ_UNUSED_ARG(has_error); 
     2667 
    26662668    pj_assert(ci->media[mi].status <= PJ_ARRAY_SIZE(status_name)); 
    26672669    pj_assert(PJSUA_CALL_MEDIA_ERROR == 4); 
     
    26762678                                pj_bool_t *has_error) 
    26772679{ 
     2680    PJ_UNUSED_ARG(has_error); 
     2681 
    26782682    /* Stop ringback */ 
    26792683    ring_stop(ci->id); 
     
    27622766                                pj_bool_t *has_error) 
    27632767{ 
     2768    PJ_UNUSED_ARG(ci); 
     2769    PJ_UNUSED_ARG(mi); 
     2770    PJ_UNUSED_ARG(has_error); 
    27642771} 
    27652772 
     
    31503157{ 
    31513158    char event_name[5]; 
     3159    PJ_UNUSED_ARG(call_id); 
     3160    PJ_UNUSED_ARG(med_idx); 
    31523161    PJ_LOG(4,(THIS_FILE, "Event %s", 
    31533162              pjmedia_fourcc_name(event->type, event_name))); 
Note: See TracChangeset for help on using the changeset viewer.