aboutsummaryrefslogtreecommitdiffstats
path: root/channels/console_video.c
diff options
context:
space:
mode:
Diffstat (limited to 'channels/console_video.c')
-rw-r--r--channels/console_video.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/channels/console_video.c b/channels/console_video.c
index ebf936a37..e23fe7916 100644
--- a/channels/console_video.c
+++ b/channels/console_video.c
@@ -659,6 +659,8 @@ static struct ast_frame *get_video_frames(struct video_desc *env, struct ast_fra
return v->enc->enc_encap(&v->enc_out, v->mtu, tail);
}
+int print_message(struct board *b, const char *s);
+
/*
* Helper thread to periodically poll the video source and enqueue the
* generated frames to the channel's queue.
@@ -715,6 +717,10 @@ static void *video_thread(void *arg)
int fd = chan->alertpipe[1];
char *caption = NULL, buf[160];
+ sprintf(buf, "%d \r", count);
+ if (env->gui)
+ print_message(env->gui->bd_msg, buf);
+
/* determine if video format changed */
if (count++ % 10 == 0) {
if (env->out.sendvideo)