Bump GLib requirement to >= 2.62
[platform/upstream/gstreamer.git] / subprojects / gst-plugins-bad / ext / gs / gstgscommon.cpp
index 8326baa..b954b3f 100644 (file)
 
 namespace gcs = google::cloud::storage;
 
-namespace {
-
-#if !GLIB_CHECK_VERSION(2, 62, 0)
-static inline gchar* g_date_time_format_iso8601(GDateTime* datetime) {
-  GString* outstr = NULL;
-  gchar* main_date = NULL;
-  gint64 offset;
-
-  // Main date and time.
-  main_date = g_date_time_format(datetime, "%Y-%m-%dT%H:%M:%S");
-  outstr = g_string_new(main_date);
-  g_free(main_date);
-
-  // Timezone. Format it as `%:::z` unless the offset is zero, in which case
-  // we can simply use `Z`.
-  offset = g_date_time_get_utc_offset(datetime);
-
-  if (offset == 0) {
-    g_string_append_c(outstr, 'Z');
-  } else {
-    gchar* time_zone = g_date_time_format(datetime, "%:::z");
-    g_string_append(outstr, time_zone);
-    g_free(time_zone);
-  }
-
-  return g_string_free(outstr, FALSE);
-}
-#endif
-
-}  // namespace
-
 std::unique_ptr<google::cloud::storage::Client> gst_gs_create_client(
     const gchar* service_account_email,
     const gchar* service_account_credentials,