Rename WEBRTC_VIDEOPROCESSOR_H264_TESTS define to WEBRTC_USE_H264.

This is the name used in other parts of the code.

BUG=none

Review-Url: https://codereview.webrtc.org/2996463003
Cr-Commit-Position: refs/heads/master@{#19253}
This commit is contained in:
brandtr
2017-08-07 03:35:13 -07:00
committed by Commit Bot
parent 60dfbdbf75
commit 669ea1917e
3 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,7 @@ class TestH264Impl : public VideoCodecTest {
}
};
#ifdef WEBRTC_VIDEOPROCESSOR_H264_TESTS
#ifdef WEBRTC_USE_H264
#define MAYBE_EncodeDecode EncodeDecode
#define MAYBE_DecodedQpEqualsEncodedQp DecodedQpEqualsEncodedQp
#else

View File

@ -33,7 +33,7 @@ const char kForemanCif[] = "foreman_cif";
} // namespace
#if defined(WEBRTC_VIDEOPROCESSOR_H264_TESTS)
#if defined(WEBRTC_USE_H264)
// H264: Run with no packet loss and fixed bitrate. Quality should be very high.
// Note(hbos): The PacketManipulatorImpl code used to simulate packet loss in
@ -60,7 +60,7 @@ TEST_F(VideoProcessorIntegrationTest, Process0PercentPacketLossH264) {
nullptr /* visualization_params */);
}
#endif // defined(WEBRTC_VIDEOPROCESSOR_H264_TESTS)
#endif // defined(WEBRTC_USE_H264)
// Fails on iOS. See webrtc:4755.
#if !defined(WEBRTC_IOS)