Make sure RTP timestamps are accurate on playback
authorMark Spencer <markster@digium.com>
Sat, 10 Sep 2005 18:46:38 +0000 (18:46 +0000)
committerMark Spencer <markster@digium.com>
Sat, 10 Sep 2005 18:46:38 +0000 (18:46 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6560 65c4cc65-6c06-0410-ace0-fbb531ad65f3

formats/format_h263.c

index b98ed19..a8b75b7 100755 (executable)
@@ -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;