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

Unified Diff: content/renderer/media/capture_video_decoder.h

Issue 8922010: <video> decode in hardware! (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years 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/media/capture_video_decoder.h
diff --git a/content/renderer/media/capture_video_decoder.h b/content/renderer/media/capture_video_decoder.h
index 3d167859b5d4499ee6d25f5febf26575a5e92a7c..5a2a84d66b7303696879d6342cdd072b0ab86c49 100644
--- a/content/renderer/media/capture_video_decoder.h
+++ b/content/renderer/media/capture_video_decoder.h
@@ -9,6 +9,7 @@
#include "content/common/content_export.h"
#include "media/base/demuxer_stream.h"
#include "media/base/filters.h"
+#include "media/base/pipeline_status.h"
#include "media/base/video_frame.h"
#include "media/video/capture/video_capture.h"
@@ -41,7 +42,7 @@ class CONTENT_EXPORT CaptureVideoDecoder
// Decoder implementation.
virtual void Initialize(
media::DemuxerStream* demuxer_stream,
- const base::Closure& filter_callback,
+ const media::PipelineStatusCB& filter_callback,
const media::StatisticsCallback& stat_callback) OVERRIDE;
virtual void Read(const ReadCB& callback) OVERRIDE;
virtual const gfx::Size& natural_size() OVERRIDE;
@@ -78,7 +79,7 @@ class CONTENT_EXPORT CaptureVideoDecoder
void InitializeOnDecoderThread(
media::DemuxerStream* demuxer_stream,
- const base::Closure& filter_callback,
+ const media::PipelineStatusCB& filter_callback,
const media::StatisticsCallback& stat_callback);
void ReadOnDecoderThread(const ReadCB& callback);
« no previous file with comments | « content/renderer/gpu/gpu_video_decode_accelerator_host.cc ('k') | content/renderer/media/capture_video_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698