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

Unified Diff: content/renderer/media/rtc_video_decoder.cc

Issue 185403020: Make VEA client of command buffer; move sync. IPC to VDA/VEA::Initialize() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 7da5b6ec Rebase. Created 6 years, 9 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/renderer/media/rtc_video_decoder.h ('k') | content/renderer/media/rtc_video_decoder_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/rtc_video_decoder.cc
diff --git a/content/renderer/media/rtc_video_decoder.cc b/content/renderer/media/rtc_video_decoder.cc
index 629102f2e152e4622f5530c951b854b040bb2606..81ca813ff407732e9e46bb8e8e8397d5d52845d4 100644
--- a/content/renderer/media/rtc_video_decoder.cc
+++ b/content/renderer/media/rtc_video_decoder.cc
@@ -294,11 +294,6 @@ int32_t RTCVideoDecoder::Reset() {
return WEBRTC_VIDEO_CODEC_OK;
}
-void RTCVideoDecoder::NotifyInitializeDone() {
- DVLOG(2) << "NotifyInitializeDone";
- NOTREACHED();
-}
-
void RTCVideoDecoder::ProvidePictureBuffers(uint32 count,
const gfx::Size& size,
uint32 texture_target) {
@@ -682,7 +677,7 @@ void RTCVideoDecoder::ReusePictureBuffer(int64 picture_buffer_id) {
void RTCVideoDecoder::CreateVDA(media::VideoCodecProfile profile,
base::WaitableEvent* waiter) {
DCheckGpuVideoAcceleratorFactoriesTaskRunnerIsCurrent();
- vda_ = factories_->CreateVideoDecodeAccelerator(profile);
+ vda_ = factories_->CreateVideoDecodeAccelerator();
if (vda_ && !vda_->Initialize(profile, this))
vda_.release()->Destroy();
waiter->Signal();
« no previous file with comments | « content/renderer/media/rtc_video_decoder.h ('k') | content/renderer/media/rtc_video_decoder_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698