mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-25 13:01:07 +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/1174>
This commit is contained in:
parent
f1fd8d84c3
commit
aabfb61834
2 changed files with 2 additions and 2 deletions
|
@ -1702,7 +1702,7 @@
|
|||
"presence": "always"
|
||||
}
|
||||
},
|
||||
"rank": "primary + 1"
|
||||
"rank": "none"
|
||||
}
|
||||
},
|
||||
"filename": "gstffv1",
|
||||
|
|
|
@ -21,7 +21,7 @@ pub fn register(plugin: &gst::Plugin) -> Result<(), glib::BoolError> {
|
|||
gst::Element::register(
|
||||
Some(plugin),
|
||||
"ffv1dec",
|
||||
gst::Rank::Primary + 1,
|
||||
gst::Rank::None,
|
||||
Ffv1Dec::static_type(),
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue