From ee21eee7e067573ad83bd0df492036094b4dbaca Mon Sep 17 00:00:00 2001 From: Mark Michelson Date: Thu, 3 Oct 2013 14:58:16 +0000 Subject: Cache string values of formats on ast_format_cap() to save processing. Channel snapshots have string representations of the channel's native formats. Prior to this change, the format strings were re-created on ever channel snapshot creation. Since channel native formats rarely change, this was very wasteful. Now, string representations of formats may optionally be stored on the ast_format_cap for cases where string representations may be requested frequently. When formats are altered, the string cache is marked as invalid. When strings are requested, the cache validity is checked. If the cache is valid, then the cached strings are copied. If the cache is invalid, then the string cache is rebuilt and copied, and the cache is marked as being valid again. Review: https://reviewboard.asterisk.org/r/2879 ........ Merged revisions 400356 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@400363 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- pbx/pbx_spool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pbx') diff --git a/pbx/pbx_spool.c b/pbx/pbx_spool.c index 79ef7166f..31d883c94 100644 --- a/pbx/pbx_spool.c +++ b/pbx/pbx_spool.c @@ -144,7 +144,7 @@ static struct outgoing *new_outgoing(const char *fn) return NULL; } - o->capabilities = ast_format_cap_alloc_nolock(); + o->capabilities = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_NOLOCK); if (!o->capabilities) { free_outgoing(o); return NULL; -- cgit v1.2.3