Webrtc_Word32 => int32_t in video_coding/main/

BUG=

Review URL: https://webrtc-codereview.appspot.com/1279004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@3753 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
pbos@webrtc.org
2013-04-02 15:54:38 +00:00
parent cfc07c943f
commit 7b859cc1e9
67 changed files with 1130 additions and 1130 deletions

View File

@ -18,7 +18,7 @@ namespace webrtc
struct VCMTimestampDataTuple
{
WebRtc_UWord32 timestamp;
uint32_t timestamp;
void* data;
};
@ -27,7 +27,7 @@ class VCMTimestampMap
public:
// Constructor. Optional parameter specifies maximum number of
// timestamps in map.
VCMTimestampMap(const WebRtc_Word32 length = 10);
VCMTimestampMap(const int32_t length = 10);
// Destructor.
~VCMTimestampMap();
@ -35,16 +35,16 @@ public:
// Empty the map
void Reset();
WebRtc_Word32 Add(WebRtc_UWord32 timestamp, void* data);
void* Pop(WebRtc_UWord32 timestamp);
int32_t Add(uint32_t timestamp, void* data);
void* Pop(uint32_t timestamp);
private:
bool IsEmpty() const;
VCMTimestampDataTuple* _map;
WebRtc_Word32 _nextAddIx;
WebRtc_Word32 _nextPopIx;
WebRtc_Word32 _length;
int32_t _nextAddIx;
int32_t _nextPopIx;
int32_t _length;
};
} // namespace webrtc