| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_BASE_AUDIO_TIMESTAMP_HELPER_H_ | 5 #ifndef MEDIA_BASE_AUDIO_TIMESTAMP_HELPER_H_ |
| 6 #define MEDIA_BASE_AUDIO_TIMESTAMP_HELPER_H_ | 6 #define MEDIA_BASE_AUDIO_TIMESTAMP_HELPER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 base::TimeDelta base_timestamp_; | 65 base::TimeDelta base_timestamp_; |
| 66 | 66 |
| 67 // Number of frames accumulated by AddFrames() calls. | 67 // Number of frames accumulated by AddFrames() calls. |
| 68 int64_t frame_count_; | 68 int64_t frame_count_; |
| 69 | 69 |
| 70 DISALLOW_IMPLICIT_CONSTRUCTORS(AudioTimestampHelper); | 70 DISALLOW_IMPLICIT_CONSTRUCTORS(AudioTimestampHelper); |
| 71 }; | 71 }; |
| 72 | 72 |
| 73 } // namespace media | 73 } // namespace media |
| 74 | 74 |
| 75 #endif | 75 #endif // MEDIA_BASE_AUDIO_TIMESTAMP_HELPER_H_ |
| OLD | NEW |