From aabfb61834375301e313fd8fd8b8fc6849b57695 Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Wed, 12 Apr 2023 11:02:57 -0400 Subject: [PATCH] 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: --- docs/plugins/gst_plugins_cache.json | 2 +- video/ffv1/src/ffv1dec/mod.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/plugins/gst_plugins_cache.json b/docs/plugins/gst_plugins_cache.json index 4bdbcfc4..1cacfa1e 100644 --- a/docs/plugins/gst_plugins_cache.json +++ b/docs/plugins/gst_plugins_cache.json @@ -1702,7 +1702,7 @@ "presence": "always" } }, - "rank": "primary + 1" + "rank": "none" } }, "filename": "gstffv1", diff --git a/video/ffv1/src/ffv1dec/mod.rs b/video/ffv1/src/ffv1dec/mod.rs index 52ba3425..7b1100b4 100644 --- a/video/ffv1/src/ffv1dec/mod.rs +++ b/video/ffv1/src/ffv1dec/mod.rs @@ -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(), ) }