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:
@ -16,7 +16,7 @@ namespace webrtc {
|
||||
|
||||
// Constructor. Optional parameter specifies maximum number of
|
||||
// coexisting timers.
|
||||
VCMTimestampMap::VCMTimestampMap(WebRtc_Word32 length):
|
||||
VCMTimestampMap::VCMTimestampMap(int32_t length):
|
||||
_nextAddIx(0),
|
||||
_nextPopIx(0)
|
||||
{
|
||||
@ -44,8 +44,8 @@ VCMTimestampMap::Reset()
|
||||
_nextPopIx = 0;
|
||||
}
|
||||
|
||||
WebRtc_Word32
|
||||
VCMTimestampMap::Add(WebRtc_UWord32 timestamp, void* data)
|
||||
int32_t
|
||||
VCMTimestampMap::Add(uint32_t timestamp, void* data)
|
||||
{
|
||||
_map[_nextAddIx].timestamp = timestamp;
|
||||
_map[_nextAddIx].data = data;
|
||||
@ -61,7 +61,7 @@ VCMTimestampMap::Add(WebRtc_UWord32 timestamp, void* data)
|
||||
}
|
||||
|
||||
void*
|
||||
VCMTimestampMap::Pop(WebRtc_UWord32 timestamp)
|
||||
VCMTimestampMap::Pop(uint32_t timestamp)
|
||||
{
|
||||
while (!IsEmpty())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user