Changeset 4778 for pjproject/trunk
- Timestamp:
- Mar 5, 2014 10:16:55 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/src/pjmedia-audiodev/bb10_dev.c
r4730 r4778 500 500 if (status.status == SND_PCM_STATUS_READY || 501 501 status.status == SND_PCM_STATUS_UNDERRUN || 502 status.status == SND_PCM_STATUS_ERROR ) 502 status.status == SND_PCM_STATUS_ERROR || 503 status.status == SND_PCM_STATUS_CHANGE) 503 504 { 504 505 if (snd_pcm_plugin_prepare (stream->pb_pcm, … … 584 585 if (status.status == SND_PCM_STATUS_READY || 585 586 status.status == SND_PCM_STATUS_OVERRUN || 586 status.status == SND_PCM_STATUS_ERROR) 587 status.status == SND_PCM_STATUS_ERROR || 588 status.status == SND_PCM_STATUS_CHANGE) 587 589 { 588 590 if (snd_pcm_plugin_prepare (stream->ca_pcm, … … 1035 1037 1036 1038 /* OS 10.2.1 requires pausing audio stream */ 1039 /* No longer necessary! 1040 * See https://trac.pjsip.org/repos/ticket/1743 1041 */ 1042 need_restart = PJ_FALSE; 1043 /* 1037 1044 need_restart = (stream->pb_thread != NULL); 1038 1045 if (need_restart) { … … 1044 1051 } 1045 1052 } 1053 */ 1046 1054 1047 1055 route = *((pjmedia_aud_dev_route*)value);
Note: See TracChangeset
for help on using the changeset viewer.