mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-25 13:01:07 +00:00
fallbackswitch: Don't configure a framerate in the test
The tests assume that buffers have no known duration and would deadlock otherwise because timeouts are scheduled to the end of a buffer.
This commit is contained in:
parent
f5260f9b36
commit
4aa00c9eca
1 changed files with 2 additions and 2 deletions
|
@ -530,7 +530,7 @@ fn setup_pipeline(
|
|||
.field("format", "ARGB")
|
||||
.field("width", 320i32)
|
||||
.field("height", 240i32)
|
||||
.field("framerate", gst::Fraction::new(1, 1))
|
||||
.field("framerate", gst::Fraction::new(0, 1))
|
||||
.build(),
|
||||
);
|
||||
|
||||
|
@ -575,7 +575,7 @@ fn setup_pipeline(
|
|||
.field("format", "ARGB")
|
||||
.field("width", 160i32)
|
||||
.field("height", 120i32)
|
||||
.field("framerate", gst::Fraction::new(1, 1))
|
||||
.field("framerate", gst::Fraction::new(0, 1))
|
||||
.build(),
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue