mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-02 19:16:15 +00:00
Opaquify channel stringfields
Continue channel opaque-ification by wrapping all of the stringfields. Eventually, we will restrict what can actually set these variables, but the purpose for now is to hide the implementation and keep people from adding code that directly accesses the channel structure. Semantic changes will follow afterward. Review: https://reviewboard.asterisk.org/r/1661/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@352348 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -725,7 +725,7 @@ static int speech_background(struct ast_channel *chan, const char *data)
|
||||
/* Discard old stream information */
|
||||
ast_stopstream(chan);
|
||||
/* Start new stream */
|
||||
speech_streamfile(chan, filename, chan->language);
|
||||
speech_streamfile(chan, filename, ast_channel_language(chan));
|
||||
}
|
||||
|
||||
/* Run scheduled stuff */
|
||||
@@ -792,14 +792,14 @@ static int speech_background(struct ast_channel *chan, const char *data)
|
||||
if (chan->stream == NULL) {
|
||||
if (speech->processing_sound != NULL) {
|
||||
if (strlen(speech->processing_sound) > 0 && strcasecmp(speech->processing_sound, "none")) {
|
||||
speech_streamfile(chan, speech->processing_sound, chan->language);
|
||||
speech_streamfile(chan, speech->processing_sound, ast_channel_language(chan));
|
||||
}
|
||||
}
|
||||
} else if (chan->streamid == -1 && chan->timingfunc == NULL) {
|
||||
ast_stopstream(chan);
|
||||
if (speech->processing_sound != NULL) {
|
||||
if (strlen(speech->processing_sound) > 0 && strcasecmp(speech->processing_sound, "none")) {
|
||||
speech_streamfile(chan, speech->processing_sound, chan->language);
|
||||
speech_streamfile(chan, speech->processing_sound, ast_channel_language(chan));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user