]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix another scenario where depending on configuration the stream would not get read.
authorJoshua Colp <jcolp@digium.com>
Thu, 12 Mar 2009 16:50:37 +0000 (16:50 +0000)
committerJoshua Colp <jcolp@digium.com>
Thu, 12 Mar 2009 16:50:37 +0000 (16:50 +0000)
For custom commands we don't know whether the audio is coming from a stream or not
so we are going to have to read the data despite no channels.

(closes issue #14416)
Reported by: caspy

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@181659 65c4cc65-6c06-0410-ace0-fbb531ad65f3

res/res_musiconhold.c

index 0f248ded1f33d61a0d57ead2afac2f5311e1b057..5fe2e4157cc3a4ce378ae20fd38d3fc85d6985bc 100644 (file)
@@ -557,7 +557,7 @@ static void *monmp3thread(void *data)
                        }
                        res = 8 * MOH_MS_INTERVAL;      /* 8 samples per millisecond */
                }
-               if (strncasecmp(class->dir, "http://", 7) && AST_LIST_EMPTY(&class->members))
+               if ((strncasecmp(class->dir, "http://", 7) || !strcasecmp(class->dir, "nodir")) && AST_LIST_EMPTY(&class->members))
                        continue;
                /* Read mp3 audio */
                len = ast_codec_get_len(class->format, res);