mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
3e05ddca61
vdpausink is as the name implies a sink which takes vide/x-vdpau-output buffers and outputs it to the screen. vdpauvideopostprocess is an element which takes video/x-vdpau-video buffers and outputs video/x-vdpau-output buffers. The element can also do things like deinterlacing and other postprocessing but this is not implemented yet.
33 lines
921 B
C
33 lines
921 B
C
#ifdef HAVE_CONFIG_H
|
|
# include <config.h>
|
|
#endif
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#include "gstvdpmpegdec.h"
|
|
#include "gstvdpvideoyuv.h"
|
|
#include "gstvdpyuvvideo.h"
|
|
#include "gstvdpvideopostprocess.h"
|
|
#include "gstvdpsink.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/")
|