| 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 #include "media/cast/logging/log_deserializer.h" | 5 #include "media/cast/logging/log_deserializer.h" |
| 6 | 6 |
| 7 #include <stdint.h> |
| 8 |
| 7 #include <utility> | 9 #include <utility> |
| 8 | 10 |
| 9 #include "base/big_endian.h" | 11 #include "base/big_endian.h" |
| 10 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 11 #include "third_party/zlib/zlib.h" | 13 #include "third_party/zlib/zlib.h" |
| 12 | 14 |
| 13 using media::cast::FrameEventMap; | 15 using media::cast::FrameEventMap; |
| 14 using media::cast::PacketEventMap; | 16 using media::cast::PacketEventMap; |
| 15 using media::cast::RtpTimestamp; | 17 using media::cast::RtpTimestamp; |
| 16 using media::cast::proto::AggregatedFrameEvent; | 18 using media::cast::proto::AggregatedFrameEvent; |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 } else { | 244 } else { |
| 243 return DoDeserializeEvents(data, data_bytes, audio_log, video_log); | 245 return DoDeserializeEvents(data, data_bytes, audio_log, video_log); |
| 244 } | 246 } |
| 245 } | 247 } |
| 246 | 248 |
| 247 DeserializedLog::DeserializedLog() {} | 249 DeserializedLog::DeserializedLog() {} |
| 248 DeserializedLog::~DeserializedLog() {} | 250 DeserializedLog::~DeserializedLog() {} |
| 249 | 251 |
| 250 } // namespace cast | 252 } // namespace cast |
| 251 } // namespace media | 253 } // namespace media |
| OLD | NEW |