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 bd705739e2f490e568692e94571b9142d6a0406b..a5ea5c8e2d7da8327573eb74b1795087dd8f0085 100644 |
--- a/webrtc/modules/include/module_common_types.h |
+++ b/webrtc/modules/include/module_common_types.h |
@@ -273,19 +273,14 @@ |
const size_t kMaxNalusPerPacket = 10; |
struct RTPVideoHeaderH264 { |
- // The NAL unit type. If this is a header for a |
- // fragmented packet, it's the NAL unit type of |
- // the original data. If this is the header for an |
- // aggregated packet, it's the NAL unit type of |
- // the first NAL unit in the packet. |
- uint8_t nalu_type; |
- // The packetization type of this buffer - single, aggregated or fragmented. |
+ uint8_t nalu_type; // The NAL unit type. If this is a header for a |
+ // fragmented packet, it's the NAL unit type of |
+ // the original data. If this is the header for an |
+ // 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; |
- // The packetization mode of this transport. Packetization mode |
- // determines which packetization types are allowed when packetizing. |
- H264PacketizationMode packetization_mode; |
}; |
union RTPVideoTypeHeader { |