mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-18 07:48:14 +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:
@@ -380,10 +380,10 @@ static struct ast_channel *rec_request(const char *type, struct ast_format_cap *
|
||||
ast_format_set(&fmt, AST_FORMAT_SLINEAR, 0);
|
||||
ast_channel_tech_set(tmp, &record_tech);
|
||||
ast_format_cap_add_all(ast_channel_nativeformats(tmp));
|
||||
ast_format_copy(&tmp->writeformat, &fmt);
|
||||
ast_format_copy(&tmp->rawwriteformat, &fmt);
|
||||
ast_format_copy(&tmp->readformat, &fmt);
|
||||
ast_format_copy(&tmp->rawreadformat, &fmt);
|
||||
ast_format_copy(ast_channel_writeformat(tmp), &fmt);
|
||||
ast_format_copy(ast_channel_rawwriteformat(tmp), &fmt);
|
||||
ast_format_copy(ast_channel_readformat(tmp), &fmt);
|
||||
ast_format_copy(ast_channel_rawreadformat(tmp), &fmt);
|
||||
return tmp;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user