Merge pull request #255 from dragos-oancea/mux_overflow_file_read

[mod_native_file] don't channel mux during native file play (and avoid overflow too).
This commit is contained in:
Andrey Volk 2020-01-30 21:56:44 +04:00 committed by GitHub
commit a9b0d2931d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -97,6 +97,7 @@ static switch_status_t native_file_file_open(switch_file_handle_t *handle, const
handle->speed = 0;
handle->private_info = context;
handle->flags |= SWITCH_FILE_NATIVE;
handle->flags |= SWITCH_FILE_NOMUX;
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Opening File [%s] %dhz\n", path, handle->samplerate);
return SWITCH_STATUS_SUCCESS;