diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2003-01-12 21:28:38 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2003-01-12 21:28:38 +0000 |
commit | 18c9d19de27cb3d87e617c8362aa23bd52295110 (patch) | |
tree | 4095604c3572a7f3432b2e3ec32f3b51041b6a58 | |
parent | 52838dd8aa49b7b1caf2828285a98b20c1840126 (diff) | |
download | gst-plugins-bad-18c9d19de27cb3d87e617c8362aa23bd52295110.tar.gz gst-plugins-bad-18c9d19de27cb3d87e617c8362aa23bd52295110.tar.bz2 gst-plugins-bad-18c9d19de27cb3d87e617c8362aa23bd52295110.zip |
Fix timestamps
Original commit message from CVS:
Fix timestamps
-rw-r--r-- | gst/flx/gstflxdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/flx/gstflxdec.c b/gst/flx/gstflxdec.c index 7b388232..fdddef6d 100644 --- a/gst/flx/gstflxdec.c +++ b/gst/flx/gstflxdec.c @@ -509,7 +509,7 @@ gst_flxdec_loop (GstElement *element) flxdec->frame_time = JIFFIE * flxh->speed; } else { - flxdec->frame_time = flxh->speed * GST_USECOND; + flxdec->frame_time = flxh->speed * GST_MSECOND; } gst_pad_try_set_caps (flxdec->srcpad, |