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

Unified Diff: media/filters/ffmpeg_demuxer.cc

Issue 11859023: NOT FOR SUBMITTING: Enable FFmpeg and VDA on Android (just for developing) Base URL: https://chromium.googlesource.com/chromium/src.git@avda-review
Patch Set: Created 7 years, 11 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 | « content/renderer/render_view_impl.cc ('k') | media/media.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/ffmpeg_demuxer.cc
diff --git a/media/filters/ffmpeg_demuxer.cc b/media/filters/ffmpeg_demuxer.cc
index abe8fe1d63dccd062cea2d18a16d72ec7384350b..6ff902868a42aee53ee4f3a6c09fb47da24d4698 100644
--- a/media/filters/ffmpeg_demuxer.cc
+++ b/media/filters/ffmpeg_demuxer.cc
@@ -323,6 +323,11 @@ void FFmpegDemuxer::Initialize(DemuxerHost* host,
scoped_refptr<DemuxerStream> FFmpegDemuxer::GetStream(
DemuxerStream::Type type) {
DCHECK(message_loop_->BelongsToCurrentThread());
+ // For now, there is an issue on opensles_output.cc.
+ // Turning audio off until the issue is resolved.
+ if (type == DemuxerStream::AUDIO) {
+ return NULL;
+ }
return GetFFmpegStream(type);
}
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | media/media.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698