Shaka Packager SDK
Loading...
Searching...
No Matches
range.h
1// Copyright 2017 Google LLC. All rights reserved.
2//
3// Use of this source code is governed by a BSD-style
4// license that can be found in the LICENSE file or at
5// https://developers.google.com/open-source/licenses/bsd
6//
7// Event handler for events fired by Muxer.
8
9#ifndef PACKAGER_MEDIA_BASE_RANGE_H_
10#define PACKAGER_MEDIA_BASE_RANGE_H_
11
12#include <cstdint>
13
14namespace shaka {
15namespace media {
16
19struct Range {
20 uint64_t start;
21 uint64_t end;
22};
23
24} // namespace media
25} // namespace shaka
26
27#endif // PACKAGER_MEDIA_BASE_RANGE_H_
All the methods that are virtual are virtual for mocking.