| Index: webrtc/modules/audio_coding/neteq/neteq_impl.h
|
| diff --git a/webrtc/modules/audio_coding/neteq/neteq_impl.h b/webrtc/modules/audio_coding/neteq/neteq_impl.h
|
| index d7c9ac4d965624ad9df3841ad7ceff261227745d..3630ac3f3c0eb332fe889773971b0a67fc53771d 100644
|
| --- a/webrtc/modules/audio_coding/neteq/neteq_impl.h
|
| +++ b/webrtc/modules/audio_coding/neteq/neteq_impl.h
|
| @@ -110,7 +110,7 @@ class NetEqImpl : public webrtc::NetEq {
|
|
|
| // Associates |rtp_payload_type| with |codec| and stores the information in
|
| // the codec database. Returns kOK on success, kFail on failure.
|
| - int RegisterPayloadType(enum NetEqDecoder codec,
|
| + int RegisterPayloadType(NetEqDecoder codec,
|
| uint8_t rtp_payload_type) override;
|
|
|
| // Provides an externally created decoder object |decoder| to insert in the
|
| @@ -118,7 +118,7 @@ class NetEqImpl : public webrtc::NetEq {
|
| // associates it with |rtp_payload_type|. The decoder will produce samples
|
| // at the rate |sample_rate_hz|. Returns kOK on success, kFail on failure.
|
| int RegisterExternalDecoder(AudioDecoder* decoder,
|
| - enum NetEqDecoder codec,
|
| + NetEqDecoder codec,
|
| uint8_t rtp_payload_type,
|
| int sample_rate_hz) override;
|
|
|
|
|