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 c7340809a7fe7efa81b863d89589af6bc86ca361..f4ea8ae0811542f16974427acaf17b92dead33e2 100644 |
--- a/webrtc/modules/video_coding/decoding_state.h |
+++ b/webrtc/modules/video_coding/decoding_state.h |
@@ -11,16 +11,11 @@ |
#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; |
@@ -66,7 +61,6 @@ |
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. |
@@ -81,8 +75,6 @@ |
// 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_; |
}; |
} // namespace webrtc |