From: Russell Bryant Date: Fri, 16 Feb 2007 22:21:16 +0000 (+0000) Subject: Print the raw read/write formats in the DumpChan application. X-Git-Tag: 1.6.0-beta1~3^2~3188 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=12dadb330ed632ac4040448f40ab095f40d9f5cd;p=thirdparty%2Fasterisk.git Print the raw read/write formats in the DumpChan application. (issue #9083, junky) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@55004 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_dumpchan.c b/apps/app_dumpchan.c index ca7897e4ed..58dcfc8e80 100644 --- a/apps/app_dumpchan.c +++ b/apps/app_dumpchan.c @@ -91,6 +91,8 @@ static int serialize_showchan(struct ast_channel *c, char *buf, size_t size) "NativeFormat= %s\n" "WriteFormat= %s\n" "ReadFormat= %s\n" + "RawWriteFormat= %s\n" + "RawReadFormat= %s\n" "1stFileDescriptor= %d\n" "Framesin= %d %s\n" "Framesout= %d %s\n" @@ -117,6 +119,8 @@ static int serialize_showchan(struct ast_channel *c, char *buf, size_t size) ast_getformatname_multiple(formatbuf, sizeof(formatbuf), c->nativeformats), ast_getformatname_multiple(formatbuf, sizeof(formatbuf), c->writeformat), ast_getformatname_multiple(formatbuf, sizeof(formatbuf), c->readformat), + ast_getformatname_multiple(formatbuf, sizeof(formatbuf), c->rawwriteformat), + ast_getformatname_multiple(formatbuf, sizeof(formatbuf), c->rawreadformat), c->fds[0], c->fin & ~DEBUGCHAN_FLAG, (c->fin & DEBUGCHAN_FLAG) ? " (DEBUGGED)" : "", c->fout & ~DEBUGCHAN_FLAG, (c->fout & DEBUGCHAN_FLAG) ? " (DEBUGGED)" : "", (long)c->whentohangup, hour,