Index: media/base/android/media_source_player.cc |
diff --git a/media/base/android/media_source_player.cc b/media/base/android/media_source_player.cc |
index 5abf157de9b628bf4597278149dec81fa397b92f..a7de25040dcb907a50117baecb898315014fb4fb 100644 |
--- a/media/base/android/media_source_player.cc |
+++ b/media/base/android/media_source_player.cc |
@@ -33,8 +33,8 @@ bool MediaSourcePlayer::IsTypeSupported( |
const std::string& security_level, |
const std::string& container, |
ddorwin
2013/09/16 17:58:10
What is the plan for the container parameter?
qinmin
2013/09/17 19:21:06
see above, the function is removed
On 2013/09/16 1
|
const std::vector<std::string>& codecs) { |
- if (!MediaDrmBridge::IsCryptoSchemeSupported(scheme_uuid, container)) { |
- DVLOG(1) << "UUID and container '" << container << "' not supported."; |
xhwang
2013/09/17 18:56:46
ditto, probably leave that as is?
qinmin
2013/09/17 21:26:23
Done.
|
+ if (!MediaDrmBridge::IsCryptoSchemeSupported(scheme_uuid)) { |
+ DVLOG(1) << "UUID not supported."; |
return false; |
} |