mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
gst/: Fix baseparse type name.
Original commit message from CVS: * gst/aacparse/gstbaseparse.c: * gst/amrparse/gstbaseparse.c: Fix baseparse type name.
This commit is contained in:
parent
7f42b7856b
commit
56caaf6595
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2008-11-13 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* gst/aacparse/gstbaseparse.c:
|
||||
* gst/amrparse/gstbaseparse.c:
|
||||
Fix baseparse type name.
|
||||
|
||||
2008-11-13 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* configure.ac:
|
||||
|
|
|
@ -245,7 +245,7 @@ gst_base_parse_get_type (void)
|
|||
};
|
||||
|
||||
base_parse_type = g_type_register_static (GST_TYPE_ELEMENT,
|
||||
"GstFlacBaseParse", &base_parse_info, G_TYPE_FLAG_ABSTRACT);
|
||||
"GstAacBaseParse", &base_parse_info, G_TYPE_FLAG_ABSTRACT);
|
||||
}
|
||||
return base_parse_type;
|
||||
}
|
||||
|
|
|
@ -245,7 +245,7 @@ gst_base_parse_get_type (void)
|
|||
};
|
||||
|
||||
base_parse_type = g_type_register_static (GST_TYPE_ELEMENT,
|
||||
"GstFlacBaseParse", &base_parse_info, G_TYPE_FLAG_ABSTRACT);
|
||||
"GstAmrBaseParse", &base_parse_info, G_TYPE_FLAG_ABSTRACT);
|
||||
}
|
||||
return base_parse_type;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue