mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
Make sure RTP timestamps are accurate on playback
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6560 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -158,8 +158,11 @@ static struct ast_frame *h263_read(struct ast_filestream *s, int *whennext)
|
||||
s->fr.samples = s->lastts;
|
||||
s->fr.datalen = len;
|
||||
s->fr.subclass |= mark;
|
||||
s->fr.delivery.tv_sec = 0;
|
||||
s->fr.delivery.tv_usec = 0;
|
||||
if ((res = read(s->fd, &ts, sizeof(ts))) == sizeof(ts)) {
|
||||
s->lastts = *whennext = ntohl(ts) * 4/45;
|
||||
s->lastts = ntohl(ts);
|
||||
*whennext = s->lastts * 4/45;
|
||||
} else
|
||||
*whennext = 0;
|
||||
return &s->fr;
|
||||
|
Reference in New Issue
Block a user