Changeset 199:d0ad66dfade4 in mediastreamer2
- Timestamp:
- Dec 11, 2008 10:17:17 PM (4 years ago)
- Branch:
- default
- Location:
- linphone
- Files:
-
- 3 edited
-
coreapi/linphonecore.c (modified) (1 diff)
-
m4/exosip.m4 (modified) (2 diffs)
-
mediastreamer2/src/videoout.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
linphone/coreapi/linphonecore.c
r194 r199 912 912 if (exosip_running) eXosip_quit(); 913 913 eXosip_init(); 914 err=0; 915 eXosip_set_option(13,&err); /*13=EXOSIP_OPT_SRV_WITH_NAPTR, as it is an enum value, we can't use it unless we are sure of the 916 version of eXosip, which is not the case*/ 914 917 eXosip_enable_ipv6(lc->sip_conf.ipv6_enabled); 915 918 if (lc->sip_conf.ipv6_enabled) -
linphone/m4/exosip.m4
r182 r199 15 15 dnl check for eXosip2 libs 16 16 LDFLAGS_save=$LDFLAGS 17 LDFLAGS= $OSIP_LIBS17 LDFLAGS="$OSIP_LIBS $LDFLAGS" 18 18 LIBS_save=$LIBS 19 19 AC_CHECK_LIB([eXosip2],[eXosip_subscribe_remove], … … 25 25 [], 26 26 [-losipparser2 -losip2 -lpthread]) 27 dnl AC_CHECK_LIB([eXosip2],[eXosip_get_naptr], 28 dnl [AC_DEFINE([HAVE_EXOSIP_NAPTR_SUPPORT],[1],[Defined when eXosip_get_naptr is available])], 29 dnl [], 30 dnl [-losipparser2 -losip2 -lpthread]) 27 31 LIBS=$LIBS_save 28 32 LDFLAGS=$LDFLAGS_save -
linphone/mediastreamer2/src/videoout.c
r196 r199 523 523 MSRect local_rect; 524 524 mblk_t *local_msg; 525 MSVideoSize prevsize; 525 526 int corner; 526 527 struct SwsContext *sws1; … … 590 591 def_size.width=MS_VIDEO_SIZE_CIF_W; 591 592 def_size.height=MS_VIDEO_SIZE_CIF_H; 593 obj->prevsize.width=0; 594 obj->prevsize.height=0; 592 595 obj->local_msg=NULL; 593 596 obj->corner=0; … … 726 729 newsize.width=src.w; 727 730 newsize.height=src.h; 728 if (obj->autofit && !ms_video_size_equal(newsize,cur) ) { 731 if (obj->autofit && !ms_video_size_equal(newsize,obj->prevsize) ) { 732 obj->prevsize=newsize; 729 733 /*don't resize less than QVGA, it is too small*/ 730 734 if (ms_video_size_greater_than(MS_VIDEO_SIZE_QVGA,newsize)){
Note: See TracChangeset
for help on using the changeset viewer.
