mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-02 20:08:17 +00:00
fix indentation
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@47770 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -696,22 +696,24 @@ static int setformat(struct chan_oss_pvt *o, int mode)
|
||||
return -1;
|
||||
}
|
||||
switch (mode) {
|
||||
case O_RDWR:
|
||||
res = ioctl(fd, SNDCTL_DSP_SETDUPLEX, 0);
|
||||
/* Check to see if duplex set (FreeBSD Bug) */
|
||||
res = ioctl(fd, SNDCTL_DSP_GETCAPS, &fmt);
|
||||
if (res == 0 && (fmt & DSP_CAP_DUPLEX)) {
|
||||
if (option_verbose > 1)
|
||||
ast_verbose(VERBOSE_PREFIX_2 "Console is full duplex\n");
|
||||
o->duplex = M_FULL;
|
||||
};
|
||||
break;
|
||||
case O_WRONLY:
|
||||
o->duplex = M_WRITE;
|
||||
break;
|
||||
case O_RDONLY:
|
||||
o->duplex = M_READ;
|
||||
break;
|
||||
case O_RDWR:
|
||||
res = ioctl(fd, SNDCTL_DSP_SETDUPLEX, 0);
|
||||
/* Check to see if duplex set (FreeBSD Bug) */
|
||||
res = ioctl(fd, SNDCTL_DSP_GETCAPS, &fmt);
|
||||
if (res == 0 && (fmt & DSP_CAP_DUPLEX)) {
|
||||
if (option_verbose > 1)
|
||||
ast_verbose(VERBOSE_PREFIX_2 "Console is full duplex\n");
|
||||
o->duplex = M_FULL;
|
||||
};
|
||||
break;
|
||||
|
||||
case O_WRONLY:
|
||||
o->duplex = M_WRITE;
|
||||
break;
|
||||
|
||||
case O_RDONLY:
|
||||
o->duplex = M_READ;
|
||||
break;
|
||||
}
|
||||
|
||||
fmt = 0;
|
||||
@@ -949,32 +951,34 @@ static int oss_indicate(struct ast_channel *c, int cond, const void *data, size_
|
||||
int res = -1;
|
||||
|
||||
switch (cond) {
|
||||
case AST_CONTROL_BUSY:
|
||||
case AST_CONTROL_CONGESTION:
|
||||
case AST_CONTROL_RINGING:
|
||||
res = cond;
|
||||
break;
|
||||
case AST_CONTROL_BUSY:
|
||||
case AST_CONTROL_CONGESTION:
|
||||
case AST_CONTROL_RINGING:
|
||||
res = cond;
|
||||
break;
|
||||
|
||||
case -1:
|
||||
o->cursound = -1;
|
||||
o->nosound = 0; /* when cursound is -1 nosound must be 0 */
|
||||
return 0;
|
||||
case -1:
|
||||
o->cursound = -1;
|
||||
o->nosound = 0; /* when cursound is -1 nosound must be 0 */
|
||||
return 0;
|
||||
|
||||
case AST_CONTROL_VIDUPDATE:
|
||||
res = -1;
|
||||
break;
|
||||
case AST_CONTROL_HOLD:
|
||||
ast_verbose(" << Console Has Been Placed on Hold >> \n");
|
||||
ast_moh_start(c, data, o->mohinterpret);
|
||||
break;
|
||||
case AST_CONTROL_UNHOLD:
|
||||
ast_verbose(" << Console Has Been Retrieved from Hold >> \n");
|
||||
ast_moh_stop(c);
|
||||
break;
|
||||
case AST_CONTROL_VIDUPDATE:
|
||||
res = -1;
|
||||
break;
|
||||
|
||||
default:
|
||||
ast_log(LOG_WARNING, "Don't know how to display condition %d on %s\n", cond, c->name);
|
||||
return -1;
|
||||
case AST_CONTROL_HOLD:
|
||||
ast_verbose(" << Console Has Been Placed on Hold >> \n");
|
||||
ast_moh_start(c, data, o->mohinterpret);
|
||||
break;
|
||||
|
||||
case AST_CONTROL_UNHOLD:
|
||||
ast_verbose(" << Console Has Been Retrieved from Hold >> \n");
|
||||
ast_moh_stop(c);
|
||||
break;
|
||||
|
||||
default:
|
||||
ast_log(LOG_WARNING, "Don't know how to display condition %d on %s\n", cond, c->name);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (res > -1)
|
||||
|
||||
Reference in New Issue
Block a user