2010-04-22 10:52:42 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2011-03-27 17:40:48 +00:00
|
|
|
#include <config.h>
|
2010-04-22 10:52:42 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
2010-06-09 13:43:43 +00:00
|
|
|
#include "gstvdp/gstvdp.h"
|
2010-04-22 10:52:42 +00:00
|
|
|
|
2010-06-09 13:43:43 +00:00
|
|
|
#include "mpeg/gstvdpmpegdec.h"
|
|
|
|
#include "h264/gstvdph264dec.h"
|
2010-07-14 09:03:35 +00:00
|
|
|
#include "mpeg4/gstvdpmpeg4dec.h"
|
2010-04-22 10:52:42 +00:00
|
|
|
#include "gstvdpvideopostprocess.h"
|
|
|
|
#include "gstvdpsink.h"
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
vdpau_init (GstPlugin * vdpau_plugin)
|
|
|
|
{
|
|
|
|
gst_vdp_init ();
|
|
|
|
|
|
|
|
/* 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);
|
2010-06-09 13:43:43 +00:00
|
|
|
gst_element_register (vdpau_plugin, "vdpauh264dec",
|
2010-08-02 16:33:46 +00:00
|
|
|
GST_RANK_NONE, GST_TYPE_VDP_H264_DEC);
|
2010-07-14 09:03:35 +00:00
|
|
|
gst_element_register (vdpau_plugin, "vdpaumpeg4dec",
|
|
|
|
GST_RANK_NONE, GST_TYPE_VDP_MPEG4_DEC);
|
2010-04-22 10:52:42 +00:00
|
|
|
gst_element_register (vdpau_plugin, "vdpauvideopostprocess",
|
2010-08-02 16:33:46 +00:00
|
|
|
GST_RANK_NONE, GST_TYPE_VDP_VIDEO_POST_PROCESS);
|
2010-04-22 10:52:42 +00:00
|
|
|
gst_element_register (vdpau_plugin, "vdpausink",
|
2010-08-02 16:33:46 +00:00
|
|
|
GST_RANK_NONE, GST_TYPE_VDP_SINK);
|
2010-04-22 10:52:42 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
2012-04-05 16:02:56 +00:00
|
|
|
vdpau,
|
2010-04-22 10:52:42 +00:00
|
|
|
"Various elements utilizing VDPAU",
|
|
|
|
vdpau_init, VERSION, "LGPL", "GStreamer", "http://gstreamer.net/")
|