RtpFrameObject now takes an EncodedImageBuffer in its ctor.
Bug: webrtc:10979 Change-Id: Ibc8b4a524ca95b5faa8850a41df8f2f0136a2969 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/153666 Commit-Queue: Philip Eliasson <philipel@webrtc.org> Reviewed-by: Sam Zackrisson <saza@webrtc.org> Reviewed-by: Niels Moller <nisse@webrtc.org> Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org> Cr-Commit-Position: refs/heads/master@{#29251}
This commit is contained in:
@ -23,7 +23,6 @@ class PacketBuffer;
|
||||
|
||||
class RtpFrameObject : public EncodedFrame {
|
||||
public:
|
||||
// TODO(philipel): Update the ctor to take an EncodedImageBuffer.
|
||||
RtpFrameObject(PacketBuffer* packet_buffer,
|
||||
uint16_t first_seq_num,
|
||||
uint16_t last_seq_num,
|
||||
@ -31,7 +30,8 @@ class RtpFrameObject : public EncodedFrame {
|
||||
int times_nacked,
|
||||
int64_t first_packet_received_time,
|
||||
int64_t last_packet_received_time,
|
||||
RtpPacketInfos packet_infos);
|
||||
RtpPacketInfos packet_infos,
|
||||
rtc::scoped_refptr<EncodedImageBuffer> image_buffer);
|
||||
|
||||
~RtpFrameObject() override;
|
||||
uint16_t first_seq_num() const;
|
||||
|
||||
Reference in New Issue
Block a user