Asterisk - The Open Source Telephony Project GIT-master-7e7a603
Functions | Variables
console_video.c File Reference
#include "asterisk.h"
#include <sys/ioctl.h>
#include "asterisk/cli.h"
#include "asterisk/file.h"
#include "asterisk/channel.h"
#include "console_video.h"
Include dependency graph for console_video.c:

Go to the source code of this file.

Functions

int console_video_cli (struct video_desc *env, const char *var, int fd)
 
int console_video_config (struct video_desc **penv, const char *var, const char *val)
 
void console_video_start (struct video_desc *env, struct ast_channel *owner)
 
void console_video_uninit (struct video_desc *env)
 
int console_write_video (struct ast_channel *chan, struct ast_frame *f)
 
int get_gui_startup (struct video_desc *env)
 

Variables

int console_video_formats = 0
 

Function Documentation

◆ console_video_cli()

int console_video_cli ( struct video_desc *  env,
const char *  var,
int  fd 
)

Definition at line 130 of file console_video.c.

131{
132 return 1; /* nothing matched */
133}

◆ console_video_config()

int console_video_config ( struct video_desc **  penv,
const char *  var,
const char *  val 
)

Definition at line 135 of file console_video.c.

136{
137 return 1; /* no configuration */
138}

◆ console_video_start()

void console_video_start ( struct video_desc *  env,
struct ast_channel owner 
)

Definition at line 140 of file console_video.c.

141{
142 ast_log(LOG_NOTICE, "voice only, console video support not present\n");
143}
#define ast_log
Definition: astobj2.c:42
#define LOG_NOTICE

References ast_log, and LOG_NOTICE.

◆ console_video_uninit()

void console_video_uninit ( struct video_desc *  env)

Definition at line 145 of file console_video.c.

146{
147}

◆ console_write_video()

int console_write_video ( struct ast_channel chan,
struct ast_frame f 
)

Definition at line 125 of file console_video.c.

126{
127 return 0; /* writing video not supported */
128}

◆ get_gui_startup()

int get_gui_startup ( struct video_desc *  env)

Definition at line 149 of file console_video.c.

150{
151 return 0; /* no gui here */
152}

Variable Documentation

◆ console_video_formats

int console_video_formats = 0

Definition at line 154 of file console_video.c.