mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
vdpaumpegdecoder: rename to "vdpaumpegdec"
This commit is contained in:
parent
71c398566c
commit
4470b61f80
2 changed files with 6 additions and 6 deletions
|
@ -12,7 +12,7 @@
|
||||||
static gboolean
|
static gboolean
|
||||||
vdpau_init (GstPlugin * vdpau_plugin)
|
vdpau_init (GstPlugin * vdpau_plugin)
|
||||||
{
|
{
|
||||||
gst_element_register (vdpau_plugin, "vdpaumpegdecoder",
|
gst_element_register (vdpau_plugin, "vdpaumpegdec",
|
||||||
GST_RANK_NONE, GST_TYPE_VDPAU_MPEG_DECODER);
|
GST_RANK_NONE, GST_TYPE_VDPAU_MPEG_DECODER);
|
||||||
gst_element_register (vdpau_plugin, "vdpauvideoyuv",
|
gst_element_register (vdpau_plugin, "vdpauvideoyuv",
|
||||||
GST_RANK_NONE, GST_TYPE_VDPAU_VIDEO_YUV);
|
GST_RANK_NONE, GST_TYPE_VDPAU_VIDEO_YUV);
|
||||||
|
|
|
@ -19,14 +19,14 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SECTION:element-vdpaumpegdecoder
|
* SECTION:element-vdpaumpegdec
|
||||||
*
|
*
|
||||||
* FIXME:Describe vdpaumpegdecoder here.
|
* FIXME:Describe vdpaumpegdec here.
|
||||||
*
|
*
|
||||||
* <refsect2>
|
* <refsect2>
|
||||||
* <title>Example launch line</title>
|
* <title>Example launch line</title>
|
||||||
* |[
|
* |[
|
||||||
* gst-launch -v -m fakesrc ! vdpaumpegdecoder ! fakesink silent=TRUE
|
* gst-launch -v -m fakesrc ! vdpaumpegdec ! fakesink silent=TRUE
|
||||||
* ]|
|
* ]|
|
||||||
* </refsect2>
|
* </refsect2>
|
||||||
*/
|
*/
|
||||||
|
@ -68,7 +68,7 @@ static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink",
|
||||||
);
|
);
|
||||||
|
|
||||||
#define DEBUG_INIT(bla) \
|
#define DEBUG_INIT(bla) \
|
||||||
GST_DEBUG_CATEGORY_INIT (gst_vdp_mpeg_decoder_debug, "vdpaumpegdecoder", 0, "VDPAU powered mpeg decoder");
|
GST_DEBUG_CATEGORY_INIT (gst_vdp_mpeg_decoder_debug, "vdpaumpegdec", 0, "VDPAU powered mpeg decoder");
|
||||||
|
|
||||||
GST_BOILERPLATE_FULL (GstVdpMpegDecoder, gst_vdp_mpeg_decoder,
|
GST_BOILERPLATE_FULL (GstVdpMpegDecoder, gst_vdp_mpeg_decoder,
|
||||||
GstVdpDecoder, GST_TYPE_VDPAU_DECODER, DEBUG_INIT);
|
GstVdpDecoder, GST_TYPE_VDPAU_DECODER, DEBUG_INIT);
|
||||||
|
@ -384,7 +384,7 @@ gst_vdp_mpeg_decoder_base_init (gpointer gclass)
|
||||||
GstElementClass *element_class = GST_ELEMENT_CLASS (gclass);
|
GstElementClass *element_class = GST_ELEMENT_CLASS (gclass);
|
||||||
|
|
||||||
gst_element_class_set_details_simple (element_class,
|
gst_element_class_set_details_simple (element_class,
|
||||||
"VdpauMpegDecoder",
|
"VDPAU Mpeg Decoder",
|
||||||
"Decoder",
|
"Decoder",
|
||||||
"decode mpeg stream with vdpau",
|
"decode mpeg stream with vdpau",
|
||||||
"Carl-Anton Ingmarsson <ca.ingmarsson@gmail.com>");
|
"Carl-Anton Ingmarsson <ca.ingmarsson@gmail.com>");
|
||||||
|
|
Loading…
Reference in a new issue