Changeset 5012
- Timestamp:
- Mar 22, 2015 7:50:28 AM (10 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/include/pj/os.h
r4760 r5012 312 312 /** 313 313 * Join thread, and block the caller thread until the specified thread exits. 314 * If it is called from within the thread itself, it will return immediately 315 * with failure status. 314 316 * If the specified thread has already been dead, or it does not exist, 315 * the function will return immediately with successful lstatus.317 * the function will return immediately with successful status. 316 318 * 317 319 * @param thread The thread handle. -
pjproject/trunk/pjlib/src/pj/os_core_unix.c
r4990 r5012 717 717 718 718 PJ_CHECK_STACK(); 719 720 if (p == pj_thread_this()) 721 return PJ_ECANCELLED; 719 722 720 723 PJ_LOG(6, (pj_thread_this()->obj_name, "Joining thread %s", p->obj_name)); -
pjproject/trunk/pjmedia/src/pjmedia/vid_port.c
r4290 r5012 581 581 pj_status_t status; 582 582 583 pjmedia_vid_port_stop(vp); 583 /* Ticket #1827: 584 * Stopping video port should not be necessary here because 585 * it will also try to stop the clock, from inside the clock's 586 * own thread, so it may get stuck. We just stop the video device 587 * stream instead. 588 * pjmedia_vid_port_stop(vp); 589 */ 590 pjmedia_vid_dev_stream_stop(vp->strm); 584 591 585 592 /* Retrieve the video format detail */ … … 636 643 } 637 644 638 pjmedia_vid_port_start(vp); 645 /* pjmedia_vid_port_start(vp); */ 646 pjmedia_vid_dev_stream_start(vp->strm); 639 647 } 640 648
Note: See TracChangeset
for help on using the changeset viewer.