diff --git a/sys/va/gstvadisplay.c b/sys/va/gstvadisplay.c index f52eb63a3b..a5139b1721 100644 --- a/sys/va/gstvadisplay.c +++ b/sys/va/gstvadisplay.c @@ -443,7 +443,7 @@ bail: } GstVaImplementation -gst_va_display_get_implemenation (GstVaDisplay * self) +gst_va_display_get_implementation (GstVaDisplay * self) { GstVaDisplayPrivate *priv; diff --git a/sys/va/gstvadisplay.h b/sys/va/gstvadisplay.h index d4005e206d..a30c4bba09 100644 --- a/sys/va/gstvadisplay.h +++ b/sys/va/gstvadisplay.h @@ -57,12 +57,12 @@ GArray * gst_va_display_get_profiles (GstVaDisplay * self, guint32 codec, VAEntrypoint entrypoint); GArray * gst_va_display_get_image_formats (GstVaDisplay * self); -GstVaImplementation gst_va_display_get_implemenation (GstVaDisplay * self); +GstVaImplementation gst_va_display_get_implementation (GstVaDisplay * self); static inline gboolean gst_va_display_is_implementation (GstVaDisplay * self, GstVaImplementation impl) { - return (gst_va_display_get_implemenation (self) == impl); + return (gst_va_display_get_implementation (self) == impl); } G_END_DECLS