| 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_DECODER_H_ | 5 #ifndef MEDIA_CAST_AUDIO_RECEIVER_AUDIO_DECODER_H_ |
| 6 #define MEDIA_CAST_AUDIO_RECEIVER_AUDIO_DECODER_H_ | 6 #define MEDIA_CAST_AUDIO_RECEIVER_AUDIO_DECODER_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/synchronization/lock.h" | 9 #include "base/synchronization/lock.h" |
| 10 #include "media/cast/cast_config.h" | 10 #include "media/cast/cast_config.h" |
| 11 #include "media/cast/cast_environment.h" | 11 #include "media/cast/cast_environment.h" |
| 12 #include "media/cast/framer/cast_message_builder.h" | 12 #include "media/cast/framer/cast_message_builder.h" |
| 13 #include "media/cast/framer/frame_id_map.h" | 13 #include "media/cast/framer/frame_id_map.h" |
| 14 #include "media/cast/rtp_common/rtp_defines.h" | 14 #include "media/cast/rtp_receiver/rtp_receiver_defines.h" |
| 15 | 15 |
| 16 namespace webrtc { | 16 namespace webrtc { |
| 17 class AudioCodingModule; | 17 class AudioCodingModule; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace media { | 20 namespace media { |
| 21 namespace cast { | 21 namespace cast { |
| 22 | 22 |
| 23 typedef std::map<uint32, uint32> FrameIdRtpTimestampMap; | 23 typedef std::map<uint32, uint32> FrameIdRtpTimestampMap; |
| 24 | 24 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 FrameIdRtpTimestampMap frame_id_rtp_timestamp_map_; | 62 FrameIdRtpTimestampMap frame_id_rtp_timestamp_map_; |
| 63 uint32 last_played_out_timestamp_; | 63 uint32 last_played_out_timestamp_; |
| 64 | 64 |
| 65 DISALLOW_COPY_AND_ASSIGN(AudioDecoder); | 65 DISALLOW_COPY_AND_ASSIGN(AudioDecoder); |
| 66 }; | 66 }; |
| 67 | 67 |
| 68 } // namespace cast | 68 } // namespace cast |
| 69 } // namespace media | 69 } // namespace media |
| 70 | 70 |
| 71 #endif // MEDIA_CAST_AUDIO_RECEIVER_AUDIO_DECODER_H_ | 71 #endif // MEDIA_CAST_AUDIO_RECEIVER_AUDIO_DECODER_H_ |
| OLD | NEW |