| 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 07c3471a86244627da71ff7e7399c872b973ada4..b6649a9f707a22e9e1e8a013ff7c55fd0d05e248 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)->header.payloadType)) {
|
| + if (!GetDecoderInfo((*it)->payloadType)) {
|
| // Payload type is not found.
|
| LOG(LS_WARNING) << "CheckPayloadTypes: unknown RTP payload type "
|
| - << static_cast<int>((*it)->header.payloadType);
|
| + << static_cast<int>((*it)->payloadType);
|
| return kDecoderNotFound;
|
| }
|
| }
|
|
|