OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 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_RTP_RTCP_SOURCE_H264_SPS_PARSER_H_ | 11 #ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_H264_SPS_PARSER_H_ |
12 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_H264_SPS_PARSER_H_ | 12 #define WEBRTC_MODULES_RTP_RTCP_SOURCE_H264_SPS_PARSER_H_ |
13 | 13 |
14 #include "webrtc/base/common.h" | 14 #include "webrtc/base/common.h" |
15 | 15 |
16 namespace webrtc { | 16 namespace webrtc { |
17 | 17 |
18 // A class for parsing out sequence parameter set (SPS) data from an H264 NALU. | 18 // A class for parsing out sequence parameter set (SPS) data from an H264 NALU. |
19 // Currently, only resolution is read without being ignored. | 19 // Currently, only resolution is read without being ignored. |
20 class H264SpsParser { | 20 class H264SpsParser { |
21 public: | 21 public: |
22 H264SpsParser(const uint8* sps, size_t byte_length); | 22 H264SpsParser(const uint8_t* sps, size_t byte_length); |
23 // Parses the SPS to completion. Returns true if the SPS was parsed correctly. | 23 // Parses the SPS to completion. Returns true if the SPS was parsed correctly. |
24 bool Parse(); | 24 bool Parse(); |
25 uint16 width() { return width_; } | 25 uint16_t width() { return width_; } |
26 uint16 height() { return height_; } | 26 uint16_t height() { return height_; } |
27 | 27 |
28 private: | 28 private: |
29 const uint8* const sps_; | 29 const uint8_t* const sps_; |
30 const size_t byte_length_; | 30 const size_t byte_length_; |
31 | 31 |
32 uint16 width_; | 32 uint16_t width_; |
33 uint16 height_; | 33 uint16_t height_; |
34 }; | 34 }; |
35 | 35 |
36 } // namespace webrtc | 36 } // namespace webrtc |
37 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_H264_SPS_PARSER_H_ | 37 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_H264_SPS_PARSER_H_ |
OLD | NEW |