projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
af080ad
)
fix a small bug in printing out geometries - wrong input.
author
Luigi Rizzo
<rizzo@icir.org>
Fri, 28 Dec 2007 08:57:01 +0000
(08:57 +0000)
committer
Luigi Rizzo
<rizzo@icir.org>
Fri, 28 Dec 2007 08:57:01 +0000
(08:57 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@95139
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
channels/console_video.c
patch
|
blob
|
history
diff --git
a/channels/console_video.c
b/channels/console_video.c
index
6e0df5c
..
1499096
100644
(file)
--- a/
channels/console_video.c
+++ b/
channels/console_video.c
@@
-1332,7
+1332,7
@@
int console_video_cli(struct video_desc *env, const char *var, int fd)
ast_cli(fd, "sizes: video %dx%d camera %dx%d local %dx%d remote %dx%d in %dx%d\n",
env->out.enc_in.w, env->out.enc_in.h,
env->out.loc_src.w, env->out.loc_src.h,
- env->out.loc_dpy.w, env->out.loc_src.h,
+ env->out.loc_dpy.w, env->out.loc_dpy.h,
env->in.rem_dpy.w, env->in.rem_dpy.h,
env->in.dec_out.w, env->in.dec_out.h);
} else if (!strcasecmp(var, "bitrate")) {