add ranks only for plugins who participate in autoplugging. If you have a file that...
authorSteve Baker <steve@stevebaker.org>
Fri, 31 May 2002 08:24:31 +0000 (08:24 +0000)
committerSteve Baker <steve@stevebaker.org>
Fri, 31 May 2002 08:24:31 +0000 (08:24 +0000)
Original commit message from CVS:
add ranks only for plugins who participate in autoplugging.  If you have a file that used to autoplug but doesn't anymore, then let me know or add a rank to the missing element.

ext/flac/gstflac.c
ext/jpeg/gstjpeg.c
ext/mikmod/gstmikmod.c
gst/auparse/gstauparse.c
gst/avi/gstaviaudiodecoder.c
gst/avi/gstavidemux.c
gst/flx/gstflxdec.c
gst/law/alaw.c
gst/law/mulaw.c
gst/qtdemux/qtdemux.c
gst/wavparse/gstwavparse.c

index 3ab527b233d406eddab43f4d53b0338ae82bd5f9..c7bd381452868d6659555f13c17fb20cdd85e54e 100644 (file)
@@ -112,6 +112,7 @@ plugin_init (GModule *module, GstPlugin *plugin)
   dec = gst_element_factory_new("flacdec",GST_TYPE_FLACDEC,
                                &flacdec_details);
   g_return_val_if_fail(dec != NULL, FALSE);
+  gst_element_factory_set_rank (dec, GST_ELEMENT_RANK_PRIMARY);
  
   /* register sink pads */
   dec_sink_template = gst_pad_template_new ("sink", GST_PAD_SINK, 
index eec4a451443ca89e5d78cf70f4b3a34a07a8d7f0..96c3b5843d1e1fecc4680bcd030b356ed5d41ab2 100644 (file)
@@ -86,6 +86,7 @@ plugin_init (GModule *module, GstPlugin *plugin)
   dec = gst_element_factory_new("jpegdec",GST_TYPE_JPEGDEC,
                                    &gst_jpegdec_details);
   g_return_val_if_fail(dec != NULL, FALSE);
+  gst_element_factory_set_rank (dec, GST_ELEMENT_RANK_PRIMARY);
  
   /* register sink pads */
   jpegdec_sink_template = gst_pad_template_new ("sink", GST_PAD_SINK, 
index 7511157aead8045b7b2411fb9949bb6e84f171d9..a123136538f6dc823dcd589318807135bf74f7b9 100644 (file)
@@ -611,6 +611,7 @@ plugin_init (GModule *module, GstPlugin *plugin)
   factory = gst_element_factory_new("mikmod",GST_TYPE_MIKMOD,
                                    &mikmod_details);
   g_return_val_if_fail(factory != NULL, FALSE);
+  gst_element_factory_set_rank (factory, GST_ELEMENT_RANK_PRIMARY);
  
   gst_element_factory_add_pad_template (factory, mikmod_src_factory ());
   gst_element_factory_add_pad_template (factory, mikmod_sink_factory ());
index 9340e6b98deb8ff383f0c218b489f2d7d63a3f6a..930461d95d7bbe0b198c0bf72ed04fb03727a379 100644 (file)
@@ -300,6 +300,7 @@ plugin_init (GModule *module, GstPlugin *plugin)
   factory = gst_element_factory_new ("auparse", GST_TYPE_AUPARSE,
                                     &gst_auparse_details);
   g_return_val_if_fail (factory != NULL, FALSE);
+  gst_element_factory_set_rank (factory, GST_ELEMENT_RANK_SECONDARY);
 
   gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (sink_factory_templ));
   gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (src_factory_templ));
index d3b09b1f4544e87d50df756763f386a9e7c2053c..2fe801a027e3b45ebf10662e576ff2e8d0a6befd 100644 (file)
@@ -177,6 +177,7 @@ plugin_init (GModule *module, GstPlugin *plugin)
   factory = gst_element_factory_new ("aviaudiodecoder",GST_TYPE_AVI_AUDIO_DECODER,
                                     &gst_avi_audio_decoder_details);
   g_return_val_if_fail (factory != NULL, FALSE);
+  gst_element_factory_set_rank (factory, GST_ELEMENT_RANK_PRIMARY);
 
   gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (sink_templ));
   gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (src_audio_templ));
index 77bbcefd1888f4bb8ee33ccd94d934710aa34901..0ee9dc0c3477131a6425dc0b777a70809288145e 100644 (file)
@@ -1278,6 +1278,7 @@ plugin_init (GModule *module, GstPlugin *plugin)
   factory = gst_element_factory_new ("avidemux",GST_TYPE_AVI_DEMUX,
                                     &gst_avi_demux_details);
   g_return_val_if_fail (factory != NULL, FALSE);
+  gst_element_factory_set_rank (factory, GST_ELEMENT_RANK_PRIMARY);
 
   gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (src_audio_templ));
   gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (src_video_templ));
index 1354139de992da307f386371c688654386ed5628..1bb560359aee47c09d665c4be298f2dc00bcb0f7 100644 (file)
@@ -685,6 +685,7 @@ plugin_init (GModule *module, GstPlugin *plugin)
 
   factory = gst_element_factory_new("flxdec", GST_TYPE_FLXDEC, &flxdec_details);
   g_return_val_if_fail(factory != NULL, FALSE);
+  gst_element_factory_set_rank (factory, GST_ELEMENT_RANK_PRIMARY);
 
   gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (sink_factory));
   gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (src_video_factory));
index d168b0771b29da76597f360b71f07eef7a912f12..f340d137c8652aba15c4ccfe2b9fee5cc823845a 100644 (file)
@@ -66,6 +66,7 @@ plugin_init (GModule *module, GstPlugin *plugin)
   alawdec_factory = gst_element_factory_new("alawdec",GST_TYPE_ALAWDEC,
                                            &alawdec_details);
   g_return_val_if_fail(alawdec_factory != NULL, FALSE);
+  gst_element_factory_set_rank (alawdec_factory, GST_ELEMENT_RANK_PRIMARY);
 
   alaw_caps = alaw_factory ();
   linear_caps = linear_factory ();
index 86bbfea31348650970baaac34a65ba015016e21b..387d271f49a009ceb6fefadec15f424c893c0257 100644 (file)
@@ -66,6 +66,7 @@ plugin_init (GModule *module, GstPlugin *plugin)
   mulawdec_factory = gst_element_factory_new("mulawdec",GST_TYPE_MULAWDEC,
                                            &mulawdec_details);
   g_return_val_if_fail(mulawdec_factory != NULL, FALSE);
+  gst_element_factory_set_rank (mulawdec_factory, GST_ELEMENT_RANK_PRIMARY);
 
   mulaw_caps = mulaw_factory ();
   linear_caps = linear_factory ();
index 968ed1abebf7b7145aa9f4a22fc499d70de87e8c..5ff04320b17db61a7b6fd0a8fee3f190fea6ed80 100644 (file)
@@ -238,6 +238,7 @@ plugin_init (GModule *module, GstPlugin *plugin)
   factory = gst_element_factory_new("qtdemux",GST_TYPE_QTDEMUX,
                                    &gst_qtdemux_details);
   g_return_val_if_fail(factory != NULL, FALSE);
+  gst_element_factory_set_rank (factory, GST_ELEMENT_RANK_PRIMARY);
 
   gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (sink_templ));
   gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (src_video_templ));
index 913c41181681194436901b3dac3c4321c7fc7b62..76547edadd6bf708a5999237d368242c5252b390 100644 (file)
@@ -360,6 +360,7 @@ plugin_init (GModule *module, GstPlugin *plugin)
   factory = gst_element_factory_new ("wavparse", GST_TYPE_WAVPARSE,
                                     &gst_wavparse_details);
   g_return_val_if_fail(factory != NULL, FALSE);
+  gst_element_factory_set_rank (factory, GST_ELEMENT_RANK_SECONDARY);
 
   /* register src pads */
   gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (sink_template_factory));