projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f406fe7
)
Make sure RTP timestamps are accurate on playback
author
Mark Spencer
<markster@digium.com>
Sat, 10 Sep 2005 18:46:38 +0000
(18:46 +0000)
committer
Mark 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
patch
|
blob
|
history
diff --git
a/formats/format_h263.c
b/formats/format_h263.c
index
b98ed19
..
a8b75b7
100755
(executable)
--- a/
formats/format_h263.c
+++ b/
formats/format_h263.c
@@
-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;