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

Unified Diff: remoting/client/plugin/pepper_video_renderer_3d.cc

Issue 1207043002: Introduce a client minimum picture pool size (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Switch to Dev channel interface. But *NOT* dev/ppb_video_decoder_dev.idl Created 5 years, 4 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 | « ppapi/thunk/ppb_video_decoder_thunk.cc ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/plugin/pepper_video_renderer_3d.cc
diff --git a/remoting/client/plugin/pepper_video_renderer_3d.cc b/remoting/client/plugin/pepper_video_renderer_3d.cc
index 711c2104b702cf083f78a4b4b337286fb20eb91e..8415f487136b0973c4a30c0521e29d8d0821c441 100644
--- a/remoting/client/plugin/pepper_video_renderer_3d.cc
+++ b/remoting/client/plugin/pepper_video_renderer_3d.cc
@@ -171,7 +171,7 @@ void PepperVideoRenderer3D::OnSessionConfig(
NOTREACHED();
}
int32_t result = video_decoder_.Initialize(
- graphics_, video_profile, PP_HARDWAREACCELERATION_WITHFALLBACK,
+ graphics_, video_profile, PP_HARDWAREACCELERATION_WITHFALLBACK, 0,
Sergey Ulanov 2015/08/11 18:17:01 What happens when a plugin calls GetPicture() whil
lpique 2015/08/11 19:56:10 At present, the call to GetPictures() succeeds (PP
callback_factory_.NewCallback(&PepperVideoRenderer3D::OnInitialized));
CHECK_EQ(result, PP_OK_COMPLETIONPENDING)
<< "video_decoder_.Initialize() returned " << result;
« no previous file with comments | « ppapi/thunk/ppb_video_decoder_thunk.cc ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698