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

Side by Side Diff: media/filters/pipeline_integration_test.cc

Issue 379563008: Disable VP9 444 test (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "media/filters/pipeline_integration_test_base.h" 5 #include "media/filters/pipeline_integration_test_base.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/strings/string_util.h" 10 #include "base/strings/string_util.h"
(...skipping 1455 matching lines...) Expand 10 before | Expand all | Expand 10 after
1466 // Verify that VP8 video with inband text track can be played back. 1466 // Verify that VP8 video with inband text track can be played back.
1467 TEST_F(PipelineIntegrationTest, 1467 TEST_F(PipelineIntegrationTest,
1468 BasicPlayback_VP8_WebVTT_WebM) { 1468 BasicPlayback_VP8_WebVTT_WebM) {
1469 ASSERT_TRUE(Start(GetTestDataFilePath("bear-vp8-webvtt.webm"), 1469 ASSERT_TRUE(Start(GetTestDataFilePath("bear-vp8-webvtt.webm"),
1470 PIPELINE_OK)); 1470 PIPELINE_OK));
1471 Play(); 1471 Play();
1472 ASSERT_TRUE(WaitUntilOnEnded()); 1472 ASSERT_TRUE(WaitUntilOnEnded());
1473 } 1473 }
1474 1474
1475 // Verify that VP9 video with 4:4:4 subsampling can be played back. 1475 // Verify that VP9 video with 4:4:4 subsampling can be played back.
1476 TEST_F(PipelineIntegrationTest, P444_VP9_WebM) { 1476 // http://www.crbug.com/392309
scherkus (not reviewing) 2014/07/08 23:58:44 can you elaborate this comment? TODO(johannkoenig
1477 TEST_F(PipelineIntegrationTest, DISABLED_P444_VP9_WebM) {
1477 ASSERT_TRUE(Start(GetTestDataFilePath("bear-320x240-P444.webm"), 1478 ASSERT_TRUE(Start(GetTestDataFilePath("bear-320x240-P444.webm"),
1478 PIPELINE_OK)); 1479 PIPELINE_OK));
1479 Play(); 1480 Play();
1480 ASSERT_TRUE(WaitUntilOnEnded()); 1481 ASSERT_TRUE(WaitUntilOnEnded());
1481 EXPECT_EQ(last_video_frame_format_, VideoFrame::YV24); 1482 EXPECT_EQ(last_video_frame_format_, VideoFrame::YV24);
1482 } 1483 }
1483 1484
1484 // Verify that videos with an odd frame size playback successfully. 1485 // Verify that videos with an odd frame size playback successfully.
1485 TEST_F(PipelineIntegrationTest, BasicPlayback_OddVideoSize) { 1486 TEST_F(PipelineIntegrationTest, BasicPlayback_OddVideoSize) {
1486 ASSERT_TRUE(Start(GetTestDataFilePath("butterfly-853x480.webm"), 1487 ASSERT_TRUE(Start(GetTestDataFilePath("butterfly-853x480.webm"),
1487 PIPELINE_OK)); 1488 PIPELINE_OK));
1488 Play(); 1489 Play();
1489 ASSERT_TRUE(WaitUntilOnEnded()); 1490 ASSERT_TRUE(WaitUntilOnEnded());
1490 } 1491 }
1491 1492
1492 } // namespace media 1493 } // namespace media
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698