| Index: talk/app/webrtc/mediastreamprovider.h
|
| diff --git a/talk/app/webrtc/mediastreamprovider.h b/talk/app/webrtc/mediastreamprovider.h
|
| index 7e25b66a3cba78495d239520be97189c04ee2667..b80f6b2bd4e0f4783a7b21727e1a7e74cf7209f5 100644
|
| --- a/talk/app/webrtc/mediastreamprovider.h
|
| +++ b/talk/app/webrtc/mediastreamprovider.h
|
| @@ -55,17 +55,19 @@ namespace webrtc {
|
| class AudioProviderInterface {
|
| public:
|
| // Enable/disable the audio playout of a remote audio track with |ssrc|.
|
| - virtual void SetAudioPlayout(uint32 ssrc, bool enable,
|
| + virtual void SetAudioPlayout(uint32_t ssrc,
|
| + bool enable,
|
| cricket::AudioRenderer* renderer) = 0;
|
| // Enable/disable sending audio on the local audio track with |ssrc|.
|
| // When |enable| is true |options| should be applied to the audio track.
|
| - virtual void SetAudioSend(uint32 ssrc, bool enable,
|
| + virtual void SetAudioSend(uint32_t ssrc,
|
| + bool enable,
|
| const cricket::AudioOptions& options,
|
| cricket::AudioRenderer* renderer) = 0;
|
|
|
| // Sets the audio playout volume of a remote audio track with |ssrc|.
|
| // |volume| is in the range of [0, 10].
|
| - virtual void SetAudioPlayoutVolume(uint32 ssrc, double volume) = 0;
|
| + virtual void SetAudioPlayoutVolume(uint32_t ssrc, double volume) = 0;
|
|
|
| protected:
|
| virtual ~AudioProviderInterface() {}
|
| @@ -76,13 +78,15 @@ class AudioProviderInterface {
|
| // PeerConnection.
|
| class VideoProviderInterface {
|
| public:
|
| - virtual bool SetCaptureDevice(uint32 ssrc,
|
| + virtual bool SetCaptureDevice(uint32_t ssrc,
|
| cricket::VideoCapturer* camera) = 0;
|
| // Enable/disable the video playout of a remote video track with |ssrc|.
|
| - virtual void SetVideoPlayout(uint32 ssrc, bool enable,
|
| + virtual void SetVideoPlayout(uint32_t ssrc,
|
| + bool enable,
|
| cricket::VideoRenderer* renderer) = 0;
|
| // Enable sending video on the local video track with |ssrc|.
|
| - virtual void SetVideoSend(uint32 ssrc, bool enable,
|
| + virtual void SetVideoSend(uint32_t ssrc,
|
| + bool enable,
|
| const cricket::VideoOptions* options) = 0;
|
|
|
| protected:
|
|
|