From 04472c5adb4042e98a2b1f80cc239abb9cbaa47e Mon Sep 17 00:00:00 2001 From: He Junyan Date: Thu, 12 Nov 2020 00:42:59 +0800 Subject: [PATCH] codecs: vp8decoder: Fix two typo of struct name. Part-of: --- gst-libs/gst/codecs/gstvp8decoder.c | 2 +- gst-libs/gst/codecs/gstvp8decoder.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/codecs/gstvp8decoder.c b/gst-libs/gst/codecs/gstvp8decoder.c index ad783956b3..870cc9c253 100644 --- a/gst-libs/gst/codecs/gstvp8decoder.c +++ b/gst-libs/gst/codecs/gstvp8decoder.c @@ -19,7 +19,7 @@ /** * SECTION:gstvp8decoder - * @title: GstVP8Decoder + * @title: GstVp8Decoder * @short_description: Base class to implement stateless VP8 decoders * @sources: * - gstvp8picture.h diff --git a/gst-libs/gst/codecs/gstvp8decoder.h b/gst-libs/gst/codecs/gstvp8decoder.h index 0483af8ba9..8adc86695b 100644 --- a/gst-libs/gst/codecs/gstvp8decoder.h +++ b/gst-libs/gst/codecs/gstvp8decoder.h @@ -34,7 +34,7 @@ G_BEGIN_DECLS #define GST_VP8_DECODER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj),GST_TYPE_VP8_DECODER,GstVp8DecoderClass)) #define GST_IS_VP8_DECODER(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VP8_DECODER)) #define GST_IS_VP8_DECODER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VP8_DECODER)) -#define GST_VP8_DECODER_CAST(obj) ((GstVP8Decoder*)obj) +#define GST_VP8_DECODER_CAST(obj) ((GstVp8Decoder*)obj) typedef struct _GstVp8Decoder GstVp8Decoder; typedef struct _GstVp8DecoderClass GstVp8DecoderClass;