vdpaumpegdecoder: rename to "vdpaumpegdec"

This commit is contained in:
Carl-Anton Ingmarsson 2009-04-14 21:04:59 +02:00 committed by Jan Schmidt
parent 71c398566c
commit 4470b61f80
2 changed files with 6 additions and 6 deletions

View file

@ -12,7 +12,7 @@
static gboolean
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_element_register (vdpau_plugin, "vdpauvideoyuv",
GST_RANK_NONE, GST_TYPE_VDPAU_VIDEO_YUV);

View file

@ -19,14 +19,14 @@
*/
/**
* SECTION:element-vdpaumpegdecoder
* SECTION:element-vdpaumpegdec
*
* FIXME:Describe vdpaumpegdecoder here.
* FIXME:Describe vdpaumpegdec here.
*
* <refsect2>
* <title>Example launch line</title>
* |[
* gst-launch -v -m fakesrc ! vdpaumpegdecoder ! fakesink silent=TRUE
* gst-launch -v -m fakesrc ! vdpaumpegdec ! fakesink silent=TRUE
* ]|
* </refsect2>
*/
@ -68,7 +68,7 @@ static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink",
);
#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,
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);
gst_element_class_set_details_simple (element_class,
"VdpauMpegDecoder",
"VDPAU Mpeg Decoder",
"Decoder",
"decode mpeg stream with vdpau",
"Carl-Anton Ingmarsson <ca.ingmarsson@gmail.com>");