Changeset 208:41b410aec5ef in mediastreamer2
- Timestamp:
- Dec 26, 2008 10:14:12 PM (4 years ago)
- Branch:
- default
- Location:
- linphone
- Files:
-
- 4 edited
-
console/linphonec.c (modified) (1 diff)
-
gtk-glade/main.c (modified) (1 diff)
-
mediastreamer2/configure.ac (modified) (2 diffs)
-
oRTP/src/ortp.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
linphone/console/linphonec.c
r207 r208 342 342 ms_mutex_unlock(&prompt_mutex); 343 343 } 344 /*345 ms_mutex_lock(&prompt_mutex);346 strcpy(received_prompt,"quit");347 have_prompt=TRUE;348 ms_mutex_unlock(&prompt_mutex);349 */350 344 return NULL; 351 345 } -
linphone/gtk-glade/main.c
r194 r208 675 675 /* couldn't find a way to prevent closing to destroy the main window*/ 676 676 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);681 677 the_ui=NULL; 682 678 the_ui=linphone_gtk_create_window("main"); 683 679 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); 684 686 } 685 687 -
linphone/mediastreamer2/configure.ac
r154 r208 133 133 AM_CONDITIONAL(BUILD_MACOSX, test x$macosx_found = xyes) 134 134 135 dnl initialize pkg-config so that we can use it within if else fi statements. 136 PKG_PROG_PKG_CONFIG() 137 135 138 AC_SUBST(MSPLUGINS_CFLAGS) 136 139 AC_SUBST(MSPLUGINS_LIBS) … … 188 191 189 192 arts_enabled=false 190 191 PKG_PROG_PKG_CONFIG()192 193 193 194 if test "$artsc" = "true" ; then -
linphone/oRTP/src/ortp.c
r0 r208 53 53 int i; 54 54 55 wVersionRequested = MAKEWORD( 1,1);55 wVersionRequested = MAKEWORD(2,0); 56 56 if( (i = WSAStartup(wVersionRequested, &wsaData))!=0) 57 57 { 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)); 59 59 return FALSE; 60 60 }
Note: See TracChangeset
for help on using the changeset viewer.
