MediaTime.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /*
  2. * Copyright (C) 2012 Apple Inc. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. *
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
  14. * its contributors may be used to endorse or promote products derived
  15. * from this software without specific prior written permission.
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
  18. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  19. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  20. * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
  21. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  22. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  23. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  24. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  25. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  26. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27. */
  28. #include "FastAllocBase.h"
  29. #include <cmath>
  30. #include <limits>
  31. #include <math.h>
  32. #include <stdint.h>
  33. namespace WTF {
  34. class WTF_EXPORT_PRIVATE MediaTime {
  35. WTF_MAKE_FAST_ALLOCATED;
  36. public:
  37. enum {
  38. Valid = 1 << 0,
  39. HasBeenRounded = 1 << 1,
  40. PositiveInfinite = 1 << 2,
  41. NegativeInfinite = 1 << 3,
  42. Indefinite = 1 << 4,
  43. };
  44. MediaTime();
  45. MediaTime(int64_t value, int32_t scale = DefaultTimeScale, uint32_t flags = Valid);
  46. MediaTime(const MediaTime& rhs);
  47. ~MediaTime();
  48. static MediaTime createWithFloat(float floatTime, int32_t timeScale = DefaultTimeScale);
  49. static MediaTime createWithDouble(double doubleTime, int32_t timeScale = DefaultTimeScale);
  50. float toFloat() const;
  51. double toDouble() const;
  52. MediaTime& operator=(const MediaTime& rhs);
  53. MediaTime operator+(const MediaTime& rhs) const;
  54. MediaTime operator-(const MediaTime& rhs) const;
  55. bool operator<(const MediaTime& rhs) const;
  56. bool operator>(const MediaTime& rhs) const;
  57. bool operator==(const MediaTime& rhs) const;
  58. bool operator>=(const MediaTime& rhs) const;
  59. bool operator<=(const MediaTime& rhs) const;
  60. typedef enum {
  61. LessThan = -1,
  62. EqualTo = 0,
  63. GreaterThan = 1,
  64. } ComparisonFlags;
  65. ComparisonFlags compare(const MediaTime& rhs) const;
  66. bool isValid() const { return m_timeFlags & Valid; }
  67. bool isInvalid() const { return !isValid(); }
  68. bool hasBeenRounded() const { return m_timeFlags & HasBeenRounded; }
  69. bool isPositiveInfinite() const { return m_timeFlags & PositiveInfinite; }
  70. bool isNegativeInfinite() const { return m_timeFlags & NegativeInfinite; }
  71. bool isIndefinite() const { return m_timeFlags & Indefinite; }
  72. static const MediaTime& zeroTime();
  73. static const MediaTime& invalidTime();
  74. static const MediaTime& positiveInfiniteTime();
  75. static const MediaTime& negativeInfiniteTime();
  76. static const MediaTime& indefiniteTime();
  77. const int64_t& timeValue() const { return m_timeValue; }
  78. const int32_t& timeScale() const { return m_timeScale; }
  79. friend WTF_EXPORT_PRIVATE MediaTime abs(const MediaTime& rhs);
  80. private:
  81. static const int32_t DefaultTimeScale = 6000;
  82. static const int32_t MaximumTimeScale;
  83. void setTimeScale(int32_t);
  84. int64_t m_timeValue;
  85. int32_t m_timeScale;
  86. uint32_t m_timeFlags;
  87. };
  88. WTF_EXPORT_PRIVATE extern MediaTime abs(const MediaTime& rhs);
  89. }
  90. using WTF::MediaTime;
  91. using WTF::abs;