OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "content/browser/media/media_browsertest.h" | 5 #include "content/browser/media/media_browsertest.h" |
6 | 6 |
7 #include "base/strings/stringprintf.h" | 7 #include "base/strings/stringprintf.h" |
8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
9 #include "content/public/browser/web_contents.h" | 9 #include "content/public/browser/web_contents.h" |
10 #include "content/public/common/url_constants.h" | 10 #include "content/public/common/url_constants.h" |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 } | 217 } |
218 | 218 |
219 IN_PROC_BROWSER_TEST_F(MediaTest, MAYBE(Yuv444pTheora)) { | 219 IN_PROC_BROWSER_TEST_F(MediaTest, MAYBE(Yuv444pTheora)) { |
220 RunColorFormatTest("yuv444p.ogv", "ENDED"); | 220 RunColorFormatTest("yuv444p.ogv", "ENDED"); |
221 } | 221 } |
222 | 222 |
223 IN_PROC_BROWSER_TEST_F(MediaTest, MAYBE(Yuv420pVp8)) { | 223 IN_PROC_BROWSER_TEST_F(MediaTest, MAYBE(Yuv420pVp8)) { |
224 RunColorFormatTest("yuv420p.webm", "ENDED"); | 224 RunColorFormatTest("yuv420p.webm", "ENDED"); |
225 } | 225 } |
226 | 226 |
227 IN_PROC_BROWSER_TEST_F(MediaTest, MAYBE(Yuv444pVp9)) { | 227 // TODO(johannkoenig): Reenable after landing libvpx roll |
| 228 // http://www.crbug.com/392309 |
| 229 IN_PROC_BROWSER_TEST_F(MediaTest, DISABLED_Yuv444pVp9) { |
228 RunColorFormatTest("yuv444p.webm", "ENDED"); | 230 RunColorFormatTest("yuv444p.webm", "ENDED"); |
229 } | 231 } |
230 | 232 |
231 #if defined(USE_PROPRIETARY_CODECS) | 233 #if defined(USE_PROPRIETARY_CODECS) |
232 IN_PROC_BROWSER_TEST_F(MediaTest, MAYBE(Yuv420pH264)) { | 234 IN_PROC_BROWSER_TEST_F(MediaTest, MAYBE(Yuv420pH264)) { |
233 RunColorFormatTest("yuv420p.mp4", "ENDED"); | 235 RunColorFormatTest("yuv420p.mp4", "ENDED"); |
234 } | 236 } |
235 | 237 |
236 IN_PROC_BROWSER_TEST_F(MediaTest, MAYBE(Yuvj420pH264)) { | 238 IN_PROC_BROWSER_TEST_F(MediaTest, MAYBE(Yuvj420pH264)) { |
237 RunColorFormatTest("yuvj420p.mp4", "ENDED"); | 239 RunColorFormatTest("yuvj420p.mp4", "ENDED"); |
238 } | 240 } |
239 | 241 |
240 IN_PROC_BROWSER_TEST_F(MediaTest, MAYBE(Yuv422pH264)) { | 242 IN_PROC_BROWSER_TEST_F(MediaTest, MAYBE(Yuv422pH264)) { |
241 RunColorFormatTest("yuv422p.mp4", "ENDED"); | 243 RunColorFormatTest("yuv422p.mp4", "ENDED"); |
242 } | 244 } |
243 | 245 |
244 IN_PROC_BROWSER_TEST_F(MediaTest, MAYBE(Yuv444pH264)) { | 246 IN_PROC_BROWSER_TEST_F(MediaTest, MAYBE(Yuv444pH264)) { |
245 RunColorFormatTest("yuv444p.mp4", "ENDED"); | 247 RunColorFormatTest("yuv444p.mp4", "ENDED"); |
246 } | 248 } |
247 | 249 |
248 #if defined(OS_CHROMEOS) | 250 #if defined(OS_CHROMEOS) |
249 IN_PROC_BROWSER_TEST_F(MediaTest, Yuv420pMpeg4) { | 251 IN_PROC_BROWSER_TEST_F(MediaTest, Yuv420pMpeg4) { |
250 RunColorFormatTest("yuv420p.avi", "ENDED"); | 252 RunColorFormatTest("yuv420p.avi", "ENDED"); |
251 } | 253 } |
252 #endif // defined(OS_CHROMEOS) | 254 #endif // defined(OS_CHROMEOS) |
253 #endif // defined(USE_PROPRIETARY_CODECS) | 255 #endif // defined(USE_PROPRIETARY_CODECS) |
254 | 256 |
255 } // namespace content | 257 } // namespace content |
OLD | NEW |