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

Unified Diff: chromecast/media/cma/backend/video_pipeline_device.h

Issue 1074383002: Introduce VideoConfig/AudioConfig class for CMA backend (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add TODO comments and fix unit test Created 5 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
Index: chromecast/media/cma/backend/video_pipeline_device.h
diff --git a/chromecast/media/cma/backend/video_pipeline_device.h b/chromecast/media/cma/backend/video_pipeline_device.h
index 30527407b9fd7aafde7579ad82558bf167c29d16..ee7dff4c0d1f7c1ba72eaba4520064be1411ddba 100644
--- a/chromecast/media/cma/backend/video_pipeline_device.h
+++ b/chromecast/media/cma/backend/video_pipeline_device.h
@@ -13,13 +13,10 @@ namespace gfx {
class Size;
}
-namespace media {
-class VideoDecoderConfig;
-}
-
namespace chromecast {
namespace media {
class DecoderBufferBase;
+struct VideoConfig;
// VideoPipelineDevice -
//
@@ -51,7 +48,7 @@ class VideoPipelineDevice : public MediaComponentDevice {
// Must be called before switching from |kStateUninitialized| to |kStateIdle|.
// Afterwards, this can be invoked any time the configuration changes.
// Returns true if the configuration is a supported configuration.
- virtual bool SetConfig(const ::media::VideoDecoderConfig& config) = 0;
+ virtual bool SetConfig(const VideoConfig& config) = 0;
private:
DISALLOW_COPY_AND_ASSIGN(VideoPipelineDevice);

Powered by Google App Engine
This is Rietveld 408576698