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_SPLICER_H_ | 5 #ifndef MEDIA_BASE_AUDIO_SPLICER_H_ |
6 #define MEDIA_BASE_AUDIO_SPLICER_H_ | 6 #define MEDIA_BASE_AUDIO_SPLICER_H_ |
7 | 7 |
| 8 #include "base/macros.h" |
8 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
9 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
10 #include "base/time/time.h" | 11 #include "base/time/time.h" |
11 #include "media/audio/audio_parameters.h" | 12 #include "media/audio/audio_parameters.h" |
12 #include "media/base/media_export.h" | 13 #include "media/base/media_export.h" |
13 #include "media/base/timestamp_constants.h" | 14 #include "media/base/timestamp_constants.h" |
14 | 15 |
15 namespace media { | 16 namespace media { |
16 | 17 |
17 class AudioBuffer; | 18 class AudioBuffer; |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 // Whether all buffers which should go into |pre_splice_sanitizer_| have been | 118 // Whether all buffers which should go into |pre_splice_sanitizer_| have been |
118 // received. If true, buffers should now be put in |post_splice_sanitizer_|. | 119 // received. If true, buffers should now be put in |post_splice_sanitizer_|. |
119 bool have_all_pre_splice_buffers_; | 120 bool have_all_pre_splice_buffers_; |
120 | 121 |
121 DISALLOW_IMPLICIT_CONSTRUCTORS(AudioSplicer); | 122 DISALLOW_IMPLICIT_CONSTRUCTORS(AudioSplicer); |
122 }; | 123 }; |
123 | 124 |
124 } // namespace media | 125 } // namespace media |
125 | 126 |
126 #endif | 127 #endif |
OLD | NEW |