summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVíctor Manuel Jáquez Leal <vjaquez@igalia.com>2021-04-22 17:07:28 +0200
committerVíctor Manuel Jáquez Leal <vjaquez@igalia.com>2021-04-28 11:39:24 +0200
commit2b0fa73c10f295e8bf95bc969ac898aea5cec3e3 (patch)
treec68b9c610b2a1ca6ca868a227426ccac245ae680
parente2ff55b40db68fd7b44d9a6e301cb54b82344ba9 (diff)
downloadgstreamer-plugins-bad-2b0fa73c10f295e8bf95bc969ac898aea5cec3e3.tar.gz
va: display: Fix typo.
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2127>
-rw-r--r--sys/va/gstvadisplay.c2
-rw-r--r--sys/va/gstvadisplay.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/sys/va/gstvadisplay.c b/sys/va/gstvadisplay.c
index f52eb63a3..a5139b172 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 d4005e206..a30c4bba0 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