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

Side by Side Diff: chromecast/media/cma/pipeline/video_pipeline_impl.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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROMECAST_MEDIA_CMA_BASE_VIDEO_PIPELINE_IMPL_H_ 5 #ifndef CHROMECAST_MEDIA_CMA_BASE_VIDEO_PIPELINE_IMPL_H_
6 #define CHROMECAST_MEDIA_CMA_BASE_VIDEO_PIPELINE_IMPL_H_ 6 #define CHROMECAST_MEDIA_CMA_BASE_VIDEO_PIPELINE_IMPL_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
12 #include "base/memory/weak_ptr.h" 12 #include "base/memory/weak_ptr.h"
13 #include "base/threading/thread_checker.h" 13 #include "base/threading/thread_checker.h"
14 #include "chromecast/media/cma/pipeline/video_pipeline.h"
15 #include "chromecast/media/cma/pipeline/video_pipeline_client.h" 14 #include "chromecast/media/cma/pipeline/video_pipeline_client.h"
15 #include "chromecast/public/media/media_pipeline_backend.h"
16 #include "chromecast/public/media/stream_id.h" 16 #include "chromecast/public/media/stream_id.h"
17 #include "chromecast/public/media/video_pipeline_device.h"
18 17
19 namespace media { 18 namespace media {
20 class AudioDecoderConfig; 19 class AudioDecoderConfig;
21 class VideoDecoderConfig; 20 class VideoDecoderConfig;
22 } 21 }
23 22
24 namespace chromecast { 23 namespace chromecast {
25 struct Size; 24 struct Size;
26 namespace media { 25 namespace media {
27 class AvPipelineImpl; 26 class AvPipelineImpl;
28 class BrowserCdmCast; 27 class BrowserCdmCast;
29 class BufferingState; 28 class BufferingState;
30 class CodedFrameProvider; 29 class CodedFrameProvider;
31 class VideoPipelineDevice;
32 30
33 class VideoPipelineImpl : public VideoPipeline { 31 class VideoPipelineImpl {
34 public: 32 public:
35 // |buffering_controller| can be NULL. 33 VideoPipelineImpl(MediaPipelineBackend::VideoDecoder* decoder,
36 explicit VideoPipelineImpl(VideoPipelineDevice* video_device); 34 const VideoPipelineClient& client);
37 ~VideoPipelineImpl() override; 35 ~VideoPipelineImpl();
38 36
39 // Input port of the pipeline. 37 // Input port of the pipeline.
40 void SetCodedFrameProvider(scoped_ptr<CodedFrameProvider> frame_provider); 38 void SetCodedFrameProvider(scoped_ptr<CodedFrameProvider> frame_provider);
41 39
42 // Provide the CDM to use to decrypt samples. 40 // Provide the CDM to use to decrypt samples.
43 void SetCdm(BrowserCdmCast* media_keys); 41 void SetCdm(BrowserCdmCast* media_keys);
44 42
45 // Functions to control the state of the audio pipeline. 43 // Functions to control the state of the audio pipeline.
46 void Initialize( 44 void Initialize(
47 const std::vector<::media::VideoDecoderConfig>& configs, 45 const std::vector<::media::VideoDecoderConfig>& configs,
48 scoped_ptr<CodedFrameProvider> frame_provider, 46 scoped_ptr<CodedFrameProvider> frame_provider,
49 const ::media::PipelineStatusCB& status_cb); 47 const ::media::PipelineStatusCB& status_cb);
50 bool StartPlayingFrom(base::TimeDelta time, 48 bool StartPlayingFrom(base::TimeDelta time,
51 const scoped_refptr<BufferingState>& buffering_state); 49 const scoped_refptr<BufferingState>& buffering_state);
52 void Flush(const ::media::PipelineStatusCB& status_cb); 50 void Flush(const ::media::PipelineStatusCB& status_cb);
53 void Stop(); 51 void Stop();
54 52
55 // Update the playback statistics for this video stream. 53 // Update the playback statistics for this video stream.
56 void UpdateStatistics(); 54 void UpdateStatistics();
57 55
58 // VideoPipeline implementation. 56 void OnBufferPushed(MediaPipelineBackend::BufferStatus status);
59 void SetClient(const VideoPipelineClient& client) override; 57 void OnEndOfStream();
58 void OnError();
59 void OnNaturalSizeChanged(const Size& size);
60 60
61 private: 61 private:
62 class DeviceClientImpl; 62 class DeviceClientImpl;
63 friend class DeviceClientImpl; 63 friend class DeviceClientImpl;
64 64
65 void OnFlushDone(const ::media::PipelineStatusCB& status_cb); 65 void OnFlushDone(const ::media::PipelineStatusCB& status_cb);
66 void OnUpdateConfig(StreamId id, 66 void OnUpdateConfig(StreamId id,
67 const ::media::AudioDecoderConfig& audio_config, 67 const ::media::AudioDecoderConfig& audio_config,
68 const ::media::VideoDecoderConfig& video_config); 68 const ::media::VideoDecoderConfig& video_config);
69 void OnNaturalSizeChanged(const Size& size);
70 69
71 VideoPipelineDevice* video_device_; 70 MediaPipelineBackend::VideoDecoder* video_decoder_;
72 71
73 scoped_ptr<AvPipelineImpl> av_pipeline_impl_; 72 scoped_ptr<AvPipelineImpl> av_pipeline_impl_;
74 VideoPipelineClient video_client_; 73 VideoPipelineClient video_client_;
75 74
76 ::media::PipelineStatistics previous_stats_; 75 ::media::PipelineStatistics previous_stats_;
77 76
78 base::WeakPtr<VideoPipelineImpl> weak_this_; 77 base::WeakPtr<VideoPipelineImpl> weak_this_;
79 base::WeakPtrFactory<VideoPipelineImpl> weak_factory_; 78 base::WeakPtrFactory<VideoPipelineImpl> weak_factory_;
80 79
81 DISALLOW_COPY_AND_ASSIGN(VideoPipelineImpl); 80 DISALLOW_COPY_AND_ASSIGN(VideoPipelineImpl);
82 }; 81 };
83 82
84 } // namespace media 83 } // namespace media
85 } // namespace chromecast 84 } // namespace chromecast
86 85
87 #endif // CHROMECAST_MEDIA_CMA_BASE_VIDEO_PIPELINE_IMPL_H_ 86 #endif // CHROMECAST_MEDIA_CMA_BASE_VIDEO_PIPELINE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698