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

Unified Diff: chromecast/media/base/media_codec_support.h

Issue 1097833002: Chromecast: temporary shim files for internal media codec callbacks. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « no previous file | chromecast/media/base/media_codec_support.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/media/base/media_codec_support.h
diff --git a/chromecast/media/base/media_codec_support.h b/chromecast/media/base/media_codec_support.h
new file mode 100644
index 0000000000000000000000000000000000000000..e961177ecb0c735308bc6af2cca3e960ec31ff36
--- /dev/null
+++ b/chromecast/media/base/media_codec_support.h
@@ -0,0 +1,34 @@
+// Copyright 2015 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_BASE_MEDIA_CODEC_SUPPORT_H_
+#define CHROMECAST_MEDIA_BASE_MEDIA_CODEC_SUPPORT_H_
+
+#include <string>
+
+#include "base/callback.h"
+#include "net/base/mime_util.h"
+
+// TODO(gunsch/servolk): remove when this definition exists upstream.
+
+namespace net {
+typedef base::Callback<bool(const std::string&)> IsCodecSupportedCB;
+bool DefaultIsCodecSupported(const std::string&);
+}
+
+namespace chromecast {
+namespace media {
+
+// This function should return a callback capable of deciding whether a given
+// codec (passed in as a string representation of the codec id conforming to
+// RFC 6381) is supported or not. The implementation of this function is
+// expected to be provided somewhere in the vendor platform-specific libraries
+// that will get linked with cast_shell_common target.
+net::IsCodecSupportedCB GetIsCodecSupportedOnChromecastCB();
+
+} // namespace media
+} // namespace chromecast
+
+#endif // CHROMECAST_MEDIA_BASE_MEDIA_CODEC_SUPPORT_H_
+
« no previous file with comments | « no previous file | chromecast/media/base/media_codec_support.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698