summaryrefslogtreecommitdiff
path: root/sys/vdpau/gstvdpau.c
blob: 64fd4a2ff609c98f6be87aef87f4f7fe42bc4173 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif


#include <gst/gst.h>

#include "gstvdpdevice.h"
#include "gstvdpvideomemory.h"
#include "gstvdpoutputbuffer.h"
#include "gstvdpdecoder.h"

#include "mpeg/gstvdpmpegdec.h"
/* #include "h264/gstvdph264dec.h" */
#include "mpeg4/gstvdpmpeg4dec.h"
#include "gstvdpvideopostprocess.h"
#include "gstvdpsink.h"

static gboolean
vdpau_init (GstPlugin * vdpau_plugin)
{
  gboolean ret;

  /* do this so debug categories get created */
  gst_vdp_device_get_type ();
  gst_vdp_decoder_get_type ();
  gst_vdp_video_memory_init ();

  /* Before giving these elements a rank again, make sure they pass at
   * least the generic/states test when there's no device available */
  ret = gst_element_register (vdpau_plugin, "vdpaumpegdec",
      GST_RANK_NONE, GST_TYPE_VDP_MPEG_DEC);
  /* ret &= gst_element_register (vdpau_plugin, "vdpauh264dec", */
  /*     GST_RANK_NONE, GST_TYPE_VDP_H264_DEC); */
  /* gst_element_register (vdpau_plugin, "vdpaumpeg4dec", */
  /*     GST_RANK_NONE, GST_TYPE_VDP_MPEG4_DEC); */
  /* gst_element_register (vdpau_plugin, "vdpauvideopostprocess", */
  /*     GST_RANK_NONE, GST_TYPE_VDP_VIDEO_POST_PROCESS); */
  /* gst_element_register (vdpau_plugin, "vdpausink", */
  /*     GST_RANK_NONE, GST_TYPE_VDP_SINK); */

  return ret;
}

GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
    GST_VERSION_MINOR,
    vdpau,
    "Various elements utilizing VDPAU",
    vdpau_init, VERSION, "LGPL", "GStreamer", "http://gstreamer.net/")