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

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

Issue 7260008: Implement proper synchronization between HW video decode IPC and CommandBuffer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixing compilation errors from bots. Created 9 years, 6 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: content/common/gpu/media/omx_video_decode_accelerator_unittest.cc
diff --git a/content/common/gpu/media/omx_video_decode_accelerator_unittest.cc b/content/common/gpu/media/omx_video_decode_accelerator_unittest.cc
index 9b55913bd6047b4a423614b626bb039d8439c5b6..28d1d7c82e49ef7d0fc92db601ab821be6a0ee6e 100644
--- a/content/common/gpu/media/omx_video_decode_accelerator_unittest.cc
+++ b/content/common/gpu/media/omx_video_decode_accelerator_unittest.cc
@@ -610,7 +610,7 @@ void EglRenderingVDAClient::DecodeNextNALUs() {
CHECK(shm.ShareToProcess(base::Process::Current().handle(), &dup_handle));
media::BitstreamBuffer bitstream_buffer(
next_bitstream_buffer_id_++, dup_handle, end_pos - start_pos);
- CHECK(decoder_->Decode(bitstream_buffer));
scherkus (not reviewing) 2011/06/27 22:54:47 lol
+ decoder_->Decode(bitstream_buffer);
encoded_data_next_pos_to_decode_ = end_pos;
}

Powered by Google App Engine
This is Rietveld 408576698