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

Unified Diff: media/video/picture.cc

Issue 6979017: Revert 86681 - Updated OMX decoder for recent PPAPI changes, and added to the build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 7 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 | « media/video/picture.h ('k') | media/video/video_decode_accelerator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/video/picture.cc
===================================================================
--- media/video/picture.cc (revision 86686)
+++ media/video/picture.cc (working copy)
@@ -6,22 +6,25 @@
namespace media {
-BaseBuffer::~BaseBuffer() {}
-
// Implementations for the other constructors are found in
// webkit/plugins/ppapi/ppb_video_decoder_impl.cc.
// They are not included in this file because it would require
// media/ to depend on files in ppapi/.
-BaseBuffer::BaseBuffer(int32 id, gfx::Size size) : id_(id), size_(size) {
+BufferInfo::BufferInfo(int32 id, gfx::Size size)
+ : id_(id),
+ size_(size) {
}
GLESBuffer::GLESBuffer(
int32 id, gfx::Size size, uint32 texture_id, uint32 context_id)
- : BaseBuffer(id, size), texture_id_(texture_id), context_id_(context_id) {
+ : texture_id_(texture_id),
+ context_id_(context_id),
+ info_(id, size) {
}
SysmemBuffer::SysmemBuffer(int32 id, gfx::Size size, void* data)
- : BaseBuffer(id, size), data_(data) {
+ : data_(data),
+ info_(id, size) {
}
Picture::Picture(int32 picture_buffer_id, int32 bitstream_buffer_id,
« no previous file with comments | « media/video/picture.h ('k') | media/video/video_decode_accelerator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698