Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrançois Laignel <fengalin@free.fr>2021-06-04 20:06:24 +0300
committerFrançois Laignel <fengalin@free.fr>2021-06-05 11:36:21 +0300
commite16cad7c8f4000ab5b1d649e54b8d6f8e19cf154 (patch)
tree4dfa96ee5452d77320399452e3d87d9f56217a7a /video/cdg/tests
parentc2de0649a736fde8435434e0e6483c5ad96fdfe2 (diff)
video: migrate to new ClockTime design
Diffstat (limited to 'video/cdg/tests')
-rw-r--r--video/cdg/tests/cdgdec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/cdg/tests/cdgdec.rs b/video/cdg/tests/cdgdec.rs
index 0c9ee6fda..e55b02316 100644
--- a/video/cdg/tests/cdgdec.rs
+++ b/video/cdg/tests/cdgdec.rs
@@ -84,7 +84,7 @@ fn test_cdgdec() {
.expect("Unable to set the pipeline to the `Playing` state");
let bus = pipeline.bus().unwrap();
- for msg in bus.iter_timed(gst::CLOCK_TIME_NONE) {
+ for msg in bus.iter_timed(gst::ClockTime::NONE) {
use gst::MessageView;
match msg.view() {
MessageView::Error(err) => {