Original commit message from CVS:
Remove check for readability of a registry, since if it doesn't
exist, it's not readable. Lower-level functions already handle
this.
static void
_registry_load_func (GstRegistry *registry, gpointer user_data)
{
- if (registry->flags & GST_REGISTRY_READABLE &&
- !(registry->flags & GST_REGISTRY_DELAYED_LOADING)) {
+ if (!(registry->flags & GST_REGISTRY_DELAYED_LOADING)) {
gst_registry_load (registry);
}
}