Index: chromecast/media/cma/pipeline/load_type.h |
diff --git a/chromecast/media/cma/base/coded_frame_provider.cc b/chromecast/media/cma/pipeline/load_type.h |
similarity index 52% |
copy from chromecast/media/cma/base/coded_frame_provider.cc |
copy to chromecast/media/cma/pipeline/load_type.h |
index 56e461cfd8d0595d15fc522948c5a64cb71a50d2..569b2ef33f2fc5fddb1e3481646947652c34b6f5 100644 |
--- a/chromecast/media/cma/base/coded_frame_provider.cc |
+++ b/chromecast/media/cma/pipeline/load_type.h |
@@ -2,16 +2,19 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "chromecast/media/cma/base/coded_frame_provider.h" |
+#ifndef CHROMECAST_MEDIA_CMA_PIPELINE_LOAD_TYPE_H_ |
+#define CHROMECAST_MEDIA_CMA_PIPELINE_LOAD_TYPE_H_ |
namespace chromecast { |
namespace media { |
-CodedFrameProvider::CodedFrameProvider() { |
-} |
- |
-CodedFrameProvider::~CodedFrameProvider() { |
-} |
+enum LoadType { |
+ kLoadTypeURL, |
+ kLoadTypeMediaSource, |
+ kLoadTypeMediaStream, |
+}; |
} // namespace media |
} // namespace chromecast |
+ |
+#endif // CHROMECAST_MEDIA_CMA_PIPELINE_LOAD_TYPE_H_ |