summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2003-07-09 00:24:28 +0000
committerMark Spencer <markster@digium.com>2003-07-09 00:24:28 +0000
commit4285e650af0d0f83a1b298b8805caa86b5c0a5c7 (patch)
tree5640c21e6468f1a42478bbcdbccc42f004feb7f9 /channels
parentcf5a44f1e3afc8ae473c5929144b3b437966393a (diff)
Timestamp fixes
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1170 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rwxr-xr-xchannels/chan_iax2.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c
index badc0287b..2b6013f77 100755
--- a/channels/chan_iax2.c
+++ b/channels/chan_iax2.c
@@ -2148,9 +2148,10 @@ static int iax2_send(struct chan_iax2_pvt *pvt, struct ast_frame *f, unsigned in
return -1;
}
+ lastsent = pvt->lastsent;
+
/* Calculate actual timestamp */
fts = calc_timestamp(pvt, ts);
- lastsent = pvt->lastsent;
if ((pvt->trunk || ((fts & 0xFFFF0000L) == (lastsent & 0xFFFF0000L)))
/* High two bits are the same on timestamp, or sending on a trunk */ &&
@@ -3696,7 +3697,7 @@ static int socket_read(int *id, int fd, short events, void *cbdata)
/* Retrieve the type and subclass */
f.frametype = fh->type;
if (f.frametype == AST_FRAME_VIDEO) {
- f.subclass = uncompress_subclass(fh->csub & ~0x40) | ((fh->csub & 0x40) >> 6);
+ f.subclass = uncompress_subclass(fh->csub & ~0x40) | ((fh->csub >> 6) & 0x1);
} else {
f.subclass = uncompress_subclass(fh->csub);
}