Index: chromecast/media/cma/base/cma_logging.h |
diff --git a/chromecast/media/cma/base/cma_logging.h b/chromecast/media/cma/base/cma_logging.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d840cc07592307845a96f3981121366471b5b7fe |
--- /dev/null |
+++ b/chromecast/media/cma/base/cma_logging.h |
@@ -0,0 +1,24 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROMECAST_MEDIA_CMA_BASE_CMA_LOGGING_H_ |
+#define CHROMECAST_MEDIA_CMA_BASE_CMA_LOGGING_H_ |
+ |
+#include "base/logging.h" |
+ |
+namespace media { |
+namespace cma { |
+ |
+#define CMALOG(loglevel) VLOG(loglevel) |
+ |
+enum { |
+ kLogControl = 2, |
+ kLogFrame = 3 |
+}; |
+ |
+} // namespace cma |
+} // namespace media |
+ |
+#endif // CHROMECAST_MEDIA_CMA_BASE_CMA_LOGGING_H_ |
+ |