aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
Diffstat (limited to 'channel.c')
-rw-r--r--channel.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/channel.c b/channel.c
index 5ee36290b..a2ac46ff9 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)