mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
gst: clock: Move Android OS check to the __ANDROID__ macro
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6510>
This commit is contained in:
parent
8f8fc314db
commit
5929829131
1 changed files with 2 additions and 2 deletions
|
@ -251,7 +251,7 @@ gst_futex_cond_broadcast (guint * cond_val)
|
||||||
g_atomic_int_inc (cond_val);
|
g_atomic_int_inc (cond_val);
|
||||||
|
|
||||||
#if defined(HAVE_FUTEX_TIME64)
|
#if defined(HAVE_FUTEX_TIME64)
|
||||||
#if defined(__BIONIC__)
|
#if defined(__ANDROID__)
|
||||||
if (__builtin_available (android 30, *)) {
|
if (__builtin_available (android 30, *)) {
|
||||||
#else
|
#else
|
||||||
{
|
{
|
||||||
|
@ -313,7 +313,7 @@ gst_futex_cond_wait_until (guint * cond_val, GMutex * mutex, gint64 end_time)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#if defined(HAVE_FUTEX_TIME64)
|
#if defined(HAVE_FUTEX_TIME64)
|
||||||
#if defined(__BIONIC__)
|
#if defined(__ANDROID__)
|
||||||
if (__builtin_available (android 30, *)) {
|
if (__builtin_available (android 30, *)) {
|
||||||
#else
|
#else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue