aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
authorroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-27 16:02:48 +0000
committerroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-27 16:02:48 +0000
commitb2953919d08b60e3db9ed17462801839ed51e8c0 (patch)
tree6b52bd4c6e3d9d743c54194af40a8536c854d913 /channel.c
parentd23eba6500e7db7bb33a57cab08f0cf239974113 (diff)
automerge commit
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2-netsec@38364 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channel.c')
-rw-r--r--channel.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/channel.c b/channel.c
index a80960e70..b2c29b3cb 100644
--- a/channel.c
+++ b/channel.c
@@ -2328,10 +2328,6 @@ static int set_format(struct ast_channel *chan, int fmt, int *rawformat, int *fo
int native;
int res;
- /* 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)
@@ -2349,6 +2345,13 @@ static int set_format(struct ast_channel *chan, int fmt, int *rawformat, int *fo
/* Now we have a good choice for both. */
ast_mutex_lock(&chan->lock);
+
+ if ((*rawformat == native) && (*format == fmt)) {
+ /* the channel is already in these formats, so nothing to do */
+ ast_mutex_unlock(&chan->lock);
+ return 0;
+ }
+
*rawformat = native;
/* User perspective is fmt */
*format = fmt;