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

Unified Diff: content/common/gpu/media/video_decode_accelerator_unittest.cc

Issue 809883004: Revert hardware decoder changes causing ChromeOS HW test crash. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « content/common/gpu/media/v4l2_video_device.cc ('k') | media/base/video_frame.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/gpu/media/video_decode_accelerator_unittest.cc
diff --git a/content/common/gpu/media/video_decode_accelerator_unittest.cc b/content/common/gpu/media/video_decode_accelerator_unittest.cc
index 66dc98e5625713d9134d5de4a390d6d132be16af..3e1a9fd6c32a6c0f35632e8f2b85a475c763f1ef 100644
--- a/content/common/gpu/media/video_decode_accelerator_unittest.cc
+++ b/content/common/gpu/media/video_decode_accelerator_unittest.cc
@@ -78,10 +78,10 @@ namespace {
// The syntax of each test-video is:
// filename:width:height:numframes:numfragments:minFPSwithRender:minFPSnoRender
// where only the first field is required. Value details:
-// - |filename| must be an h264 Annex B (NAL) stream or an IVF VP8/9 stream.
+// - |filename| must be an h264 Annex B (NAL) stream or an IVF VP8 stream.
// - |width| and |height| are in pixels.
// - |numframes| is the number of picture frames in the file.
-// - |numfragments| NALU (h264) or frame (VP8/9) count in the stream.
+// - |numfragments| NALU (h264) or frame (VP8) count in the stream.
// - |minFPSwithRender| and |minFPSnoRender| are minimum frames/second speeds
// expected to be achieved with and without rendering to the screen, resp.
// (the latter tests just decode speed).
@@ -299,7 +299,7 @@ class GLRenderingVDAClient
// Helpers for GetBytesForNextFragment above.
void GetBytesForNextNALU(size_t start_pos, size_t* end_pos); // For h.264.
std::string GetBytesForNextFrame(
- size_t start_pos, size_t* end_pos); // For VP8/9.
+ size_t start_pos, size_t* end_pos); // For VP8.
// Request decode of the next fragment in the encoded data.
void DecodeNextFragment();
@@ -682,7 +682,7 @@ std::string GLRenderingVDAClient::GetBytesForFirstFragment(
*end_pos = start_pos;
return std::string();
}
- DCHECK_LE(profile_, media::VP9PROFILE_MAX);
+ DCHECK_LE(profile_, media::VP8PROFILE_MAX);
return GetBytesForNextFragment(start_pos, end_pos);
}
@@ -696,7 +696,7 @@ std::string GLRenderingVDAClient::GetBytesForNextFragment(
}
return encoded_data_.substr(start_pos, *end_pos - start_pos);
}
- DCHECK_LE(profile_, media::VP9PROFILE_MAX);
+ DCHECK_LE(profile_, media::VP8PROFILE_MAX);
return GetBytesForNextFrame(start_pos, end_pos);
}
@@ -745,7 +745,7 @@ static bool FragmentHasConfigInfo(const uint8* data, size_t size,
return nalu.nal_unit_type == media::H264NALU::kSPS;
} else if (profile >= media::VP8PROFILE_MIN &&
- profile <= media::VP9PROFILE_MAX) {
+ profile <= media::VP8PROFILE_MAX) {
return (size > 0 && !(data[0] & 0x01));
}
// Shouldn't happen at this point.
« no previous file with comments | « content/common/gpu/media/v4l2_video_device.cc ('k') | media/base/video_frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698