| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_CAST_AUDIO_RECEIVER_AUDIO_RECEIVER_H_ | 5 #ifndef MEDIA_CAST_AUDIO_RECEIVER_AUDIO_RECEIVER_H_ |
| 6 #define MEDIA_CAST_AUDIO_RECEIVER_AUDIO_RECEIVER_H_ | 6 #define MEDIA_CAST_AUDIO_RECEIVER_AUDIO_RECEIVER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/callback.h" | 9 #include "base/callback.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/threading/non_thread_safe.h" | 13 #include "base/threading/non_thread_safe.h" |
| 14 #include "base/time/tick_clock.h" | 14 #include "base/time/tick_clock.h" |
| 15 #include "base/time/time.h" | 15 #include "base/time/time.h" |
| 16 #include "media/cast/cast_config.h" | 16 #include "media/cast/cast_config.h" |
| 17 #include "media/cast/cast_environment.h" | 17 #include "media/cast/cast_environment.h" |
| 18 #include "media/cast/cast_receiver.h" | 18 #include "media/cast/cast_receiver.h" |
| 19 #include "media/cast/rtcp/rtcp.h" // RtcpCastMessage | 19 #include "media/cast/rtcp/rtcp.h" // RtcpCastMessage |
| 20 #include "media/cast/rtp_common/rtp_defines.h" // RtpCastHeader | 20 #include "media/cast/rtp_receiver/rtp_receiver_defines.h" // RtpCastHeader |
| 21 | 21 |
| 22 namespace crypto { | 22 namespace crypto { |
| 23 class Encryptor; | 23 class Encryptor; |
| 24 } | 24 } |
| 25 | 25 |
| 26 namespace media { | 26 namespace media { |
| 27 namespace cast { | 27 namespace cast { |
| 28 | 28 |
| 29 class AudioDecoder; | 29 class AudioDecoder; |
| 30 class Framer; | 30 class Framer; |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 std::string iv_mask_; | 134 std::string iv_mask_; |
| 135 | 135 |
| 136 std::list<AudioFrameEncodedCallback> queued_encoded_callbacks_; | 136 std::list<AudioFrameEncodedCallback> queued_encoded_callbacks_; |
| 137 std::list<DecodedAudioCallbackData> queued_decoded_callbacks_; | 137 std::list<DecodedAudioCallbackData> queued_decoded_callbacks_; |
| 138 }; | 138 }; |
| 139 | 139 |
| 140 } // namespace cast | 140 } // namespace cast |
| 141 } // namespace media | 141 } // namespace media |
| 142 | 142 |
| 143 #endif // MEDIA_CAST_AUDIO_RECEIVER_AUDIO_RECEIVER_H_ | 143 #endif // MEDIA_CAST_AUDIO_RECEIVER_AUDIO_RECEIVER_H_ |
| OLD | NEW |