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

Unified Diff: content/common/gpu/media/omx_video_decode_accelerator.h

Issue 7545014: Implement PPAPI VideoDecode out-of-process support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: responses to ddorwin and piman 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
Index: content/common/gpu/media/omx_video_decode_accelerator.h
diff --git a/content/common/gpu/media/omx_video_decode_accelerator.h b/content/common/gpu/media/omx_video_decode_accelerator.h
index 39a2e9443642361668423f47479a159de9370d06..e028cc5715ea18b7427e4ca4b4454d42d3911252 100644
--- a/content/common/gpu/media/omx_video_decode_accelerator.h
+++ b/content/common/gpu/media/omx_video_decode_accelerator.h
@@ -42,7 +42,7 @@ class OmxVideoDecodeAccelerator : public media::VideoDecodeAccelerator {
OmxVideoDecodeAccelerator(media::VideoDecodeAccelerator::Client* client);
// media::VideoDecodeAccelerator implementation.
- bool Initialize(const std::vector<uint32>& config) OVERRIDE;
+ bool Initialize(const std::vector<int32>& config) OVERRIDE;
void Decode(const media::BitstreamBuffer& bitstream_buffer) OVERRIDE;
virtual void AssignPictureBuffers(
const std::vector<media::PictureBuffer>& buffers) OVERRIDE;
@@ -82,7 +82,7 @@ class OmxVideoDecodeAccelerator : public media::VideoDecodeAccelerator {
typedef std::map<int32, OutputPicture> OutputPictureById;
// Verify that |config| is compatible with this class and hardware.
- bool VerifyConfigs(const std::vector<uint32>& configs);
+ bool VerifyConfigs(const std::vector<int32>& configs);
MessageLoop* message_loop_;
OMX_HANDLETYPE component_handle_;

Powered by Google App Engine
This is Rietveld 408576698