Index: webrtc/modules/video_coding/packet.h |
diff --git a/webrtc/modules/video_coding/packet.h b/webrtc/modules/video_coding/packet.h |
index 16f568504e6f34577ae0046d4d634212883ad002..54d08c16baae876448577e43a2cc7de879c7c8c2 100644 |
--- a/webrtc/modules/video_coding/packet.h |
+++ b/webrtc/modules/video_coding/packet.h |
@@ -39,7 +39,10 @@ class VCMPacket { |
FrameType frameType; |
VideoCodecType codec; |
- bool isFirstPacket; // Is this first packet in a frame. |
+ union { |
+ RTC_DEPRECATED bool isFirstPacket; // Is this first packet in a frame. |
danilchap
2017/01/04 10:13:27
#include "webrtc/base/deprecation.h"
to be safer
johan
2017/01/04 15:21:32
Acknowledged.
|
+ bool is_first_packet_in_frame; |
+ }; |
VCMNaluCompleteness completeNALU; // Default is kNaluIncomplete. |
bool insertStartCode; // True if a start code should be inserted before this |
// packet. |