| Index: webrtc/modules/video_coding/codecs/test/video_codec_test.h
|
| diff --git a/webrtc/modules/video_coding/codecs/test/video_codec_test.h b/webrtc/modules/video_coding/codecs/test/video_codec_test.h
|
| index efdac0caee95cac542c87ce5e6c1276699dc7f9f..ed2c1a312f335104de608dd19bcc2d6a7a11a29b 100644
|
| --- a/webrtc/modules/video_coding/codecs/test/video_codec_test.h
|
| +++ b/webrtc/modules/video_coding/codecs/test/video_codec_test.h
|
| @@ -95,13 +95,15 @@ class VideoCodecTest : public ::testing::Test {
|
|
|
| rtc::Event encoded_frame_event_;
|
| rtc::CriticalSection encoded_frame_section_;
|
| - rtc::Optional<EncodedImage> encoded_frame_ GUARDED_BY(encoded_frame_section_);
|
| - CodecSpecificInfo codec_specific_info_ GUARDED_BY(encoded_frame_section_);
|
| + rtc::Optional<EncodedImage> encoded_frame_
|
| + RTC_GUARDED_BY(encoded_frame_section_);
|
| + CodecSpecificInfo codec_specific_info_ RTC_GUARDED_BY(encoded_frame_section_);
|
|
|
| rtc::Event decoded_frame_event_;
|
| rtc::CriticalSection decoded_frame_section_;
|
| - rtc::Optional<VideoFrame> decoded_frame_ GUARDED_BY(decoded_frame_section_);
|
| - rtc::Optional<uint8_t> decoded_qp_ GUARDED_BY(decoded_frame_section_);
|
| + rtc::Optional<VideoFrame> decoded_frame_
|
| + RTC_GUARDED_BY(decoded_frame_section_);
|
| + rtc::Optional<uint8_t> decoded_qp_ RTC_GUARDED_BY(decoded_frame_section_);
|
| };
|
|
|
| } // namespace webrtc
|
|
|