summaryrefslogtreecommitdiffstats
path: root/lib/libshout-idjc/src/common/timing/timing.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libshout-idjc/src/common/timing/timing.c')
-rw-r--r--lib/libshout-idjc/src/common/timing/timing.c104
1 files changed, 104 insertions, 0 deletions
diff --git a/lib/libshout-idjc/src/common/timing/timing.c b/lib/libshout-idjc/src/common/timing/timing.c
new file mode 100644
index 0000000000..9be67d565a
--- /dev/null
+++ b/lib/libshout-idjc/src/common/timing/timing.c
@@ -0,0 +1,104 @@
+/* timing.c
+ * - Timing functions
+ *
+ * Copyright (C) 2014 Michael Smith <msmith@icecast.org>,
+ * Brendan Cully <brendan@xiph.org>,
+ * Karl Heyes <karl@xiph.org>,
+ * Jack Moffitt <jack@icecast.org>,
+ * Ed "oddsock" Zaleski <oddsock@xiph.org>,
+ * Ralph Giles <giles@xiph.org>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+ #include <config.h>
+#endif
+
+#include <stdlib.h>
+#include <sys/types.h>
+
+#ifdef _WIN32
+#include <windows.h>
+#include <mmsystem.h>
+#else
+#ifdef TIME_WITH_SYS_TIME
+# include <sys/time.h>
+# include <time.h>
+#else
+# ifdef HAVE_SYS_TIME_H
+# include <sys/time.h>
+# else
+# include <time.h>
+# endif
+#endif
+
+#include <unistd.h>
+#endif
+
+#ifdef HAVE_SYS_SELECT_H
+#include <sys/select.h>
+#endif
+
+#ifdef HAVE_SYS_TIMEB_H
+#include <sys/timeb.h>
+#endif
+
+#include "timing.h"
+
+/* see timing.h for an explanation of _mangle() */
+
+/*
+ * Returns milliseconds no matter what.
+ */
+uint64_t timing_get_time(void)
+{
+#ifdef HAVE_GETTIMEOFDAY
+ struct timeval mtv;
+
+ gettimeofday(&mtv, NULL);
+
+ return (uint64_t)(mtv.tv_sec) * 1000 + (uint64_t)(mtv.tv_usec) / 1000;
+#elif HAVE_FTIME
+ struct timeb t;
+
+ ftime(&t);
+ return t.time * 1000 + t.millitm;
+#else
+#error need time query handler
+#endif
+}
+
+
+void timing_sleep(uint64_t sleeptime)
+{
+ struct timeval sleeper;
+
+ sleeper.tv_sec = sleeptime / 1000;
+ sleeper.tv_usec = (sleeptime % 1000) * 1000;
+
+ /* NOTE:
+ * This should be 0 for the first argument. The linux manpage
+ * says so. The solaris manpage also says this is a legal
+ * value. If you think differerntly, please provide references.
+ */
+#ifdef WIN32
+ Sleep(sleeptime);
+#else
+ select(1, NULL, NULL, NULL, &sleeper);
+#endif
+}