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

Unified Diff: content/renderer/pepper_platform_video_decoder_impl.cc

Issue 6901036: Update VideoDecode PPAPI structs to be consistent with media structures, part 1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 8 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/renderer/pepper_platform_video_decoder_impl.cc
diff --git a/content/renderer/pepper_platform_video_decoder_impl.cc b/content/renderer/pepper_platform_video_decoder_impl.cc
index d96dc923704ac56befa830acb78b4825011a86a5..5814dc04014df31ff28a5f6ffbf4a0fb9c6a1531 100644
--- a/content/renderer/pepper_platform_video_decoder_impl.cc
+++ b/content/renderer/pepper_platform_video_decoder_impl.cc
@@ -48,8 +48,7 @@ void PlatformVideoDecoderImpl::AssignPictureBuffer(
std::vector<VideoDecodeAccelerator::PictureBuffer*> picture_buffers) {
}
-void PlatformVideoDecoderImpl::ReusePictureBuffer(
- VideoDecodeAccelerator::PictureBuffer* picture_buffer) {
+void PlatformVideoDecoderImpl::ReusePictureBuffer(uint32 picture_buffer_id) {
}
bool PlatformVideoDecoderImpl::Flush(
@@ -89,7 +88,7 @@ void PlatformVideoDecoderImpl::ProvidePictureBuffers(
}
void PlatformVideoDecoderImpl::PictureReady(
- VideoDecodeAccelerator::Picture* picture) {
+ VideoDecodeAccelerator::Picture& picture) {
// TODO(vmr): Implement.
NOTIMPLEMENTED();
}

Powered by Google App Engine
This is Rietveld 408576698