| Index: webrtc/modules/video_coding/main/source/generic_encoder.cc
|
| diff --git a/webrtc/modules/video_coding/main/source/generic_encoder.cc b/webrtc/modules/video_coding/main/source/generic_encoder.cc
|
| index e4408d1f7e7401f80da155124ff41351c7f7a2ee..31c3f1715f8d585b1141d182dde1e9f2c739faf9 100644
|
| --- a/webrtc/modules/video_coding/main/source/generic_encoder.cc
|
| +++ b/webrtc/modules/video_coding/main/source/generic_encoder.cc
|
| @@ -21,7 +21,7 @@ namespace {
|
| // Map information from info into rtp. If no relevant information is found
|
| // in info, rtp is set to NULL.
|
| void CopyCodecSpecific(const CodecSpecificInfo* info, RTPVideoHeader* rtp) {
|
| - DCHECK(info);
|
| + RTC_DCHECK(info);
|
| switch (info->codecType) {
|
| case kVideoCodecVP8: {
|
| rtp->codec = kRtpVideoVp8;
|
|
|