Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(205)

Unified Diff: webrtc/modules/video_coding/frame_object.cc

Issue 1961053002: Logic for finding frame references moved from PacketBuffer to new class (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Includes in order. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/modules/video_coding/frame_object.h ('k') | webrtc/modules/video_coding/packet_buffer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 ea7567c18e8482b8a06c18cc019f99cd1a4f1b0a..1634f89d76c39f296558e250e41f52663625f7d1 100644
--- a/webrtc/modules/video_coding/frame_object.cc
+++ b/webrtc/modules/video_coding/frame_object.cc
@@ -22,27 +22,48 @@ FrameObject::FrameObject()
inter_layer_predicted(false) {}
RtpFrameObject::RtpFrameObject(PacketBuffer* packet_buffer,
- uint16_t first_packet,
- uint16_t last_packet)
+ uint16_t first_seq_num,
+ uint16_t last_seq_num)
: packet_buffer_(packet_buffer),
- first_packet_(first_packet),
- last_packet_(last_packet) {}
+ first_seq_num_(first_seq_num),
+ last_seq_num_(last_seq_num) {
+ VCMPacket* packet = packet_buffer_->GetPacket(first_seq_num);
+ if (packet) {
+ frame_type_ = packet->frameType;
+ codec_type_ = packet->codec;
+ }
+}
RtpFrameObject::~RtpFrameObject() {
packet_buffer_->ReturnFrame(this);
}
uint16_t RtpFrameObject::first_seq_num() const {
- return first_packet_;
+ return first_seq_num_;
}
uint16_t RtpFrameObject::last_seq_num() const {
- return last_packet_;
+ return last_seq_num_;
+}
+
+FrameType RtpFrameObject::frame_type() const {
+ return frame_type_;
+}
+
+VideoCodecType RtpFrameObject::codec_type() const {
+ return codec_type_;
}
bool RtpFrameObject::GetBitstream(uint8_t* destination) const {
return packet_buffer_->GetBitstream(*this, destination);
}
+RTPVideoTypeHeader* RtpFrameObject::GetCodecHeader() const {
+ VCMPacket* packet = packet_buffer_->GetPacket(first_seq_num_);
+ if (!packet)
+ return nullptr;
+ return &packet->codecSpecificHeader.codecHeader;
+}
+
} // namespace video_coding
} // namespace webrtc
« no previous file with comments | « webrtc/modules/video_coding/frame_object.h ('k') | webrtc/modules/video_coding/packet_buffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698