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

Unified Diff: webrtc/modules/include/module_common_types.h

Issue 2265023002: Revert of Add pps id and sps id parsing to the h.264 depacketizer. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/include/module_common_types.h
diff --git a/webrtc/modules/include/module_common_types.h b/webrtc/modules/include/module_common_types.h
index 4e431105966e22448c5c94b20a896e14221abe77..89144af6438d614bb961f6a411456918b4bc3ccc 100644
--- a/webrtc/modules/include/module_common_types.h
+++ b/webrtc/modules/include/module_common_types.h
@@ -260,14 +260,6 @@
// that was too large to fit into a single packet.
};
-struct NaluInfo {
- uint8_t type;
- int sps_id;
- int pps_id;
-};
-
-const size_t kMaxNalusPerPacket = 10;
-
struct RTPVideoHeaderH264 {
uint8_t nalu_type; // The NAL unit type. If this is a header for a
// fragmented packet, it's the NAL unit type of
@@ -275,8 +267,6 @@
// aggregated packet, it's the NAL unit type of
// the first NAL unit in the packet.
H264PacketizationTypes packetization_type;
- NaluInfo nalus[kMaxNalusPerPacket];
- size_t nalus_length;
};
union RTPVideoTypeHeader {
« no previous file with comments | « webrtc/common_video/h264/sps_vui_rewriter_unittest.cc ('k') | webrtc/modules/rtp_rtcp/source/rtp_format_h264.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698