| 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_H264_SPS_PPS_TRACKER_H_ | 11 #ifndef WEBRTC_MODULES_VIDEO_CODING_H264_SPS_PPS_TRACKER_H_ |
| 12 #define WEBRTC_MODULES_VIDEO_CODING_H264_SPS_PPS_TRACKER_H_ | 12 #define WEBRTC_MODULES_VIDEO_CODING_H264_SPS_PPS_TRACKER_H_ |
| 13 | 13 |
| 14 #include <cstdint> | 14 #include <cstdint> |
| 15 #include <map> | 15 #include <map> |
| 16 #include <memory> | 16 #include <memory> |
| 17 | 17 |
| 18 #include "webrtc/modules/include/module_common_types.h" | 18 #include "webrtc/modules/include/module_common_types.h" |
| 19 | 19 |
| 20 namespace webrtc { | 20 namespace webrtc { |
| 21 | 21 |
| 22 class VCMPacket; | 22 class VCMPacket; |
| 23 | 23 |
| 24 namespace video_coding { | 24 namespace video_coding { |
| 25 | 25 |
| 26 class H264SpsPpsTracker { | 26 class H264SpsPpsTracker { |
| 27 public: | 27 public: |
| 28 bool CopyAndFixBitstream(VCMPacket* packet); | 28 enum PacketAction { kInsert, kDrop, kRequestKeyframe }; |
| 29 |
| 30 PacketAction CopyAndFixBitstream(VCMPacket* packet); |
| 29 | 31 |
| 30 private: | 32 private: |
| 31 struct PpsInfo { | 33 struct PpsInfo { |
| 32 int sps_id = -1; | 34 int sps_id = -1; |
| 33 size_t size = 0; | 35 size_t size = 0; |
| 34 std::unique_ptr<uint8_t[]> data; | 36 std::unique_ptr<uint8_t[]> data; |
| 35 }; | 37 }; |
| 36 | 38 |
| 37 struct SpsInfo { | 39 struct SpsInfo { |
| 38 size_t size = 0; | 40 size_t size = 0; |
| 39 std::unique_ptr<uint8_t[]> data; | 41 std::unique_ptr<uint8_t[]> data; |
| 40 }; | 42 }; |
| 41 | 43 |
| 42 std::map<uint32_t, PpsInfo> pps_data_; | 44 std::map<uint32_t, PpsInfo> pps_data_; |
| 43 std::map<uint32_t, SpsInfo> sps_data_; | 45 std::map<uint32_t, SpsInfo> sps_data_; |
| 44 }; | 46 }; |
| 45 | 47 |
| 46 } // namespace video_coding | 48 } // namespace video_coding |
| 47 } // namespace webrtc | 49 } // namespace webrtc |
| 48 | 50 |
| 49 #endif // WEBRTC_MODULES_VIDEO_CODING_H264_SPS_PPS_TRACKER_H_ | 51 #endif // WEBRTC_MODULES_VIDEO_CODING_H264_SPS_PPS_TRACKER_H_ |
| OLD | NEW |