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

Unified Diff: content/renderer/media/media_factory.cc

Issue 2770293002: Detect HLS from demuxing results (Closed)
Patch Set: Minor changes in comments Created 3 years, 4 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 | gpu/ipc/service/stream_texture_android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/media_factory.cc
diff --git a/content/renderer/media/media_factory.cc b/content/renderer/media/media_factory.cc
index 358d319a1b2aa347f4091e0b325fb88cc4a60ee2..2534b6f381ab8dc027ef93ba1f2e8c17cf168095 100644
--- a/content/renderer/media/media_factory.cc
+++ b/content/renderer/media/media_factory.cc
@@ -124,10 +124,6 @@ bool UseMediaPlayerRenderer(const GURL& url) {
if (url.SchemeIsBlob())
return false;
- // The default renderer does not support HLS.
- if (media::MediaCodecUtil::IsHLSURL(url))
- return true;
-
// Don't use the default renderer if the container likely contains a codec we
// can't decode in software and platform decoders are not available.
if (!media::HasPlatformDecoderSupport()) {
« no previous file with comments | « no previous file | gpu/ipc/service/stream_texture_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698