OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #include "webrtc/modules/video_coding/frame_object.h" | 11 #include "webrtc/modules/video_coding/frame_object.h" |
12 #include "webrtc/base/criticalsection.h" | 12 #include "webrtc/base/criticalsection.h" |
13 #include "webrtc/modules/video_coding/packet_buffer.h" | 13 #include "webrtc/modules/video_coding/packet_buffer.h" |
14 | 14 |
15 namespace webrtc { | 15 namespace webrtc { |
16 namespace video_coding { | 16 namespace video_coding { |
17 | 17 |
18 FrameObject::FrameObject() | 18 FrameObject::FrameObject() |
19 : picture_id(0), | 19 : picture_id(0), |
20 spatial_layer(0), | 20 spatial_layer(0), |
21 num_references(0), | 21 num_references(0), |
22 inter_layer_predicted(false) {} | 22 inter_layer_predicted(false) {} |
23 | 23 |
24 RtpFrameObject::RtpFrameObject(PacketBuffer* packet_buffer, | 24 RtpFrameObject::RtpFrameObject(PacketBuffer* packet_buffer, |
25 uint16_t first_packet, | 25 uint16_t first_seq_num, |
26 uint16_t last_packet) | 26 uint16_t last_seq_num) |
27 : packet_buffer_(packet_buffer), | 27 : packet_buffer_(packet_buffer), |
28 first_packet_(first_packet), | 28 first_seq_num_(first_seq_num), |
29 last_packet_(last_packet) {} | 29 last_seq_num_(last_seq_num) { |
| 30 VCMPacket* packet = packet_buffer_->GetPacket(first_seq_num); |
| 31 if (packet) { |
| 32 frame_type_ = packet->frameType; |
| 33 codec_type_ = packet->codec; |
| 34 } |
| 35 } |
30 | 36 |
31 RtpFrameObject::~RtpFrameObject() { | 37 RtpFrameObject::~RtpFrameObject() { |
32 packet_buffer_->ReturnFrame(this); | 38 packet_buffer_->ReturnFrame(this); |
33 } | 39 } |
34 | 40 |
35 uint16_t RtpFrameObject::first_seq_num() const { | 41 uint16_t RtpFrameObject::first_seq_num() const { |
36 return first_packet_; | 42 return first_seq_num_; |
37 } | 43 } |
38 | 44 |
39 uint16_t RtpFrameObject::last_seq_num() const { | 45 uint16_t RtpFrameObject::last_seq_num() const { |
40 return last_packet_; | 46 return last_seq_num_; |
| 47 } |
| 48 |
| 49 FrameType RtpFrameObject::frame_type() const { |
| 50 return frame_type_; |
| 51 } |
| 52 |
| 53 VideoCodecType RtpFrameObject::codec_type() const { |
| 54 return codec_type_; |
41 } | 55 } |
42 | 56 |
43 bool RtpFrameObject::GetBitstream(uint8_t* destination) const { | 57 bool RtpFrameObject::GetBitstream(uint8_t* destination) const { |
44 return packet_buffer_->GetBitstream(*this, destination); | 58 return packet_buffer_->GetBitstream(*this, destination); |
45 } | 59 } |
46 | 60 |
| 61 RTPVideoTypeHeader* RtpFrameObject::GetCodecHeader() const { |
| 62 VCMPacket* packet = packet_buffer_->GetPacket(first_seq_num_); |
| 63 if (!packet) |
| 64 return nullptr; |
| 65 return &packet->codecSpecificHeader.codecHeader; |
| 66 } |
| 67 |
47 } // namespace video_coding | 68 } // namespace video_coding |
48 } // namespace webrtc | 69 } // namespace webrtc |
OLD | NEW |