projects
/
platform
/
upstream
/
gst-plugins-bad.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fe02638
)
correcting the next_ts calculations
author
Zeeshan Ali
<zeenix@gmail.com>
Fri, 5 Jul 2002 19:30:20 +0000
(19:30 +0000)
committer
Zeeshan Ali
<zeenix@gmail.com>
Fri, 5 Jul 2002 19:30:20 +0000
(19:30 +0000)
Original commit message from CVS:
correcting the next_ts calculations
ext/gsm/gstgsmenc.c
patch
|
blob
|
history
diff --git
a/ext/gsm/gstgsmenc.c
b/ext/gsm/gstgsmenc.c
index
633863c
..
fb19b5e
100644
(file)
--- a/
ext/gsm/gstgsmenc.c
+++ b/
ext/gsm/gstgsmenc.c
@@
-192,7
+192,7
@@
gst_gsmenc_chain (GstPad *pad, GstBuffer *buf)
GST_BUFFER_TIMESTAMP (outbuf) = gsmenc->next_ts;
gst_pad_push (gsmenc->srcpad, outbuf);
- gsmenc->next_ts += (160
.0 / gsmenc->rate) * 1000000
;
+ gsmenc->next_ts += (160
/ gsmenc->rate) * GST_SECOND
;
size -= 160;
data += 160;