OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "content/public/renderer/media_stream_audio_sink.h" | 5 #include "content/public/renderer/media_stream_audio_sink.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "content/renderer/media/media_stream_track.h" | 8 #include "content/renderer/media/media_stream_track.h" |
9 #include "content/renderer/media/webrtc_local_audio_track.h" | 9 #include "content/renderer/media/webrtc_local_audio_track.h" |
10 #include "third_party/WebKit/public/platform/WebMediaStreamSource.h" | 10 #include "third_party/WebKit/public/platform/WebMediaStreamSource.h" |
(...skipping 25 matching lines...) Expand all Loading... | |
36 if (!native_track->is_local_track()) { | 36 if (!native_track->is_local_track()) { |
37 LOG(ERROR) << "Can't remove the sink from a remote audio track"; | 37 LOG(ERROR) << "Can't remove the sink from a remote audio track"; |
38 return; | 38 return; |
39 } | 39 } |
40 | 40 |
41 WebRtcLocalAudioTrack* audio_track = | 41 WebRtcLocalAudioTrack* audio_track = |
42 static_cast<WebRtcLocalAudioTrack*>(native_track); | 42 static_cast<WebRtcLocalAudioTrack*>(native_track); |
43 audio_track->RemoveSink(sink); | 43 audio_track->RemoveSink(sink); |
44 } | 44 } |
45 | 45 |
46 media::AudioParameters MediaStreamAudioSink::GetFormatFromAudioTrack( | |
47 const blink::WebMediaStreamTrack& track) { | |
48 MediaStreamTrack* native_track = MediaStreamTrack::GetTrack(track); | |
49 if (!native_track->is_local_track()) { | |
50 LOG(ERROR) << "Can't get format from a remote audio track"; | |
Avi (use Gerrit)
2015/01/27 23:25:17
Why LOG rather than DLOG? Especially since this wo
Anand Mistry (off Chromium)
2015/01/28 04:24:32
I don't know anything about webrtc, but presumably
| |
51 return media::AudioParameters(); | |
52 } | |
53 | |
54 WebRtcLocalAudioTrack* audio_track = | |
55 static_cast<WebRtcLocalAudioTrack*>(native_track); | |
56 return audio_track->GetOutputFormat(); | |
57 } | |
58 | |
46 } // namespace content | 59 } // namespace content |
OLD | NEW |