From: Kevin P. Fleming Date: Thu, 27 Jul 2006 02:46:22 +0000 (+0000) Subject: Merged revisions 38310 via svnmerge from X-Git-Tag: 1.4.0-beta1~511 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8b603fe8a5aa9f2acfbffd1dea552623c19f52b0;p=thirdparty%2Fasterisk.git Merged revisions 38310 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r38310 | kpfleming | 2006-07-26 21:43:49 -0500 (Wed, 26 Jul 2006) | 2 lines don't do useless translation destroy/build when the channel is already in the correct format ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@38311 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channel.c b/channel.c index 5ee36290bd..a2ac46ff9c 100644 --- a/channel.c +++ b/channel.c @@ -2472,6 +2472,10 @@ static int set_format(struct ast_channel *chan, int fmt, int *rawformat, int *fo /* Make sure we only consider audio */ fmt &= AST_FORMAT_AUDIO_MASK; + /* if already in the desired format nothing to do here */ + if (*format == fmt) + return 0; + native = chan->nativeformats; /* Find a translation path from the native format to one of the desired formats */ if (!direction)