summaryrefslogtreecommitdiff
path: root/chromium/media/base/timestamp_constants.h
blob: a38fc44667b3ac914113338e89ac49b18e9b91db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef MEDIA_BASE_TIMESTAMP_CONSTANTS_H_
#define MEDIA_BASE_TIMESTAMP_CONSTANTS_H_

#include <stdint.h>

#include <limits>

#include "base/time/time.h"

namespace media {

// Indicates an invalid or missing timestamp.
constexpr base::TimeDelta kNoTimestamp =
    base::TimeDelta::FromMicroseconds(std::numeric_limits<int64_t>::min());

// Represents an infinite stream duration.
constexpr base::TimeDelta kInfiniteDuration =
    base::TimeDelta::FromMicroseconds(std::numeric_limits<int64_t>::max());

}  // namespace media

#endif  // MEDIA_BASE_TIMESTAMP_CONSTANTS_H_