mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-17 15:29:05 +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:
@@ -159,10 +159,10 @@ static struct ast_channel *multicast_rtp_request(const char *type, struct ast_fo
|
||||
ast_channel_tech_set(chan, &multicast_rtp_tech);
|
||||
|
||||
ast_format_cap_add(ast_channel_nativeformats(chan), &fmt);
|
||||
ast_format_copy(&chan->writeformat, &fmt);
|
||||
ast_format_copy(&chan->rawwriteformat, &fmt);
|
||||
ast_format_copy(&chan->readformat, &fmt);
|
||||
ast_format_copy(&chan->rawreadformat, &fmt);
|
||||
ast_format_copy(ast_channel_writeformat(chan), &fmt);
|
||||
ast_format_copy(ast_channel_rawwriteformat(chan), &fmt);
|
||||
ast_format_copy(ast_channel_readformat(chan), &fmt);
|
||||
ast_format_copy(ast_channel_rawreadformat(chan), &fmt);
|
||||
|
||||
ast_channel_tech_pvt_set(chan, instance);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user