don't hang channels (MODENDP-106)

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8121 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2008-04-16 21:43:51 +00:00
parent eaf6abfb78
commit 04aeb7dedb

View File

@ -539,13 +539,12 @@ static switch_status_t channel_read_frame(switch_core_session_t *session, switch
return SWITCH_STATUS_SUCCESS;
}
switch_mutex_lock(globals.device_lock);
get_samples:
switch_mutex_lock(globals.device_lock);
if ((samples = ReadAudioStream(globals.audio_stream, globals.read_frame.data,
globals.read_codec.implementation->samples_per_frame,
&globals.timer)) == 0) {
switch_mutex_unlock(globals.device_lock);
switch_yield(1000);
goto get_samples;
} else {