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 #ifndef WEBRTC_MODULES_VIDEO_CODING_FRAME_OBJECT_H_ | 11 #ifndef WEBRTC_MODULES_VIDEO_CODING_FRAME_OBJECT_H_ |
12 #define WEBRTC_MODULES_VIDEO_CODING_FRAME_OBJECT_H_ | 12 #define WEBRTC_MODULES_VIDEO_CODING_FRAME_OBJECT_H_ |
13 | 13 |
14 #include <stddef.h> | 14 #include <stddef.h> |
15 #include <stdint.h> | 15 #include <stdint.h> |
16 | 16 |
17 #include <array> | 17 #include <array> |
18 | 18 |
19 namespace webrtc { | 19 namespace webrtc { |
20 namespace video_coding { | 20 namespace video_coding { |
21 | 21 |
22 class FrameObject { | 22 class FrameObject { |
23 public: | 23 public: |
24 static const uint8_t kMaxFrameReferences = 5; | 24 static const uint8_t kMaxFrameReferences = 5; |
25 | 25 |
| 26 FrameObject(); |
| 27 |
26 virtual bool GetBitstream(uint8_t* destination) const = 0; | 28 virtual bool GetBitstream(uint8_t* destination) const = 0; |
27 virtual ~FrameObject() {} | 29 virtual ~FrameObject() {} |
28 | 30 |
| 31 // The tuple (|picture_id|, |spatial_layer|) uniquely identifies a frame |
| 32 // object. For codec types that don't necessarily have picture ids they |
| 33 // have to be constructed from the header data relevant to that codec. |
29 uint16_t picture_id; | 34 uint16_t picture_id; |
| 35 uint8_t spatial_layer; |
| 36 |
30 size_t num_references; | 37 size_t num_references; |
31 std::array<uint16_t, kMaxFrameReferences> referencesr; | |
32 uint16_t references[kMaxFrameReferences]; | 38 uint16_t references[kMaxFrameReferences]; |
| 39 bool inter_layer_predicted; |
33 }; | 40 }; |
34 | 41 |
35 class PacketBuffer; | 42 class PacketBuffer; |
36 | 43 |
37 class RtpFrameObject : public FrameObject { | 44 class RtpFrameObject : public FrameObject { |
38 public: | 45 public: |
39 RtpFrameObject(PacketBuffer* packet_buffer, | 46 RtpFrameObject(PacketBuffer* packet_buffer, |
40 uint16_t first_packet, | 47 uint16_t first_packet, |
41 uint16_t last_packet); | 48 uint16_t last_packet); |
42 | 49 |
43 ~RtpFrameObject(); | 50 ~RtpFrameObject(); |
44 uint16_t first_seq_num() const; | 51 uint16_t first_seq_num() const; |
45 uint16_t last_seq_num() const; | 52 uint16_t last_seq_num() const; |
46 bool GetBitstream(uint8_t* destination) const override; | 53 bool GetBitstream(uint8_t* destination) const override; |
47 | 54 |
48 private: | 55 private: |
49 PacketBuffer* packet_buffer_; | 56 PacketBuffer* packet_buffer_; |
50 uint16_t first_packet_; | 57 uint16_t first_packet_; |
51 uint16_t last_packet_; | 58 uint16_t last_packet_; |
52 }; | 59 }; |
53 | 60 |
54 } // namespace video_coding | 61 } // namespace video_coding |
55 } // namespace webrtc | 62 } // namespace webrtc |
56 | 63 |
57 #endif // WEBRTC_MODULES_VIDEO_CODING_FRAME_OBJECT_H_ | 64 #endif // WEBRTC_MODULES_VIDEO_CODING_FRAME_OBJECT_H_ |
OLD | NEW |