Changeset 208:41b410aec5ef in mediastreamer2


Ignore:
Timestamp:
Dec 26, 2008 10:14:12 PM (4 years ago)
Author:
smorlat <smorlat@…>
Branch:
default
Message:

??

git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@211 3f6dc0c8-ddfe-455d-9043-3cd528dc4637

Location:
linphone
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • linphone/console/linphonec.c

    r207 r208  
    342342                ms_mutex_unlock(&prompt_mutex); 
    343343        } 
    344         /* 
    345         ms_mutex_lock(&prompt_mutex); 
    346         strcpy(received_prompt,"quit"); 
    347         have_prompt=TRUE; 
    348         ms_mutex_unlock(&prompt_mutex); 
    349         */ 
    350344        return NULL; 
    351345} 
  • linphone/gtk-glade/main.c

    r194 r208  
    675675        /* couldn't find a way to prevent closing to destroy the main window*/ 
    676676        LinphoneCore *lc=linphone_gtk_get_core(); 
    677         /*shutdown call if any*/ 
    678         if (linphone_core_in_call(lc)) 
    679                 linphone_core_terminate_call(lc,NULL); 
    680         linphone_core_enable_video_preview(lc,FALSE); 
    681677        the_ui=NULL; 
    682678        the_ui=linphone_gtk_create_window("main"); 
    683679        linphone_gtk_init_main_window(); 
     680        /*shutdown call if any*/ 
     681        if (linphone_core_in_call(lc)){ 
     682                linphone_core_terminate_call(lc,NULL); 
     683                linphone_gtk_call_terminated(the_ui); 
     684        } 
     685        linphone_core_enable_video_preview(lc,FALSE); 
    684686} 
    685687 
  • linphone/mediastreamer2/configure.ac

    r154 r208  
    133133AM_CONDITIONAL(BUILD_MACOSX, test x$macosx_found = xyes) 
    134134 
     135dnl initialize pkg-config so that we can use it within if else fi statements. 
     136PKG_PROG_PKG_CONFIG() 
     137 
    135138AC_SUBST(MSPLUGINS_CFLAGS) 
    136139AC_SUBST(MSPLUGINS_LIBS) 
     
    188191 
    189192arts_enabled=false 
    190  
    191 PKG_PROG_PKG_CONFIG() 
    192193 
    193194if test "$artsc" = "true" ; then 
  • linphone/oRTP/src/ortp.c

    r0 r208  
    5353        int i; 
    5454         
    55         wVersionRequested = MAKEWORD(1,1); 
     55        wVersionRequested = MAKEWORD(2,0); 
    5656        if( (i = WSAStartup(wVersionRequested,  &wsaData))!=0) 
    5757        { 
    58                 ortp_error("Unable to initialize windows socket api, reason: %d",i); 
     58                ortp_error("Unable to initialize windows socket api, reason: %d (%s)",i,getWinSocketError(i)); 
    5959                return FALSE; 
    6060        } 
Note: See TracChangeset for help on using the changeset viewer.