Index: chromecast/common/media/cma_ipc_common.h |
diff --git a/chromecast/media/cma/pipeline/media_pipeline_client.cc b/chromecast/common/media/cma_ipc_common.h |
similarity index 51% |
copy from chromecast/media/cma/pipeline/media_pipeline_client.cc |
copy to chromecast/common/media/cma_ipc_common.h |
index 8dbfc8db7242383ae733254398ec3337fa11e5e1..a3c45986ae558b6836f375eee32c25cd59a5f33e 100644 |
--- a/chromecast/media/cma/pipeline/media_pipeline_client.cc |
+++ b/chromecast/common/media/cma_ipc_common.h |
@@ -2,16 +2,18 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "chromecast/media/cma/pipeline/media_pipeline_client.h" |
+#ifndef CHROMECAST_COMMON_MEDIA_CMA_IPC_COMMON_H_ |
+#define CHROMECAST_COMMON_MEDIA_CMA_IPC_COMMON_H_ |
namespace chromecast { |
namespace media { |
-MediaPipelineClient::MediaPipelineClient() { |
-} |
- |
-MediaPipelineClient::~MediaPipelineClient() { |
-} |
+extern const int kNoTrackId; |
gunsch
2014/12/20 22:41:33
Are these values more appropriate as an enum?
erickung1
2014/12/21 11:10:46
Done.
|
+extern const int kAudioTrackId; |
+extern const int kVideoTrackId; |
} // namespace media |
} // namespace chromecast |
+ |
+#endif // CHROMECAST_COMMON_MEDIA_CMA_IPC_COMMON_H_ |
+ |