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

Unified Diff: ppapi/cpp/dev/video_decoder_dev.cc

Issue 7021020: Clean up video frame sizes, types in Video Decode API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: responses to CR Created 9 years, 5 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/cpp/dev/video_decoder_dev.h ('k') | ppapi/examples/gles2/gles2.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/dev/video_decoder_dev.cc
diff --git a/ppapi/cpp/dev/video_decoder_dev.cc b/ppapi/cpp/dev/video_decoder_dev.cc
index 2ef19fcc1ab630fd66cff485750c533ccfda53d7..5f8ce40ea4f64fc0388716727068a12d750e2ffd 100644
--- a/ppapi/cpp/dev/video_decoder_dev.cc
+++ b/ppapi/cpp/dev/video_decoder_dev.cc
@@ -47,11 +47,11 @@ int32_t VideoDecoder_Dev::Initialize(const PP_VideoConfigElement* config,
callback.pp_completion_callback());
}
-void VideoDecoder_Dev::AssignGLESBuffers(
- const std::vector<PP_GLESBuffer_Dev>& buffers) {
+void VideoDecoder_Dev::AssignPictureBuffers(
+ const std::vector<PP_PictureBuffer_Dev>& buffers) {
if (!has_interface<PPB_VideoDecoder_Dev>() || !pp_resource())
return;
- get_interface<PPB_VideoDecoder_Dev>()->AssignGLESBuffers(
+ get_interface<PPB_VideoDecoder_Dev>()->AssignPictureBuffers(
pp_resource(), buffers.size(), &buffers[0]);
}
« no previous file with comments | « ppapi/cpp/dev/video_decoder_dev.h ('k') | ppapi/examples/gles2/gles2.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698