Chromium Code Reviews| Index: media/gpu/android_video_decode_accelerator_unittest.cc |
| diff --git a/media/gpu/android_video_decode_accelerator_unittest.cc b/media/gpu/android_video_decode_accelerator_unittest.cc |
| index e5e60ad644fd5395284fea505d914ca97253d726..75387d10c8858c56617ddf1de7abdd9b1aa7a3a5 100644 |
| --- a/media/gpu/android_video_decode_accelerator_unittest.cc |
| +++ b/media/gpu/android_video_decode_accelerator_unittest.cc |
| @@ -107,12 +107,7 @@ TEST_F(AndroidVideoDecodeAcceleratorTest, ConfigureUnsupportedCodec) { |
| TEST_F(AndroidVideoDecodeAcceleratorTest, ConfigureSupportedCodec) { |
| if (!MediaCodecUtil::IsMediaCodecAvailable()) |
| return; |
| - ASSERT_TRUE(Initialize(VP8PROFILE_ANY)); |
| + ASSERT_TRUE(Initialize(H264PROFILE_BASELINE)); |
|
xhwang
2016/11/04 22:20:44
Is it valuable to still cover VP8?
watk
2016/11/04 22:25:45
Forgot to comment on this. The reason I changed it
xhwang
2016/11/04 22:42:36
Thanks! Could you please add a comment here about
watk
2016/11/04 22:54:03
Since it's not strange for VDAs to reject codecs i
|
| } |
| } // namespace media |
| - |
| -int main(int argc, char** argv) { |
| - testing::InitGoogleTest(&argc, argv); |
| - return RUN_ALL_TESTS(); |
| -} |