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

Unified Diff: content/renderer/media/media_stream_audio_track.h

Issue 1721273002: MediaStream audio object graph untangling and clean-ups. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed o1ka's comments Created 4 years, 10 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
Index: content/renderer/media/media_stream_audio_track.h
diff --git a/content/renderer/media/media_stream_audio_track.h b/content/renderer/media/media_stream_audio_track.h
index 2175b4e186f47fefc982e097a1691dac1fdd7383..dbafb5e50339adb983d990b9ff3f1b3ed3976dbb 100644
--- a/content/renderer/media/media_stream_audio_track.h
+++ b/content/renderer/media/media_stream_audio_track.h
@@ -5,6 +5,9 @@
#ifndef CONTENT_RENDERER_MEDIA_MEDIA_STREAM_AUDIO_TRACK_H_
#define CONTENT_RENDERER_MEDIA_MEDIA_STREAM_AUDIO_TRACK_H_
+#include <vector>
+
+#include "base/callback.h"
#include "base/macros.h"
#include "content/renderer/media/media_stream_track.h"
@@ -16,13 +19,26 @@ namespace content {
class MediaStreamAudioSink;
+// TODO(miu): In a soon-upcoming set of refactoring changes, this class will
+// take on the functionality of managing sink connections and the audio data
+// flow between source and sinks. The WebRTC-specific elements will then be
+// moved into a subclass. http://crbug.com/577874
class CONTENT_EXPORT MediaStreamAudioTrack : public MediaStreamTrack {
public:
explicit MediaStreamAudioTrack(bool is_local_track);
+
+ // Subclasses must ensure the track is stopped before this destructor is
+ // invoked.
~MediaStreamAudioTrack() override;
- static MediaStreamAudioTrack* GetTrack(
- const blink::WebMediaStreamTrack& track);
+ // Returns the MediaStreamAudioTrack instance owned by the given blink |track|
+ // or null.
+ static MediaStreamAudioTrack* From(const blink::WebMediaStreamTrack& track);
+
+ // The first time Stop() is called on this track, each |stop_callback| will be
+ // run. This is generally used by sources to be notified that the audio data
+ // flow to the track should halt.
+ void AddStopObserver(const base::Closure& stop_callback);
// Add a sink to the track. This function will trigger a OnSetFormat()
// call on the |sink|.
@@ -34,6 +50,7 @@ class CONTENT_EXPORT MediaStreamAudioTrack : public MediaStreamTrack {
virtual void RemoveSink(MediaStreamAudioSink* sink) = 0;
// TODO(tommi, xians): Remove this method.
+ // TODO(miu): See class-level TODO comment. ;-)
virtual webrtc::AudioTrackInterface* GetAudioAdapter();
// Returns the output format of the capture source. May return an invalid
@@ -44,7 +61,19 @@ class CONTENT_EXPORT MediaStreamAudioTrack : public MediaStreamTrack {
// to the complexity of all types of audio tracks+source implementations.
virtual media::AudioParameters GetOutputFormat() const = 0;
+ // Subclasses must override this method and must call WillStopTrack() to
+ // ensure the stop callbacks are run.
+ void Stop() override = 0;
+
+ protected:
+ // Runs the stop callbacks.
+ void WillStopTrack();
o1ka 2016/03/01 14:18:59 NotifyStopObservers() maybe?
miu 2016/03/02 01:12:50 Acknowledged. This got re-worked, as explained in
+
private:
+ // These are run after this track has been stopped. Even if Stop() is called
o1ka 2016/03/01 14:18:59 The comment needs some makeover now, probably some
miu 2016/03/02 01:12:50 Acknowledged. This also got re-worked, as explain
+ // multiple times, the |stop_callbacks_| are only run the first time.
+ std::vector<base::Closure> stop_callbacks_;
+
DISALLOW_COPY_AND_ASSIGN(MediaStreamAudioTrack);
};

Powered by Google App Engine
This is Rietveld 408576698