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

Side by Side Diff: media/base/android/media_url_demuxer.cc

Issue 1935873002: Implement disabling and enabling media tracks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@track-control2
Patch Set: rebase 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 unified diff | Download patch
« no previous file with comments | « media/base/android/media_url_demuxer.h ('k') | media/base/demuxer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "media/base/android/media_url_demuxer.h" 5 #include "media/base/android/media_url_demuxer.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 8
9 namespace media { 9 namespace media {
10 10
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 return base::TimeDelta(); 57 return base::TimeDelta();
58 } 58 }
59 base::Time MediaUrlDemuxer::GetTimelineOffset() const { 59 base::Time MediaUrlDemuxer::GetTimelineOffset() const {
60 return base::Time(); 60 return base::Time();
61 } 61 }
62 62
63 int64_t MediaUrlDemuxer::GetMemoryUsage() const { 63 int64_t MediaUrlDemuxer::GetMemoryUsage() const {
64 return 0; 64 return 0;
65 } 65 }
66 66
67 void MediaUrlDemuxer::OnEnabledAudioTracksChanged(
68 const std::vector<MediaTrack::Id>& track_ids,
69 base::TimeDelta currTime) {
70 NOTIMPLEMENTED();
71 }
72 void MediaUrlDemuxer::OnSelectedVideoTrackChanged(
73 const std::vector<MediaTrack::Id>& track_ids,
74 base::TimeDelta currTime) {
75 NOTIMPLEMENTED();
76 }
77
67 } // namespace media 78 } // namespace media
OLDNEW
« no previous file with comments | « media/base/android/media_url_demuxer.h ('k') | media/base/demuxer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698