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

Side by Side Diff: media/engine/fakewebrtccall.h

Issue 2826263004: Move responsibility for RTP header extensions on video receive. (Closed)
Patch Set: Crude rebase. Created 3 years, 2 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/mediachannel.h ('k') | media/engine/fakewebrtccall.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 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 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 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 int last_sent_nonnegative_packet_id() const { 252 int last_sent_nonnegative_packet_id() const {
253 return last_sent_nonnegative_packet_id_; 253 return last_sent_nonnegative_packet_id_;
254 } 254 }
255 255
256 webrtc::NetworkState GetNetworkState(webrtc::MediaType media) const; 256 webrtc::NetworkState GetNetworkState(webrtc::MediaType media) const;
257 int GetNumCreatedSendStreams() const; 257 int GetNumCreatedSendStreams() const;
258 int GetNumCreatedReceiveStreams() const; 258 int GetNumCreatedReceiveStreams() const;
259 void SetStats(const webrtc::Call::Stats& stats); 259 void SetStats(const webrtc::Call::Stats& stats);
260 260
261 private: 261 private:
262 void SetVideoReceiveRtpHeaderExtensions(
263 const std::vector<webrtc::RtpExtension>& extensions) override;
262 webrtc::AudioSendStream* CreateAudioSendStream( 264 webrtc::AudioSendStream* CreateAudioSendStream(
263 const webrtc::AudioSendStream::Config& config) override; 265 const webrtc::AudioSendStream::Config& config) override;
264 void DestroyAudioSendStream(webrtc::AudioSendStream* send_stream) override; 266 void DestroyAudioSendStream(webrtc::AudioSendStream* send_stream) override;
265 267
266 webrtc::AudioReceiveStream* CreateAudioReceiveStream( 268 webrtc::AudioReceiveStream* CreateAudioReceiveStream(
267 const webrtc::AudioReceiveStream::Config& config) override; 269 const webrtc::AudioReceiveStream::Config& config) override;
268 void DestroyAudioReceiveStream( 270 void DestroyAudioReceiveStream(
269 webrtc::AudioReceiveStream* receive_stream) override; 271 webrtc::AudioReceiveStream* receive_stream) override;
270 272
271 webrtc::VideoSendStream* CreateVideoSendStream( 273 webrtc::VideoSendStream* CreateVideoSendStream(
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 321
320 int num_created_send_streams_; 322 int num_created_send_streams_;
321 int num_created_receive_streams_; 323 int num_created_receive_streams_;
322 324
323 int audio_transport_overhead_; 325 int audio_transport_overhead_;
324 int video_transport_overhead_; 326 int video_transport_overhead_;
325 }; 327 };
326 328
327 } // namespace cricket 329 } // namespace cricket
328 #endif // MEDIA_ENGINE_FAKEWEBRTCCALL_H_ 330 #endif // MEDIA_ENGINE_FAKEWEBRTCCALL_H_
OLDNEW
« no previous file with comments | « media/base/mediachannel.h ('k') | media/engine/fakewebrtccall.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698