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

Side by Side Diff: webrtc/api/peerconnectioninterface.h

Issue 1949533002: WIP: Move the creation of AudioCodecFactory into PeerConnectionFactory. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Retained Channel API by adding overloads; also add intended AudioReceiveStream API Created 4 years, 7 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
OLDNEW
1 /* 1 /*
2 * Copyright 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2012 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 678 matching lines...) Expand 10 before | Expand all | Expand 10 after
689 // |worker_thread| and |signaling_thread| are the only mandatory 689 // |worker_thread| and |signaling_thread| are the only mandatory
690 // parameters. 690 // parameters.
691 // 691 //
692 // If non-null, ownership of |default_adm|, |encoder_factory| and 692 // If non-null, ownership of |default_adm|, |encoder_factory| and
693 // |decoder_factory| are transferred to the returned factory. 693 // |decoder_factory| are transferred to the returned factory.
694 rtc::scoped_refptr<PeerConnectionFactoryInterface> 694 rtc::scoped_refptr<PeerConnectionFactoryInterface>
695 CreatePeerConnectionFactory( 695 CreatePeerConnectionFactory(
696 rtc::Thread* worker_thread, 696 rtc::Thread* worker_thread,
697 rtc::Thread* signaling_thread, 697 rtc::Thread* signaling_thread,
698 AudioDeviceModule* default_adm, 698 AudioDeviceModule* default_adm,
699 cricket::WebRtcVideoEncoderFactory* encoder_factory, 699 cricket::WebRtcVideoEncoderFactory* video_encoder_factory,
700 cricket::WebRtcVideoDecoderFactory* decoder_factory); 700 cricket::WebRtcVideoDecoderFactory* video_decoder_factory);
701 701
702 } // namespace webrtc 702 } // namespace webrtc
703 703
704 #endif // WEBRTC_API_PEERCONNECTIONINTERFACE_H_ 704 #endif // WEBRTC_API_PEERCONNECTIONINTERFACE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698