Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(146)

Side by Side Diff: webrtc/modules/rtp_rtcp/source/h264_sps_parser.h

Issue 1362503003: Use suffixed {uint,int}{8,16,32,64}_t types. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase + revert basictypes.h (to be landed separately just in case of a revert due to unexpected us… Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/h264_bitstream_parser.cc ('k') | webrtc/modules/rtp_rtcp/source/h264_sps_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698