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

Unified Diff: chromecast/browser/media/cast_renderer.cc

Issue 1774763002: Plumb DemuxerStream::EnableBitstreamConverter through mojo pipeline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added comment Created 4 years, 9 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 | media/mojo/interfaces/demuxer_stream.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/browser/media/cast_renderer.cc
diff --git a/chromecast/browser/media/cast_renderer.cc b/chromecast/browser/media/cast_renderer.cc
index badc7cbc411bc2e2628f6fff924b94aa936adb7f..0e0512f2c1869acf6447429000fc40df6d6e8603 100644
--- a/chromecast/browser/media/cast_renderer.cc
+++ b/chromecast/browser/media/cast_renderer.cc
@@ -98,6 +98,7 @@ void CastRenderer::Initialize(
init_cb.Run(status);
return;
}
+ audio_stream->EnableBitstreamConverter();
}
// Initialize video.
@@ -124,6 +125,7 @@ void CastRenderer::Initialize(
init_cb.Run(status);
return;
}
+ video_stream->EnableBitstreamConverter();
}
ended_cb_ = ended_cb;
« no previous file with comments | « no previous file | media/mojo/interfaces/demuxer_stream.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698