plugins: Disable vaapidecodebin for GStreamer < 1.4

There are autoplugging issues in GStreamer-1.2.
Lets disable vaapidecodebin untill we get some workarounds for this.
This commit is contained in:
Sreerenj Balachandran 2015-03-03 12:31:11 +02:00
parent 8eabe9f377
commit 29853f2aae

View file

@ -87,9 +87,11 @@ plugin_init (GstPlugin *plugin)
GST_TYPE_VAAPIENCODE_VP8);
#endif
#if GST_CHECK_VERSION(1,4,0)
gst_element_register(plugin, "vaapidecodebin",
GST_RANK_PRIMARY + 2,
GST_TYPE_VAAPI_DECODE_BIN);
#endif
return TRUE;
}