summaryrefslogtreecommitdiffstats
path: root/debian/mp4v2/mp4v2-2.0.0~dfsg0/libplatform/time/time_posix.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2024-09-29 20:41:15 +0200
committerSlávek Banko <slavek.banko@axis.cz>2024-09-29 20:41:15 +0200
commitb2ba4403aab430c4b1bdb4304b62860a7ebb854b (patch)
tree2a8a5d8cc5c4441c320a793cafc19c3902bb68f0 /debian/mp4v2/mp4v2-2.0.0~dfsg0/libplatform/time/time_posix.cpp
parentae40ab062f6aa8986d22012b3799062c9739ae88 (diff)
downloadextra-dependencies-b2ba4403aab430c4b1bdb4304b62860a7ebb854b.tar.gz
extra-dependencies-b2ba4403aab430c4b1bdb4304b62860a7ebb854b.zip
Remove mp4v2, which is no longer required.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'debian/mp4v2/mp4v2-2.0.0~dfsg0/libplatform/time/time_posix.cpp')
-rw-r--r--debian/mp4v2/mp4v2-2.0.0~dfsg0/libplatform/time/time_posix.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/debian/mp4v2/mp4v2-2.0.0~dfsg0/libplatform/time/time_posix.cpp b/debian/mp4v2/mp4v2-2.0.0~dfsg0/libplatform/time/time_posix.cpp
deleted file mode 100644
index e3c82f75..00000000
--- a/debian/mp4v2/mp4v2-2.0.0~dfsg0/libplatform/time/time_posix.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#include "libplatform/impl.h"
-#include <sys/time.h>
-
-namespace mp4v2 { namespace platform { namespace time {
-
-///////////////////////////////////////////////////////////////////////////////
-
-milliseconds_t
-getLocalTimeMilliseconds()
-{
- timeval buf;
- if( gettimeofday( &buf, 0 ))
- memset( &buf, 0, sizeof( buf ));
- return milliseconds_t( buf.tv_sec ) * 1000 + buf.tv_usec / 1000;
-}
-
-///////////////////////////////////////////////////////////////////////////////
-
-}}} // namespace mp4v2::platform::time