]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Change informative messages to use the _multiple variant when multiple formats
authorTilghman Lesher <tilghman@meg.abyt.es>
Thu, 19 Jun 2008 16:58:19 +0000 (16:58 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Thu, 19 Jun 2008 16:58:19 +0000 (16:58 +0000)
are possible.
(Closes issue #12848)
Reported by klaus3000

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

main/channel.c

index 49b097f35de26d1c36914e3c90a52ce22e1c52a5..05f05d2f8bdff4ce7d920e314c65a84bdeba51c1 100644 (file)
@@ -2297,10 +2297,10 @@ static struct ast_frame *__ast_read(struct ast_channel *chan, int dropaudio)
                                        f = &ast_null_frame;
                                }
                        } else if ((f->frametype == AST_FRAME_VOICE) && !(f->subclass & chan->nativeformats)) {
-                               /* This frame can't be from the current native formats -- drop it on the
-                                  floor */
+                               /* This frame is not one of the current native formats -- drop it on the floor */
+                               char to[200];
                                ast_log(LOG_NOTICE, "Dropping incompatible voice frame on %s of format %s since our native format has changed to %s\n",
-                                       chan->name, ast_getformatname(f->subclass), ast_getformatname(chan->nativeformats));
+                                       chan->name, ast_getformatname(f->subclass), ast_getformatname_multiple(to, sizeof(to), chan->nativeformats));
                                ast_frfree(f);
                                f = &ast_null_frame;
                        } else if ((f->frametype == AST_FRAME_VOICE)) {
@@ -2794,6 +2794,7 @@ static int set_format(struct ast_channel *chan, int fmt, int *rawformat, int *fo
 {
        int native;
        int res;
+       char from[200], to[200];
        
        /* Make sure we only consider audio */
        fmt &= AST_FORMAT_AUDIO_MASK;
@@ -2809,7 +2810,8 @@ static int set_format(struct ast_channel *chan, int fmt, int *rawformat, int *fo
 
        if (res < 0) {
                ast_log(LOG_WARNING, "Unable to find a codec translation path from %s to %s\n",
-                       ast_getformatname(native), ast_getformatname(fmt));
+                       ast_getformatname_multiple(from, sizeof(from), native),
+                       ast_getformatname_multiple(to, sizeof(to), fmt));
                return -1;
        }