Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(455)

Side by Side Diff: webrtc/test/rtp_file_writer.cc

Issue 1345983009: Revert of Tool to convert RtcEventLog files to RtpDump format. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/video/rtc_event_log2rtp_dump.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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);
43 uint16_t plen = static_cast<uint16_t>(packet->original_length); 44 uint16_t plen = static_cast<uint16_t>(packet->original_length);
44 uint32_t offset = packet->time_ms; 45 uint32_t offset = packet->time_ms;
45 RTC_CHECK(WriteUint16(len)); 46 RTC_CHECK(WriteUint16(len));
46 RTC_CHECK(WriteUint16(plen)); 47 RTC_CHECK(WriteUint16(plen));
47 RTC_CHECK(WriteUint32(offset)); 48 RTC_CHECK(WriteUint32(offset));
48 return fwrite(packet->data, sizeof(uint8_t), packet->length, file_) == 49 return fwrite(packet->data, sizeof(uint8_t), packet->length, file_) ==
49 packet->length; 50 packet->length;
50 } 51 }
51 52
52 private: 53 private:
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 switch (format) { 100 switch (format) {
100 case kRtpDump: 101 case kRtpDump:
101 return new RtpDumpWriter(file); 102 return new RtpDumpWriter(file);
102 } 103 }
103 fclose(file); 104 fclose(file);
104 return NULL; 105 return NULL;
105 } 106 }
106 107
107 } // namespace test 108 } // namespace test
108 } // namespace webrtc 109 } // namespace webrtc
OLDNEW
« no previous file with comments | « no previous file | webrtc/video/rtc_event_log2rtp_dump.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698