Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(931)

Unified Diff: media/cast/receiver/video_decoder_unittest.cc

Issue 901833004: [Cast] Repurpose CastInitializationStatus for variable frame size support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile fixes. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/cast/receiver/video_decoder_unittest.cc
diff --git a/media/cast/receiver/video_decoder_unittest.cc b/media/cast/receiver/video_decoder_unittest.cc
index 6fcde7af41c8ee24ea2e0289d47bd0d8bba90b88..a51ea1dbabe27235023cc9b5c07bef22da43db49 100644
--- a/media/cast/receiver/video_decoder_unittest.cc
+++ b/media/cast/receiver/video_decoder_unittest.cc
@@ -52,7 +52,7 @@ class VideoDecoderTest : public ::testing::TestWithParam<Codec> {
protected:
void SetUp() override {
video_decoder_.reset(new VideoDecoder(cast_environment_, GetParam()));
- CHECK_EQ(STATUS_VIDEO_INITIALIZED, video_decoder_->InitializationResult());
+ CHECK_EQ(STATUS_INITIALIZED, video_decoder_->InitializationResult());
next_frame_size_ = gfx::Size(kStartingWidth, kStartingHeight);
next_frame_timestamp_ = base::TimeDelta();

Powered by Google App Engine
This is Rietveld 408576698