Chromium Code Reviews| Index: webrtc/modules/video_coding/decoding_state.h |
| diff --git a/webrtc/modules/video_coding/decoding_state.h b/webrtc/modules/video_coding/decoding_state.h |
| index f4ea8ae0811542f16974427acaf17b92dead33e2..c7340809a7fe7efa81b863d89589af6bc86ca361 100644 |
| --- a/webrtc/modules/video_coding/decoding_state.h |
| +++ b/webrtc/modules/video_coding/decoding_state.h |
| @@ -11,11 +11,16 @@ |
| #ifndef WEBRTC_MODULES_VIDEO_CODING_DECODING_STATE_H_ |
| #define WEBRTC_MODULES_VIDEO_CODING_DECODING_STATE_H_ |
| +#include <map> |
| +#include <set> |
| +#include <vector> |
| + |
| #include "webrtc/typedefs.h" |
| namespace webrtc { |
| // Forward declarations |
| +struct NaluInfo; |
| class VCMFrameBuffer; |
| class VCMPacket; |
| @@ -61,6 +66,7 @@ class VCMDecodingState { |
| bool UsingPictureId(const VCMFrameBuffer* frame) const; |
| bool UsingFlexibleMode(const VCMFrameBuffer* frame) const; |
| bool AheadOfFramesDecodedClearedTo(uint16_t index) const; |
| + bool HaveSpsAndPps(const std::vector<NaluInfo>& nalus) const; |
| // Keep state of last decoded frame. |
| // TODO(mikhal/stefan): create designated classes to handle these types. |
| @@ -75,6 +81,8 @@ class VCMDecodingState { |
| // Used to check references in flexible mode. |
| bool frame_decoded_[kFrameDecodedLength]; |
| uint16_t frame_decoded_cleared_to_; |
| + std::set<int> received_sps_; |
| + std::map<int, int> received_pps_; |
|
philipel
2016/09/15 12:52:46
Can sps/pps id wrap?
stefan-webrtc
2016/09/30 09:36:02
Yes, but when they do they replace the old ones.
|
| }; |
| } // namespace webrtc |