2014-04-07 17:48:25 +00:00
|
|
|
// Copyright 2014 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file or at
|
|
|
|
// https://developers.google.com/open-source/licenses/bsd
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef MEDIA_BASE_TIMESTAMP_H_
|
|
|
|
#define MEDIA_BASE_TIMESTAMP_H_
|
|
|
|
|
2014-09-30 23:52:58 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include <limits>
|
2014-04-07 17:48:25 +00:00
|
|
|
|
2016-05-20 21:19:33 +00:00
|
|
|
namespace shaka {
|
2014-04-07 17:48:25 +00:00
|
|
|
namespace media {
|
|
|
|
|
2014-09-30 23:52:58 +00:00
|
|
|
const int64_t kNoTimestamp = std::numeric_limits<int64_t>::min();
|
|
|
|
const int64_t kInfiniteDuration = std::numeric_limits<int64_t>::max();
|
2014-04-07 17:48:25 +00:00
|
|
|
|
|
|
|
} // namespace media
|
2016-05-20 21:19:33 +00:00
|
|
|
} // namespace shaka
|
2014-04-07 17:48:25 +00:00
|
|
|
|
|
|
|
#endif // MEDIA_BASE_TIMESTAMP_H_
|