1 /*
2  *  Copyright 2011 The WebRTC project authors. All Rights Reserved.
3  *
4  *  Use of this source code is governed by a BSD-style license
5  *  that can be found in the LICENSE file in the root of the source
6  *  tree. An additional intellectual property rights grant can be found
7  *  in the file PATENTS.  All contributing project authors may
8  *  be found in the AUTHORS file in the root of the source tree.
9  */
10 
11 // This file includes proxy classes for tracks. The purpose is
12 // to make sure tracks are only accessed from the signaling thread.
13 
14 #ifndef API_MEDIASTREAMTRACKPROXY_H_
15 #define API_MEDIASTREAMTRACKPROXY_H_
16 
17 #include <string>
18 
19 #include "api/mediastreaminterface.h"
20 #include "api/proxy.h"
21 
22 namespace webrtc {
23 
24 // TODO(deadbeef): Move this to .cc file and out of api/. What threads methods
25 // are called on is an implementation detail.
26 
27 BEGIN_SIGNALING_PROXY_MAP(AudioTrack)
28   PROXY_SIGNALING_THREAD_DESTRUCTOR()
29   PROXY_CONSTMETHOD0(std::string, kind)
30   PROXY_CONSTMETHOD0(std::string, id)
31   PROXY_CONSTMETHOD0(TrackState, state)
32   PROXY_CONSTMETHOD0(bool, enabled)
33   PROXY_CONSTMETHOD0(AudioSourceInterface*, GetSource)
34   PROXY_METHOD1(void, AddSink, AudioTrackSinkInterface*)
35   PROXY_METHOD1(void, RemoveSink, AudioTrackSinkInterface*)
36   PROXY_METHOD1(bool, GetSignalLevel, int*)
37   PROXY_METHOD0(rtc::scoped_refptr<AudioProcessorInterface>, GetAudioProcessor)
38   PROXY_METHOD1(bool, set_enabled, bool)
39   PROXY_METHOD1(void, RegisterObserver, ObserverInterface*)
40   PROXY_METHOD1(void, UnregisterObserver, ObserverInterface*)
41 END_PROXY_MAP()
42 
43 BEGIN_PROXY_MAP(VideoTrack)
44   PROXY_SIGNALING_THREAD_DESTRUCTOR()
45   PROXY_CONSTMETHOD0(std::string, kind)
46   PROXY_CONSTMETHOD0(std::string, id)
47   PROXY_CONSTMETHOD0(TrackState, state)
48   PROXY_CONSTMETHOD0(bool, enabled)
49   PROXY_METHOD1(bool, set_enabled, bool)
50   PROXY_CONSTMETHOD0(ContentHint, content_hint)
51   PROXY_METHOD1(void, set_content_hint, ContentHint)
52   PROXY_WORKER_METHOD2(void,
53                        AddOrUpdateSink,
54                        rtc::VideoSinkInterface<VideoFrame>*,
55                        const rtc::VideoSinkWants&)
56   PROXY_WORKER_METHOD1(void, RemoveSink, rtc::VideoSinkInterface<VideoFrame>*)
57   PROXY_CONSTMETHOD0(VideoTrackSourceInterface*, GetSource)
58 
59   PROXY_METHOD1(void, RegisterObserver, ObserverInterface*)
60   PROXY_METHOD1(void, UnregisterObserver, ObserverInterface*)
61 END_PROXY_MAP()
62 
63 }  // namespace webrtc
64 
65 #endif  // API_MEDIASTREAMTRACKPROXY_H_
66