mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
configure: Update required GLib version to 2.20
This commit is contained in:
parent
e0cd55c805
commit
602fb1319a
2 changed files with 2 additions and 7 deletions
|
@ -151,7 +151,7 @@ AG_GST_CHECK_FUNCTION
|
|||
dnl *** checks for dependency libraries ***
|
||||
|
||||
dnl GLib is required
|
||||
AG_GST_GLIB_CHECK([2.18])
|
||||
AG_GST_GLIB_CHECK([2.20])
|
||||
ORC_CHECK([0.4.5])
|
||||
|
||||
dnl checks for gstreamer
|
||||
|
|
|
@ -205,11 +205,6 @@ G_STMT_START { \
|
|||
} \
|
||||
} G_STMT_END
|
||||
|
||||
/* FIXME: remove once we depend on GLib >= 2.20 */
|
||||
#if GLIB_CHECK_VERSION (2, 20, 0)
|
||||
#define gst_rtsp_base64_decode_ip g_base64_decode_inplace
|
||||
#endif
|
||||
|
||||
#define READ_BUFFER_GEN(src, func, name, dest, dest_len) \
|
||||
G_STMT_START { \
|
||||
dest = (gchar *)func (src, name); \
|
||||
|
@ -221,7 +216,7 @@ G_STMT_START { \
|
|||
dest += 8; \
|
||||
dest_len = strlen (dest) - 1; \
|
||||
dest[dest_len] = '\0'; \
|
||||
gst_rtsp_base64_decode_ip (dest, &dest_len); \
|
||||
g_base64_decode_inplace (dest, &dest_len); \
|
||||
} \
|
||||
} G_STMT_END
|
||||
|
||||
|
|
Loading…
Reference in a new issue