aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJacob Stiffler2015-06-26 10:05:34 -0500
committerJacob Stiffler2015-06-26 10:05:34 -0500
commit499c8c11f54853c3eea8a18959bc966a31970629 (patch)
tree4c7daf354573113586e755312ba6018fa01e44d3
parentb5987c2a4c6288bd390ca76120c9bf1cf6d47686 (diff)
downloadgst-plugin-hevc-499c8c11f54853c3eea8a18959bc966a31970629.tar.gz
gst-plugin-hevc-499c8c11f54853c3eea8a18959bc966a31970629.tar.xz
gst-plugin-hevc-499c8c11f54853c3eea8a18959bc966a31970629.zip
gsth265dec: Set rank to GST_RANK_NONE.
* Since the plugin currently does not have a parser, the capabilities have been set to "ANY" * And with capabilities set to "ANY", this needs to have rank "NONE" so that this will not interfere with any other plugins. Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
-rw-r--r--src/gsth265dec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gsth265dec.c b/src/gsth265dec.c
index 34be685..1f54775 100644
--- a/src/gsth265dec.c
+++ b/src/gsth265dec.c
@@ -914,7 +914,7 @@ h265dec_init (GstPlugin * h265dec)
914 GST_DEBUG_CATEGORY_INIT (gst_h265dec_debug, "h265dec", 914 GST_DEBUG_CATEGORY_INIT (gst_h265dec_debug, "h265dec",
915 0, "H265dec decoder"); 915 0, "H265dec decoder");
916 916
917 return gst_element_register (h265dec, "h265dec", GST_RANK_PRIMARY, 917 return gst_element_register (h265dec, "h265dec", GST_RANK_NONE,
918 GST_TYPE_H265DEC); 918 GST_TYPE_H265DEC);
919} 919}
920 920