Index: webrtc/modules/video_coding/packet.h |
diff --git a/webrtc/modules/video_coding/packet.h b/webrtc/modules/video_coding/packet.h |
index b77c1df0396a11ea63beab56f0086ecee2224ccd..d7a9a95df8ba22947601c58808abb27dfe788bbd 100644 |
--- a/webrtc/modules/video_coding/packet.h |
+++ b/webrtc/modules/video_coding/packet.h |
@@ -39,6 +39,7 @@ class VCMPacket { |
const uint8_t* dataPtr; |
size_t sizeBytes; |
bool markerBit; |
+ int timesNacked; |
stefan-webrtc
2016/05/23 13:01:25
Could you align these members so that they are fol
philipel
2016/05/23 13:34:18
You mean change the format of the variable names?
|
FrameType frameType; |
VideoCodecType codec; |
@@ -51,6 +52,7 @@ class VCMPacket { |
int height; |
RTPVideoHeader codecSpecificHeader; |
+ |
stefan-webrtc
2016/05/23 13:01:24
Remove one empty line
philipel
2016/05/23 13:34:18
Done.
|
protected: |
void CopyCodecSpecifics(const RTPVideoHeader& videoHeader); |
}; |