Use suffixed {uint,int}{8,16,32,64}_t types.

Removes the use of uint8, etc. in favor of uint8_t.

BUG=webrtc:5024
R=henrik.lundin@webrtc.org, henrikg@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org

Review URL: https://codereview.webrtc.org/1362503003 .

Cr-Commit-Position: refs/heads/master@{#10196}
This commit is contained in:
Peter Boström
2015-10-07 12:23:21 +02:00
parent 8d15bd6dab
commit 0c4e06b4c6
339 changed files with 4023 additions and 3764 deletions

View File

@ -19,18 +19,18 @@ namespace webrtc {
// Currently, only resolution is read without being ignored.
class H264SpsParser {
public:
H264SpsParser(const uint8* sps, size_t byte_length);
H264SpsParser(const uint8_t* sps, size_t byte_length);
// Parses the SPS to completion. Returns true if the SPS was parsed correctly.
bool Parse();
uint16 width() { return width_; }
uint16 height() { return height_; }
uint16_t width() { return width_; }
uint16_t height() { return height_; }
private:
const uint8* const sps_;
const uint8_t* const sps_;
const size_t byte_length_;
uint16 width_;
uint16 height_;
uint16_t width_;
uint16_t height_;
};
} // namespace webrtc