mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 14:08:56 +00:00
vavp8dec, vampeg2dec: Fix type name.
The camel case name is wrong when registering the type. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3361>
This commit is contained in:
parent
0b33f3cd1f
commit
0918910a7d
3 changed files with 7 additions and 7 deletions
|
@ -16778,13 +16778,13 @@
|
||||||
"GstVaH265Dec!sink",
|
"GstVaH265Dec!sink",
|
||||||
"GstVaH265Dec!src",
|
"GstVaH265Dec!src",
|
||||||
"GstVaImplementation",
|
"GstVaImplementation",
|
||||||
"GstVaMpeg2dec!sink",
|
"GstVaMpeg2Dec!sink",
|
||||||
"GstVaMpeg2dec!src",
|
"GstVaMpeg2Dec!src",
|
||||||
"GstVaPool",
|
"GstVaPool",
|
||||||
"GstVaPostProc!sink",
|
"GstVaPostProc!sink",
|
||||||
"GstVaPostProc!src",
|
"GstVaPostProc!src",
|
||||||
"GstVaVp8dec!sink",
|
"GstVaVp8Dec!sink",
|
||||||
"GstVaVp8dec!src",
|
"GstVaVp8Dec!src",
|
||||||
"GstVaVp9Dec!sink",
|
"GstVaVp9Dec!sink",
|
||||||
"GstVaVp9Dec!src",
|
"GstVaVp9Dec!src",
|
||||||
"GstVaapiDecodeBin",
|
"GstVaapiDecodeBin",
|
||||||
|
|
|
@ -705,7 +705,7 @@ gst_va_mpeg2_dec_register (GstPlugin * plugin, GstVaDevice * device,
|
||||||
|
|
||||||
type_info.class_data = cdata;
|
type_info.class_data = cdata;
|
||||||
|
|
||||||
type_name = g_strdup ("GstVaMpeg2dec");
|
type_name = g_strdup ("GstVaMpeg2Dec");
|
||||||
feature_name = g_strdup ("vampeg2dec");
|
feature_name = g_strdup ("vampeg2dec");
|
||||||
|
|
||||||
/* The first decoder to be registered should use a constant name,
|
/* The first decoder to be registered should use a constant name,
|
||||||
|
|
|
@ -574,7 +574,7 @@ gst_va_vp8_dec_register (GstPlugin * plugin, GstVaDevice * device,
|
||||||
|
|
||||||
type_info.class_data = cdata;
|
type_info.class_data = cdata;
|
||||||
|
|
||||||
type_name = g_strdup ("GstVaVp8dec");
|
type_name = g_strdup ("GstVaVp8Dec");
|
||||||
feature_name = g_strdup ("vavp8dec");
|
feature_name = g_strdup ("vavp8dec");
|
||||||
|
|
||||||
/* The first decoder to be registered should use a constant name,
|
/* The first decoder to be registered should use a constant name,
|
||||||
|
@ -584,7 +584,7 @@ gst_va_vp8_dec_register (GstPlugin * plugin, GstVaDevice * device,
|
||||||
gchar *basename = g_path_get_basename (device->render_device_path);
|
gchar *basename = g_path_get_basename (device->render_device_path);
|
||||||
g_free (type_name);
|
g_free (type_name);
|
||||||
g_free (feature_name);
|
g_free (feature_name);
|
||||||
type_name = g_strdup_printf ("GstVa%sVP8Dec", basename);
|
type_name = g_strdup_printf ("GstVa%sVp8Dec", basename);
|
||||||
feature_name = g_strdup_printf ("va%svp8dec", basename);
|
feature_name = g_strdup_printf ("va%svp8dec", basename);
|
||||||
cdata->description = basename;
|
cdata->description = basename;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue