mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
5bc1290431
These elements are not fit for autoplugging, so demoting to RANK_NONE. Also blacklisting for generic states test, since fixing these elements up to do some minimal error handling seems to be a bit more work. Partially fixes #591538.
31 lines
861 B
C
31 lines
861 B
C
#ifdef HAVE_CONFIG_H
|
|
# include <config.h>
|
|
#endif
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#include "gstvdpmpegdec.h"
|
|
#include "gstvdpvideoyuv.h"
|
|
#include "gstvdpyuvvideo.h"
|
|
|
|
static gboolean
|
|
vdpau_init (GstPlugin * vdpau_plugin)
|
|
{
|
|
/* Before giving these elements a rank again, make sure they pass at
|
|
* least the generic/states test when there's no device available */
|
|
gst_element_register (vdpau_plugin, "vdpaumpegdec",
|
|
GST_RANK_NONE, GST_TYPE_VDP_MPEG_DEC);
|
|
gst_element_register (vdpau_plugin, "vdpauvideoyuv",
|
|
GST_RANK_NONE, GST_TYPE_VDP_VIDEO_YUV);
|
|
gst_element_register (vdpau_plugin, "vdpauyuvvideo",
|
|
GST_RANK_NONE, GST_TYPE_VDP_YUV_VIDEO);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
GST_VERSION_MINOR,
|
|
"vdpau",
|
|
"Various elements utilizing VDPAU",
|
|
vdpau_init, VERSION, "LGPL", "GStreamer", "http://gstreamer.net/")
|