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

Unified Diff: chromecast/renderer/media/video_pipeline_proxy.h

Issue 1372393007: [Chromecast] Upgrade to new CMA backend API (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Address alokp@ comments Created 5 years, 2 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: chromecast/renderer/media/video_pipeline_proxy.h
diff --git a/chromecast/renderer/media/video_pipeline_proxy.h b/chromecast/renderer/media/video_pipeline_proxy.h
index e30be8cf24865fdffad9dbecf05e1662b3e4fb05..1ec76c348f32b7a1dfd7045ad31b9a7ac5e342b7 100644
--- a/chromecast/renderer/media/video_pipeline_proxy.h
+++ b/chromecast/renderer/media/video_pipeline_proxy.h
@@ -12,7 +12,6 @@
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/threading/thread_checker.h"
-#include "chromecast/media/cma/pipeline/video_pipeline.h"
#include "media/base/pipeline_status.h"
namespace base {
@@ -26,17 +25,17 @@ class VideoDecoderConfig;
namespace chromecast {
namespace media {
-struct AvPipelineClient;
class AvStreamerProxy;
class CodedFrameProvider;
-class VideoPipelineProxyInternal;
class MediaChannelProxy;
+struct VideoPipelineClient;
+class VideoPipelineProxyInternal;
-class VideoPipelineProxy : public VideoPipeline {
+class VideoPipelineProxy {
public:
VideoPipelineProxy(scoped_refptr<base::SingleThreadTaskRunner> io_task_runner,
scoped_refptr<MediaChannelProxy> media_channel_proxy);
- ~VideoPipelineProxy() override;
+ ~VideoPipelineProxy();
void Initialize(const std::vector<::media::VideoDecoderConfig>& configs,
scoped_ptr<CodedFrameProvider> frame_provider,
@@ -45,8 +44,7 @@ class VideoPipelineProxy : public VideoPipeline {
void Flush(const base::Closure& done_cb);
void Stop();
- // VideoPipeline implementation.
- void SetClient(const VideoPipelineClient& video_client) override;
+ void SetClient(const VideoPipelineClient& video_client);
private:
base::ThreadChecker thread_checker_;
« no previous file with comments | « chromecast/renderer/media/multi_demuxer_stream_adapter_unittest.cc ('k') | chromecast/renderer/media/video_pipeline_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698