mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-06-05 23:18:55 +00:00
ffv1dec: Drop rank for now
We'll keep the rank lower than avdec_ffv1, at least until we're comfortable with support for the entire range of possible inputs working well. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1190>
This commit is contained in:
parent
d67eb1d405
commit
5462ed0e95
2 changed files with 2 additions and 2 deletions
|
@ -1593,7 +1593,7 @@
|
||||||
"presence": "always"
|
"presence": "always"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rank": "primary + 1"
|
"rank": "none"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"filename": "gstffv1",
|
"filename": "gstffv1",
|
||||||
|
|
|
@ -21,7 +21,7 @@ pub fn register(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
|
||||||
gst::Element::register(
|
gst::Element::register(
|
||||||
Some(plugin),
|
Some(plugin),
|
||||||
"ffv1dec",
|
"ffv1dec",
|
||||||
gst::Rank::Primary + 1,
|
gst::Rank::None,
|
||||||
Ffv1Dec::static_type(),
|
Ffv1Dec::static_type(),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue