| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 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 |
| 11 #include <memory> | 11 #include <memory> |
| 12 | 12 |
| 13 #include "webrtc/modules/rtp_rtcp/source/rtp_format_vp8.h" |
| 14 #include "webrtc/modules/rtp_rtcp/source/rtp_format_vp8_test_helper.h" |
| 13 #include "webrtc/test/gmock.h" | 15 #include "webrtc/test/gmock.h" |
| 14 #include "webrtc/test/gtest.h" | 16 #include "webrtc/test/gtest.h" |
| 15 #include "webrtc/modules/rtp_rtcp/source/rtp_format_vp8.h" | |
| 16 #include "webrtc/modules/rtp_rtcp/source/rtp_format_vp8_test_helper.h" | |
| 17 #include "webrtc/typedefs.h" | 17 #include "webrtc/typedefs.h" |
| 18 | 18 |
| 19 #define CHECK_ARRAY_SIZE(expected_size, array) \ | 19 #define CHECK_ARRAY_SIZE(expected_size, array) \ |
| 20 static_assert(expected_size == sizeof(array) / sizeof(array[0]), \ | 20 static_assert(expected_size == sizeof(array) / sizeof(array[0]), \ |
| 21 "check array size"); | 21 "check array size"); |
| 22 | 22 |
| 23 namespace webrtc { | 23 namespace webrtc { |
| 24 namespace { | 24 namespace { |
| 25 // Payload descriptor | 25 // Payload descriptor |
| 26 // 0 1 2 3 4 5 6 7 | 26 // 0 1 2 3 4 5 6 7 |
| (...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 595 input_header.layerSync); | 595 input_header.layerSync); |
| 596 } | 596 } |
| 597 | 597 |
| 598 TEST_F(RtpDepacketizerVp8Test, TestEmptyPayload) { | 598 TEST_F(RtpDepacketizerVp8Test, TestEmptyPayload) { |
| 599 // Using a wild pointer to crash on accesses from inside the depacketizer. | 599 // Using a wild pointer to crash on accesses from inside the depacketizer. |
| 600 uint8_t* garbage_ptr = reinterpret_cast<uint8_t*>(0x4711); | 600 uint8_t* garbage_ptr = reinterpret_cast<uint8_t*>(0x4711); |
| 601 RtpDepacketizer::ParsedPayload payload; | 601 RtpDepacketizer::ParsedPayload payload; |
| 602 EXPECT_FALSE(depacketizer_->Parse(&payload, garbage_ptr, 0)); | 602 EXPECT_FALSE(depacketizer_->Parse(&payload, garbage_ptr, 0)); |
| 603 } | 603 } |
| 604 } // namespace webrtc | 604 } // namespace webrtc |
| OLD | NEW |