blob: 6eb90cddfece1a5fc14bad1f1dd7173c39c47ded [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001/*
2 * libjingle
3 * Copyright 2011 Google Inc.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 * 3. The name of the author may not be used to endorse or promote products
14 * derived from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
19 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28#ifndef TALK_MEDIA_WEBRTCMEDIAENGINE_H_
29#define TALK_MEDIA_WEBRTCMEDIAENGINE_H_
30
31#include "talk/media/base/mediaengine.h"
32#include "talk/media/webrtc/webrtcexport.h"
33
34namespace webrtc {
35class AudioDeviceModule;
36class VideoCaptureModule;
37}
38namespace cricket {
39class WebRtcVideoDecoderFactory;
40class WebRtcVideoEncoderFactory;
41}
42
henrike@webrtc.org28e20752013-07-10 00:45:36 +000043#if !defined(LIBPEERCONNECTION_LIB) && \
44 !defined(LIBPEERCONNECTION_IMPLEMENTATION)
45
46WRME_EXPORT
47cricket::MediaEngineInterface* CreateWebRtcMediaEngine(
48 webrtc::AudioDeviceModule* adm, webrtc::AudioDeviceModule* adm_sc,
49 cricket::WebRtcVideoEncoderFactory* encoder_factory,
50 cricket::WebRtcVideoDecoderFactory* decoder_factory);
51
52WRME_EXPORT
53void DestroyWebRtcMediaEngine(cricket::MediaEngineInterface* media_engine);
54
henrike@webrtc.org28e20752013-07-10 00:45:36 +000055#endif // !defined(LIBPEERCONNECTION_LIB) &&
56 // !defined(LIBPEERCONNECTION_IMPLEMENTATION)
57
buildbot@webrtc.org58e7c862014-06-20 00:26:50 +000058namespace cricket {
59
60class WebRtcMediaEngineFactory {
61 public:
62 static MediaEngineInterface* Create();
63 static MediaEngineInterface* Create(
64 webrtc::AudioDeviceModule* adm,
65 webrtc::AudioDeviceModule* adm_sc,
66 WebRtcVideoEncoderFactory* encoder_factory,
67 WebRtcVideoDecoderFactory* decoder_factory);
68};
69
70} // namespace cricket
71
henrike@webrtc.org28e20752013-07-10 00:45:36 +000072#endif // TALK_MEDIA_WEBRTCMEDIAENGINE_H_