| Index: webrtc/modules/audio_coding/neteq/decoder_database.cc
|
| diff --git a/webrtc/modules/audio_coding/neteq/decoder_database.cc b/webrtc/modules/audio_coding/neteq/decoder_database.cc
|
| index 299cedcd32ae7c3efd585a29d908171037ad93ac..483c9b96ba28d02272ff7ab416eeb2635ee9545e 100644
|
| --- a/webrtc/modules/audio_coding/neteq/decoder_database.cc
|
| +++ b/webrtc/modules/audio_coding/neteq/decoder_database.cc
|
| @@ -310,10 +310,10 @@ bool DecoderDatabase::IsRed(uint8_t rtp_payload_type) const {
|
| int DecoderDatabase::CheckPayloadTypes(const PacketList& packet_list) const {
|
| PacketList::const_iterator it;
|
| for (it = packet_list.begin(); it != packet_list.end(); ++it) {
|
| - if (!GetDecoderInfo((*it)->payload_type)) {
|
| + if (!GetDecoderInfo(it->payload_type)) {
|
| // Payload type is not found.
|
| LOG(LS_WARNING) << "CheckPayloadTypes: unknown RTP payload type "
|
| - << static_cast<int>((*it)->payload_type);
|
| + << static_cast<int>(it->payload_type);
|
| return kDecoderNotFound;
|
| }
|
| }
|
|
|