mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 03:50:31 +00:00
Show the names of the codecs instead of the numbers (bug #92)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1348 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
4
image.c
4
image.c
@@ -175,14 +175,14 @@ int ast_send_image(struct ast_channel *chan, char *filename)
|
||||
static int show_image_formats(int fd, int argc, char *argv[])
|
||||
{
|
||||
#define FORMAT "%10s %10s %50s %10s\n"
|
||||
#define FORMAT2 "%10s %10s %50s %10d\n"
|
||||
#define FORMAT2 "%10s %10s %50s %10s\n"
|
||||
struct ast_imager *i;
|
||||
if (argc != 3)
|
||||
return RESULT_SHOWUSAGE;
|
||||
ast_cli(fd, FORMAT, "Name", "Extensions", "Description", "Format");
|
||||
i = list;
|
||||
while(i) {
|
||||
ast_cli(fd, FORMAT2, i->name, i->exts, i->desc, i->format);
|
||||
ast_cli(fd, FORMAT2, i->name, i->exts, i->desc, ast_getformatname(i->format));
|
||||
i = i->next;
|
||||
};
|
||||
return RESULT_SUCCESS;
|
||||
|
Reference in New Issue
Block a user