Shaka Packager SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends
range.h
1 // Copyright 2017 Google Inc. 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 <stdint.h>
13 
14 namespace shaka {
15 namespace media {
16 
19 struct 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_