va: display: Fix typo.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2127>
This commit is contained in:
Víctor Manuel Jáquez Leal 2021-04-22 17:07:28 +02:00
parent e2ff55b40d
commit 2b0fa73c10
2 changed files with 3 additions and 3 deletions

View file

@ -443,7 +443,7 @@ bail:
}
GstVaImplementation
gst_va_display_get_implemenation (GstVaDisplay * self)
gst_va_display_get_implementation (GstVaDisplay * self)
{
GstVaDisplayPrivate *priv;

View file

@ -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