| Index: webrtc/modules/video_coding/frame_object.cc
|
| diff --git a/webrtc/modules/video_coding/frame_object.cc b/webrtc/modules/video_coding/frame_object.cc
|
| index 363c8a7035738d1f1e62beaf82313f729cb99b6c..7a05d28d56e06229b5265596ea6a1ab973dd6881 100644
|
| --- a/webrtc/modules/video_coding/frame_object.cc
|
| +++ b/webrtc/modules/video_coding/frame_object.cc
|
| @@ -16,7 +16,6 @@ namespace webrtc {
|
| namespace video_coding {
|
|
|
| RtpFrameObject::RtpFrameObject(PacketBuffer* packet_buffer,
|
| - uint16_t picture_id,
|
| uint16_t first_packet,
|
| uint16_t last_packet)
|
| : packet_buffer_(packet_buffer),
|
| @@ -27,18 +26,14 @@ RtpFrameObject::~RtpFrameObject() {
|
| packet_buffer_->ReturnFrame(this);
|
| }
|
|
|
| -uint16_t RtpFrameObject::first_packet() const {
|
| +uint16_t RtpFrameObject::first_seq_num() const {
|
| return first_packet_;
|
| }
|
|
|
| -uint16_t RtpFrameObject::last_packet() const {
|
| +uint16_t RtpFrameObject::last_seq_num() const {
|
| return last_packet_;
|
| }
|
|
|
| -uint16_t RtpFrameObject::picture_id() const {
|
| - return picture_id_;
|
| -}
|
| -
|
| bool RtpFrameObject::GetBitstream(uint8_t* destination) const {
|
| return packet_buffer_->GetBitstream(*this, destination);
|
| }
|
|
|