mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-02 19:16:15 +00:00
Opaquification for ast_format structs in struct ast_channel
Review: https://reviewboard.asterisk.org/r/1770/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@356573 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -317,9 +317,9 @@ static int func_channel_read(struct ast_channel *chan, const char *function,
|
||||
tmpcap = ast_format_cap_destroy(tmpcap);
|
||||
}
|
||||
} else if (!strcasecmp(data, "audioreadformat")) {
|
||||
ast_copy_string(buf, ast_getformatname(&chan->readformat), len);
|
||||
ast_copy_string(buf, ast_getformatname(ast_channel_readformat(chan)), len);
|
||||
} else if (!strcasecmp(data, "audiowriteformat")) {
|
||||
ast_copy_string(buf, ast_getformatname(&chan->writeformat), len);
|
||||
ast_copy_string(buf, ast_getformatname(ast_channel_writeformat(chan)), len);
|
||||
#ifdef CHANNEL_TRACE
|
||||
} else if (!strcasecmp(data, "trace")) {
|
||||
ast_channel_lock(chan);
|
||||
|
Reference in New Issue
Block a user