| Index: media/cast/net/rtp/frame_buffer.cc
|
| diff --git a/media/cast/net/rtp/frame_buffer.cc b/media/cast/net/rtp/frame_buffer.cc
|
| index 319aad2502a494a6aaeb45ffabd235a0a736b218..facccaa3bba696d30895957030802aed54777761 100644
|
| --- a/media/cast/net/rtp/frame_buffer.cc
|
| +++ b/media/cast/net/rtp/frame_buffer.cc
|
| @@ -22,7 +22,7 @@ FrameBuffer::FrameBuffer()
|
|
|
| FrameBuffer::~FrameBuffer() {}
|
|
|
| -bool FrameBuffer::InsertPacket(const uint8* payload_data,
|
| +bool FrameBuffer::InsertPacket(const uint8_t* payload_data,
|
| size_t payload_size,
|
| const RtpCastHeader& rtp_header) {
|
| // Is this the first packet in the frame?
|
| @@ -45,7 +45,7 @@ bool FrameBuffer::InsertPacket(const uint8* payload_data,
|
| return false;
|
| }
|
|
|
| - std::vector<uint8> data;
|
| + std::vector<uint8_t> data;
|
| std::pair<PacketMap::iterator, bool> retval =
|
| packets_.insert(make_pair(rtp_header.packet_id, data));
|
|
|
|
|