OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef MEDIA_FORMATS_MP2T_TS_SECTION_PES_H_ | 5 #ifndef MEDIA_FORMATS_MP2T_TS_SECTION_PES_H_ |
6 #define MEDIA_FORMATS_MP2T_TS_SECTION_PES_H_ | 6 #define MEDIA_FORMATS_MP2T_TS_SECTION_PES_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 | 56 |
57 // Used to unroll PTS and DTS. | 57 // Used to unroll PTS and DTS. |
58 TimestampUnroller* const timestamp_unroller_; | 58 TimestampUnroller* const timestamp_unroller_; |
59 | 59 |
60 DISALLOW_COPY_AND_ASSIGN(TsSectionPes); | 60 DISALLOW_COPY_AND_ASSIGN(TsSectionPes); |
61 }; | 61 }; |
62 | 62 |
63 } // namespace mp2t | 63 } // namespace mp2t |
64 } // namespace media | 64 } // namespace media |
65 | 65 |
66 #endif | 66 #endif // MEDIA_FORMATS_MP2T_TS_SECTION_PES_H_ |
67 | |
OLD | NEW |