annotate src/vamp-plugin-sdk-2.5/vamp-sdk/RealTime.h @ 83:ae30d91d2ffe

Replace these with versions built using an older toolset (so as to avoid ABI compatibilities when linking on Ubuntu 14.04 for packaging purposes)
author Chris Cannam
date Fri, 07 Feb 2020 11:51:13 +0000
parents 619f715526df
children
rev   line source
Chris@23 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@23 2
Chris@23 3 /*
Chris@23 4 Vamp
Chris@23 5
Chris@23 6 An API for audio analysis and feature extraction plugins.
Chris@23 7
Chris@23 8 Centre for Digital Music, Queen Mary, University of London.
Chris@23 9 Copyright 2006 Chris Cannam.
Chris@23 10
Chris@23 11 Permission is hereby granted, free of charge, to any person
Chris@23 12 obtaining a copy of this software and associated documentation
Chris@23 13 files (the "Software"), to deal in the Software without
Chris@23 14 restriction, including without limitation the rights to use, copy,
Chris@23 15 modify, merge, publish, distribute, sublicense, and/or sell copies
Chris@23 16 of the Software, and to permit persons to whom the Software is
Chris@23 17 furnished to do so, subject to the following conditions:
Chris@23 18
Chris@23 19 The above copyright notice and this permission notice shall be
Chris@23 20 included in all copies or substantial portions of the Software.
Chris@23 21
Chris@23 22 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
Chris@23 23 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
Chris@23 24 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
Chris@23 25 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
Chris@23 26 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
Chris@23 27 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
Chris@23 28 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Chris@23 29
Chris@23 30 Except as contained in this notice, the names of the Centre for
Chris@23 31 Digital Music; Queen Mary, University of London; and Chris Cannam
Chris@23 32 shall not be used in advertising or otherwise to promote the sale,
Chris@23 33 use or other dealings in this Software without prior written
Chris@23 34 authorization.
Chris@23 35 */
Chris@23 36
Chris@23 37 /*
Chris@23 38 This is a modified version of a source file from the
Chris@23 39 Rosegarden MIDI and audio sequencer and notation editor.
Chris@23 40 This file copyright 2000-2006 Chris Cannam.
Chris@23 41 Relicensed by the author as detailed above.
Chris@23 42 */
Chris@23 43
Chris@23 44 #ifndef _VAMP_REAL_TIME_H_
Chris@23 45 #define _VAMP_REAL_TIME_H_
Chris@23 46
Chris@23 47 #include <iostream>
Chris@23 48 #include <string>
Chris@23 49
Chris@23 50 #ifndef _WIN32
Chris@23 51 struct timeval;
Chris@23 52 #endif
Chris@23 53
Chris@23 54 #include "plugguard.h"
Chris@23 55 _VAMP_SDK_PLUGSPACE_BEGIN(RealTime.h)
Chris@23 56
Chris@23 57 namespace Vamp {
Chris@23 58
Chris@23 59 /**
Chris@23 60 * \class RealTime RealTime.h <vamp-sdk/RealTime.h>
Chris@23 61 *
Chris@23 62 * RealTime represents time values to nanosecond precision
Chris@23 63 * with accurate arithmetic and frame-rate conversion functions.
Chris@23 64 */
Chris@23 65
Chris@23 66 struct RealTime
Chris@23 67 {
Chris@23 68 int sec;
Chris@23 69 int nsec;
Chris@23 70
Chris@23 71 int usec() const { return nsec / 1000; }
Chris@23 72 int msec() const { return nsec / 1000000; }
Chris@23 73
Chris@23 74 RealTime(): sec(0), nsec(0) {}
Chris@23 75 RealTime(int s, int n);
Chris@23 76
Chris@23 77 RealTime(const RealTime &r) :
Chris@23 78 sec(r.sec), nsec(r.nsec) { }
Chris@23 79
Chris@23 80 static RealTime fromSeconds(double sec);
Chris@23 81 static RealTime fromMilliseconds(int msec);
Chris@23 82
Chris@23 83 #ifndef _WIN32
Chris@23 84 static RealTime fromTimeval(const struct timeval &);
Chris@23 85 #endif
Chris@23 86
Chris@23 87 RealTime &operator=(const RealTime &r) {
Chris@23 88 sec = r.sec; nsec = r.nsec; return *this;
Chris@23 89 }
Chris@23 90
Chris@23 91 RealTime operator+(const RealTime &r) const {
Chris@23 92 return RealTime(sec + r.sec, nsec + r.nsec);
Chris@23 93 }
Chris@23 94 RealTime operator-(const RealTime &r) const {
Chris@23 95 return RealTime(sec - r.sec, nsec - r.nsec);
Chris@23 96 }
Chris@23 97 RealTime operator-() const {
Chris@23 98 return RealTime(-sec, -nsec);
Chris@23 99 }
Chris@23 100
Chris@23 101 bool operator <(const RealTime &r) const {
Chris@23 102 if (sec == r.sec) return nsec < r.nsec;
Chris@23 103 else return sec < r.sec;
Chris@23 104 }
Chris@23 105
Chris@23 106 bool operator >(const RealTime &r) const {
Chris@23 107 if (sec == r.sec) return nsec > r.nsec;
Chris@23 108 else return sec > r.sec;
Chris@23 109 }
Chris@23 110
Chris@23 111 bool operator==(const RealTime &r) const {
Chris@23 112 return (sec == r.sec && nsec == r.nsec);
Chris@23 113 }
Chris@23 114
Chris@23 115 bool operator!=(const RealTime &r) const {
Chris@23 116 return !(r == *this);
Chris@23 117 }
Chris@23 118
Chris@23 119 bool operator>=(const RealTime &r) const {
Chris@23 120 if (sec == r.sec) return nsec >= r.nsec;
Chris@23 121 else return sec >= r.sec;
Chris@23 122 }
Chris@23 123
Chris@23 124 bool operator<=(const RealTime &r) const {
Chris@23 125 if (sec == r.sec) return nsec <= r.nsec;
Chris@23 126 else return sec <= r.sec;
Chris@23 127 }
Chris@23 128
Chris@23 129 RealTime operator/(int d) const;
Chris@23 130
Chris@23 131 /**
Chris@23 132 * Return the ratio of two times.
Chris@23 133 */
Chris@23 134 double operator/(const RealTime &r) const;
Chris@23 135
Chris@23 136 /**
Chris@23 137 * Return a human-readable debug-type string to full precision
Chris@23 138 * (probably not a format to show to a user directly)
Chris@23 139 */
Chris@23 140 std::string toString() const;
Chris@23 141
Chris@23 142 /**
Chris@23 143 * Return a user-readable string to the nearest millisecond
Chris@23 144 * in a form like HH:MM:SS.mmm
Chris@23 145 */
Chris@23 146 std::string toText(bool fixedDp = false) const;
Chris@23 147
Chris@23 148 /**
Chris@23 149 * Convert a RealTime into a sample frame at the given sample rate.
Chris@23 150 */
Chris@23 151 static long realTime2Frame(const RealTime &r, unsigned int sampleRate);
Chris@23 152
Chris@23 153 /**
Chris@23 154 * Convert a sample frame at the given sample rate into a RealTime.
Chris@23 155 */
Chris@23 156 static RealTime frame2RealTime(long frame, unsigned int sampleRate);
Chris@23 157
Chris@23 158 static const RealTime zeroTime;
Chris@23 159 };
Chris@23 160
Chris@23 161 std::ostream &operator<<(std::ostream &out, const RealTime &rt);
Chris@23 162
Chris@23 163 }
Chris@23 164
Chris@23 165 _VAMP_SDK_PLUGSPACE_END(RealTime.h)
Chris@23 166
Chris@23 167 #endif