| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 } | 33 } |
| 34 virtual ~RtpDumpWriter() { | 34 virtual ~RtpDumpWriter() { |
| 35 if (file_ != NULL) { | 35 if (file_ != NULL) { |
| 36 fclose(file_); | 36 fclose(file_); |
| 37 file_ = NULL; | 37 file_ = NULL; |
| 38 } | 38 } |
| 39 } | 39 } |
| 40 | 40 |
| 41 bool WritePacket(const RtpPacket* packet) override { | 41 bool WritePacket(const RtpPacket* packet) override { |
| 42 uint16_t len = static_cast<uint16_t>(packet->length + kPacketHeaderSize); | 42 uint16_t len = static_cast<uint16_t>(packet->length + kPacketHeaderSize); |
| 43 RTC_CHECK_GE(packet->original_length, packet->length); | |
| 44 uint16_t plen = static_cast<uint16_t>(packet->original_length); | 43 uint16_t plen = static_cast<uint16_t>(packet->original_length); |
| 45 uint32_t offset = packet->time_ms; | 44 uint32_t offset = packet->time_ms; |
| 46 RTC_CHECK(WriteUint16(len)); | 45 RTC_CHECK(WriteUint16(len)); |
| 47 RTC_CHECK(WriteUint16(plen)); | 46 RTC_CHECK(WriteUint16(plen)); |
| 48 RTC_CHECK(WriteUint32(offset)); | 47 RTC_CHECK(WriteUint32(offset)); |
| 49 return fwrite(packet->data, sizeof(uint8_t), packet->length, file_) == | 48 return fwrite(packet->data, sizeof(uint8_t), packet->length, file_) == |
| 50 packet->length; | 49 packet->length; |
| 51 } | 50 } |
| 52 | 51 |
| 53 private: | 52 private: |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 switch (format) { | 99 switch (format) { |
| 101 case kRtpDump: | 100 case kRtpDump: |
| 102 return new RtpDumpWriter(file); | 101 return new RtpDumpWriter(file); |
| 103 } | 102 } |
| 104 fclose(file); | 103 fclose(file); |
| 105 return NULL; | 104 return NULL; |
| 106 } | 105 } |
| 107 | 106 |
| 108 } // namespace test | 107 } // namespace test |
| 109 } // namespace webrtc | 108 } // namespace webrtc |
| OLD | NEW |