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

Unified Diff: chromecast/public/media_codec_support_shlib.h

Issue 2156193003: [Chromecast] Add a custom CastMediaClient for Chromecast (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@codecs
Patch Set: CR fixes Created 4 years, 5 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/public/media_codec_support_shlib.h
diff --git a/chromecast/public/media_codec_support_shlib.h b/chromecast/public/media_codec_support_shlib.h
index 168ecd81f6c80a74a6ed8be333f8d00b076e4312..eb3e88cd3db5ecf9195b87bb2f1be2b4a87b60df 100644
--- a/chromecast/public/media_codec_support_shlib.h
+++ b/chromecast/public/media_codec_support_shlib.h
@@ -8,6 +8,7 @@
#include <string>
#include "chromecast_export.h"
+#include "media/decoder_config.h"
namespace chromecast {
namespace media {
@@ -33,6 +34,13 @@ class CHROMECAST_EXPORT MediaCodecSupportShlib {
static CodecSupport IsSupported(const std::string& codec);
};
gfhuang 2016/07/27 20:13:58 add comments about what this API is doing (what's
servolk 2016/07/27 22:39:36 Done.
+class CHROMECAST_EXPORT MediaCapabilitiesShlib {
+ public:
+ static bool IsSupportedVideoConfig(VideoCodec codec,
+ VideoProfile profile,
+ int level) __attribute__((__weak__));
+};
+
} // namespace media
} // namespace chromecast

Powered by Google App Engine
This is Rietveld 408576698