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

Side by Side Diff: talk/app/webrtc/webrtcsession.h

Issue 1646253004: Split out dscp option from VideoOptions to new struct MediaChannelOptions. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix WebRtcVideoChannel2Test.TestSetDscpOptions. 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 unified diff | Download patch
« no previous file with comments | « no previous file | talk/app/webrtc/webrtcsession.cc » ('j') | talk/media/base/mediachannel.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * libjingle 2 * libjingle
3 * Copyright 2012 Google Inc. 3 * Copyright 2012 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
503 // 3. If both 1&2 are false, data channel is not allowed (DCT_NONE). 503 // 3. If both 1&2 are false, data channel is not allowed (DCT_NONE).
504 cricket::DataChannelType data_channel_type_; 504 cricket::DataChannelType data_channel_type_;
505 rtc::scoped_ptr<IceRestartAnswerLatch> ice_restart_latch_; 505 rtc::scoped_ptr<IceRestartAnswerLatch> ice_restart_latch_;
506 506
507 rtc::scoped_ptr<WebRtcSessionDescriptionFactory> 507 rtc::scoped_ptr<WebRtcSessionDescriptionFactory>
508 webrtc_session_desc_factory_; 508 webrtc_session_desc_factory_;
509 509
510 // Member variables for caching global options. 510 // Member variables for caching global options.
511 cricket::AudioOptions audio_options_; 511 cricket::AudioOptions audio_options_;
512 cricket::VideoOptions video_options_; 512 cricket::VideoOptions video_options_;
513 cricket::MediaChannelOptions channel_options_;
513 MetricsObserverInterface* metrics_observer_; 514 MetricsObserverInterface* metrics_observer_;
514 515
515 // Declares the bundle policy for the WebRTCSession. 516 // Declares the bundle policy for the WebRTCSession.
516 PeerConnectionInterface::BundlePolicy bundle_policy_; 517 PeerConnectionInterface::BundlePolicy bundle_policy_;
517 518
518 // Declares the RTCP mux policy for the WebRTCSession. 519 // Declares the RTCP mux policy for the WebRTCSession.
519 PeerConnectionInterface::RtcpMuxPolicy rtcp_mux_policy_; 520 PeerConnectionInterface::RtcpMuxPolicy rtcp_mux_policy_;
520 521
521 RTC_DISALLOW_COPY_AND_ASSIGN(WebRtcSession); 522 RTC_DISALLOW_COPY_AND_ASSIGN(WebRtcSession);
522 }; 523 };
523 } // namespace webrtc 524 } // namespace webrtc
524 525
525 #endif // TALK_APP_WEBRTC_WEBRTCSESSION_H_ 526 #endif // TALK_APP_WEBRTC_WEBRTCSESSION_H_
OLDNEW
« no previous file with comments | « no previous file | talk/app/webrtc/webrtcsession.cc » ('j') | talk/media/base/mediachannel.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698