Remove deprecated isFirstPacket member name

Original rename .isFirstPacket to .is_first_packet_in_frame
was done in https://codereview.webrtc.org/2614503002

BUG=None

Review-Url: https://codereview.webrtc.org/2895473004
Cr-Commit-Position: refs/heads/master@{#18247}
This commit is contained in:
danilchap
2017-05-23 11:06:56 -07:00
committed by Commit bot
parent 70f134bb70
commit b34f6a8520
2 changed files with 2 additions and 9 deletions

View File

@ -11,7 +11,6 @@
#ifndef WEBRTC_MODULES_VIDEO_CODING_PACKET_H_
#define WEBRTC_MODULES_VIDEO_CODING_PACKET_H_
#include "webrtc/base/deprecation.h"
#include "webrtc/modules/include/module_common_types.h"
#include "webrtc/modules/video_coding/jitter_buffer_common.h"
#include "webrtc/typedefs.h"
@ -40,10 +39,7 @@ class VCMPacket {
FrameType frameType;
VideoCodecType codec;
union {
RTC_DEPRECATED bool isFirstPacket; // Is this first packet in a frame.
bool is_first_packet_in_frame;
};
bool is_first_packet_in_frame;
VCMNaluCompleteness completeNALU; // Default is kNaluIncomplete.
bool insertStartCode; // True if a start code should be inserted before this
// packet.