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}
diff --git a/talk/media/base/rtpdataengine.cc b/talk/media/base/rtpdataengine.cc
index 02e4b7c..b2b84b9 100644
--- a/talk/media/base/rtpdataengine.cc
+++ b/talk/media/base/rtpdataengine.cc
@@ -95,7 +95,7 @@
 
 
 RtpDataMediaChannel::~RtpDataMediaChannel() {
-  std::map<uint32, RtpClock*>::const_iterator iter;
+  std::map<uint32_t, RtpClock*>::const_iterator iter;
   for (iter = rtp_clock_by_send_ssrc_.begin();
        iter != rtp_clock_by_send_ssrc_.end();
        ++iter) {
@@ -103,10 +103,9 @@
   }
 }
 
-void RtpClock::Tick(
-    double now, int* seq_num, uint32* timestamp) {
+void RtpClock::Tick(double now, int* seq_num, uint32_t* timestamp) {
   *seq_num = ++last_seq_num_;
-  *timestamp = timestamp_offset_ + static_cast<uint32>(now * clockrate_);
+  *timestamp = timestamp_offset_ + static_cast<uint32_t>(now * clockrate_);
 }
 
 const DataCodec* FindUnknownCodec(const std::vector<DataCodec>& codecs) {
@@ -188,7 +187,7 @@
   return true;
 }
 
-bool RtpDataMediaChannel::RemoveSendStream(uint32 ssrc) {
+bool RtpDataMediaChannel::RemoveSendStream(uint32_t ssrc) {
   if (!GetStreamBySsrc(send_streams_, ssrc)) {
     return false;
   }
@@ -217,7 +216,7 @@
   return true;
 }
 
-bool RtpDataMediaChannel::RemoveRecvStream(uint32 ssrc) {
+bool RtpDataMediaChannel::RemoveRecvStream(uint32_t ssrc) {
   RemoveStreamBySsrc(&recv_streams_, ssrc);
   return true;
 }