[grilo-plugins] all: Adapted to changes in grl_plugin_registry_register_source.



commit 6251ad1455bf1bd74e0579c9e60abfaf87f9b6f9
Author: Iago Toral Quiroga <itoral igalia com>
Date:   Mon Dec 20 08:31:48 2010 +0100

    all: Adapted to changes in grl_plugin_registry_register_source.

 src/apple-trailers/grl-apple-trailers.c   |    3 ++-
 src/bookmarks/grl-bookmarks.c             |    3 ++-
 src/fake-metadata/grl-fake-metadata.c     |    3 ++-
 src/filesystem/grl-filesystem.c           |    3 ++-
 src/flickr/grl-flickr.c                   |    6 ++++--
 src/gravatar/grl-gravatar.c               |    3 ++-
 src/jamendo/grl-jamendo.c                 |    3 ++-
 src/lastfm-albumart/grl-lastfm-albumart.c |    3 ++-
 src/metadata-store/grl-metadata-store.c   |    3 ++-
 src/podcasts/grl-podcasts.c               |    3 ++-
 src/shoutcast/grl-shoutcast.c             |    3 ++-
 src/upnp/grl-upnp.c                       |    6 ++++--
 src/vimeo/grl-vimeo.c                     |    3 ++-
 src/youtube/grl-youtube.c                 |    3 ++-
 14 files changed, 32 insertions(+), 16 deletions(-)
---
diff --git a/src/apple-trailers/grl-apple-trailers.c b/src/apple-trailers/grl-apple-trailers.c
index 1ee070b..28764ad 100644
--- a/src/apple-trailers/grl-apple-trailers.c
+++ b/src/apple-trailers/grl-apple-trailers.c
@@ -135,7 +135,8 @@ grl_apple_trailers_plugin_init (GrlPluginRegistry *registry,
   source = grl_apple_trailers_source_new (hd, xlarge);
   grl_plugin_registry_register_source (registry,
                                        plugin,
-                                       GRL_MEDIA_PLUGIN (source));
+                                       GRL_MEDIA_PLUGIN (source),
+                                       NULL);
   return TRUE;
 }
 
diff --git a/src/bookmarks/grl-bookmarks.c b/src/bookmarks/grl-bookmarks.c
index d14c9ae..ac18ea5 100644
--- a/src/bookmarks/grl-bookmarks.c
+++ b/src/bookmarks/grl-bookmarks.c
@@ -187,7 +187,8 @@ grl_bookmarks_plugin_init (GrlPluginRegistry *registry,
   GrlBookmarksSource *source = grl_bookmarks_source_new ();
   grl_plugin_registry_register_source (registry,
                                        plugin,
-                                       GRL_MEDIA_PLUGIN (source));
+                                       GRL_MEDIA_PLUGIN (source),
+                                       NULL);
   return TRUE;
 }
 
diff --git a/src/fake-metadata/grl-fake-metadata.c b/src/fake-metadata/grl-fake-metadata.c
index c762e35..463b284 100644
--- a/src/fake-metadata/grl-fake-metadata.c
+++ b/src/fake-metadata/grl-fake-metadata.c
@@ -76,7 +76,8 @@ grl_fake_metadata_source_plugin_init (GrlPluginRegistry *registry,
   GrlFakeMetadataSource *source = grl_fake_metadata_source_new ();
   grl_plugin_registry_register_source (registry,
                                        plugin,
-                                       GRL_MEDIA_PLUGIN (source));
+                                       GRL_MEDIA_PLUGIN (source),
+                                       NULL);
   return TRUE;
 }
 
diff --git a/src/filesystem/grl-filesystem.c b/src/filesystem/grl-filesystem.c
index 7f58405..73a56fe 100644
--- a/src/filesystem/grl-filesystem.c
+++ b/src/filesystem/grl-filesystem.c
@@ -120,7 +120,8 @@ grl_filesystem_plugin_init (GrlPluginRegistry *registry,
   GrlFilesystemSource *source = grl_filesystem_source_new ();
   grl_plugin_registry_register_source (registry,
                                        plugin,
-                                       GRL_MEDIA_PLUGIN (source));
+                                       GRL_MEDIA_PLUGIN (source),
+                                       NULL);
 
   for (; configs; configs = g_list_next (configs)) {
     const gchar *path;
diff --git a/src/flickr/grl-flickr.c b/src/flickr/grl-flickr.c
index fe28597..cbd08b6 100644
--- a/src/flickr/grl-flickr.c
+++ b/src/flickr/grl-flickr.c
@@ -153,7 +153,8 @@ grl_flickr_plugin_init (GrlPluginRegistry *registry,
       public_source_created = TRUE;
       grl_plugin_registry_register_source (registry,
                                            plugin,
-                                           GRL_MEDIA_PLUGIN (source));
+                                           GRL_MEDIA_PLUGIN (source),
+                                           NULL);
     }
 
     configs = g_list_next (configs);
@@ -284,7 +285,8 @@ token_info_cb (GFlickr *f,
     source->priv->user_id = g_strdup (g_hash_table_lookup (info, "user_nsid"));
     grl_plugin_registry_register_source (registry,
                                          plugin,
-                                         GRL_MEDIA_PLUGIN (source));
+                                         GRL_MEDIA_PLUGIN (source),
+                                         NULL);
   }
 
   g_free (source_id);
diff --git a/src/gravatar/grl-gravatar.c b/src/gravatar/grl-gravatar.c
index 976756d..11ec893 100644
--- a/src/gravatar/grl-gravatar.c
+++ b/src/gravatar/grl-gravatar.c
@@ -104,7 +104,8 @@ grl_gravatar_source_plugin_init (GrlPluginRegistry *registry,
   GrlGravatarSource *source = grl_gravatar_source_new ();
   grl_plugin_registry_register_source (registry,
                                        plugin,
-                                       GRL_MEDIA_PLUGIN (source));
+                                       GRL_MEDIA_PLUGIN (source),
+                                       NULL);
   return TRUE;
 }
 
diff --git a/src/jamendo/grl-jamendo.c b/src/jamendo/grl-jamendo.c
index ce86fa0..9623a6c 100644
--- a/src/jamendo/grl-jamendo.c
+++ b/src/jamendo/grl-jamendo.c
@@ -206,7 +206,8 @@ grl_jamendo_plugin_init (GrlPluginRegistry *registry,
   GrlJamendoSource *source = grl_jamendo_source_new ();
   grl_plugin_registry_register_source (registry,
                                        plugin,
-                                       GRL_MEDIA_PLUGIN (source));
+                                       GRL_MEDIA_PLUGIN (source),
+                                       NULL);
   return TRUE;
 }
 
diff --git a/src/lastfm-albumart/grl-lastfm-albumart.c b/src/lastfm-albumart/grl-lastfm-albumart.c
index 60ccbe6..99825a2 100644
--- a/src/lastfm-albumart/grl-lastfm-albumart.c
+++ b/src/lastfm-albumart/grl-lastfm-albumart.c
@@ -88,7 +88,8 @@ grl_lastfm_albumart_source_plugin_init (GrlPluginRegistry *registry,
   GrlLastfmAlbumartSource *source = grl_lastfm_albumart_source_new ();
   grl_plugin_registry_register_source (registry,
                                        plugin,
-                                       GRL_MEDIA_PLUGIN (source));
+                                       GRL_MEDIA_PLUGIN (source),
+                                       NULL);
   return TRUE;
 }
 
diff --git a/src/metadata-store/grl-metadata-store.c b/src/metadata-store/grl-metadata-store.c
index c672174..f596585 100644
--- a/src/metadata-store/grl-metadata-store.c
+++ b/src/metadata-store/grl-metadata-store.c
@@ -119,7 +119,8 @@ grl_metadata_store_source_plugin_init (GrlPluginRegistry *registry,
   GrlMetadataStoreSource *source = grl_metadata_store_source_new ();
   grl_plugin_registry_register_source (registry,
                                        plugin,
-                                       GRL_MEDIA_PLUGIN (source));
+                                       GRL_MEDIA_PLUGIN (source),
+                                       NULL);
   return TRUE;
 }
 
diff --git a/src/podcasts/grl-podcasts.c b/src/podcasts/grl-podcasts.c
index 20d6627..1a8db02 100644
--- a/src/podcasts/grl-podcasts.c
+++ b/src/podcasts/grl-podcasts.c
@@ -245,7 +245,8 @@ grl_podcasts_plugin_init (GrlPluginRegistry *registry,
   GrlPodcastsSource *source = grl_podcasts_source_new ();
   grl_plugin_registry_register_source (registry,
                                        plugin,
-                                       GRL_MEDIA_PLUGIN (source));
+                                       GRL_MEDIA_PLUGIN (source),
+                                       NULL);
   return TRUE;
 }
 
diff --git a/src/shoutcast/grl-shoutcast.c b/src/shoutcast/grl-shoutcast.c
index 146637e..6b08928 100644
--- a/src/shoutcast/grl-shoutcast.c
+++ b/src/shoutcast/grl-shoutcast.c
@@ -123,7 +123,8 @@ grl_shoutcast_plugin_init (GrlPluginRegistry *registry,
   GrlShoutcastSource *source = grl_shoutcast_source_new ();
   grl_plugin_registry_register_source (registry,
                                        plugin,
-                                       GRL_MEDIA_PLUGIN (source));
+                                       GRL_MEDIA_PLUGIN (source),
+                                       NULL);
   return TRUE;
 }
 
diff --git a/src/upnp/grl-upnp.c b/src/upnp/grl-upnp.c
index a9681b8..269d68b 100644
--- a/src/upnp/grl-upnp.c
+++ b/src/upnp/grl-upnp.c
@@ -339,7 +339,8 @@ gupnp_search_caps_cb (GUPnPServiceProxy *service,
 
   grl_plugin_registry_register_source (registry,
                                        source_info->plugin,
-                                       GRL_MEDIA_PLUGIN (source));
+                                       GRL_MEDIA_PLUGIN (source),
+                                       NULL);
 
  free_resources:
   free_source_info (source_info);
@@ -407,7 +408,8 @@ device_available_cb (GUPnPControlPoint *cp,
     registry = grl_plugin_registry_get_default ();
     grl_plugin_registry_register_source (registry,
                                          source_info->plugin,
-                                         GRL_MEDIA_PLUGIN (source));
+                                         GRL_MEDIA_PLUGIN (source),
+                                         NULL);
     free_source_info (source_info);
   }
 
diff --git a/src/vimeo/grl-vimeo.c b/src/vimeo/grl-vimeo.c
index ef4deda..2664232 100644
--- a/src/vimeo/grl-vimeo.c
+++ b/src/vimeo/grl-vimeo.c
@@ -126,7 +126,8 @@ grl_vimeo_plugin_init (GrlPluginRegistry *registry,
 
   grl_plugin_registry_register_source (registry,
                                        plugin,
-                                       GRL_MEDIA_PLUGIN (source));
+                                       GRL_MEDIA_PLUGIN (source),
+                                       NULL);
   return TRUE;
 }
 
diff --git a/src/youtube/grl-youtube.c b/src/youtube/grl-youtube.c
index 589106f..386930c 100644
--- a/src/youtube/grl-youtube.c
+++ b/src/youtube/grl-youtube.c
@@ -285,7 +285,8 @@ grl_youtube_plugin_init (GrlPluginRegistry *registry,
 
   grl_plugin_registry_register_source (registry,
                                        plugin,
-                                       GRL_MEDIA_PLUGIN (source));
+                                       GRL_MEDIA_PLUGIN (source),
+                                       NULL);
   return TRUE;
 }
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]