OLD | NEW |
1 /* | 1 /* |
2 * libjingle | 2 * libjingle |
3 * Copyright 2004 Google Inc. | 3 * Copyright 2004 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 22 matching lines...) Expand all Loading... |
33 #endif | 33 #endif |
34 | 34 |
35 #include <string> | 35 #include <string> |
36 #include <vector> | 36 #include <vector> |
37 | 37 |
38 #include "talk/media/base/codec.h" | 38 #include "talk/media/base/codec.h" |
39 #include "talk/media/base/mediachannel.h" | 39 #include "talk/media/base/mediachannel.h" |
40 #include "talk/media/base/mediacommon.h" | 40 #include "talk/media/base/mediacommon.h" |
41 #include "talk/media/base/videocapturer.h" | 41 #include "talk/media/base/videocapturer.h" |
42 #include "talk/media/base/videocommon.h" | 42 #include "talk/media/base/videocommon.h" |
43 #include "talk/media/base/voiceprocessor.h" | |
44 #include "talk/media/devices/devicemanager.h" | 43 #include "talk/media/devices/devicemanager.h" |
45 #include "webrtc/audio_state.h" | 44 #include "webrtc/audio_state.h" |
46 #include "webrtc/base/fileutils.h" | 45 #include "webrtc/base/fileutils.h" |
47 #include "webrtc/base/sigslotrepeater.h" | 46 #include "webrtc/base/sigslotrepeater.h" |
48 | 47 |
49 #if defined(GOOGLE_CHROME_BUILD) || defined(CHROMIUM_BUILD) | 48 #if defined(GOOGLE_CHROME_BUILD) || defined(CHROMIUM_BUILD) |
50 #define DISABLE_MEDIA_ENGINE_FACTORY | 49 #define DISABLE_MEDIA_ENGINE_FACTORY |
51 #endif | 50 #endif |
52 | 51 |
53 namespace webrtc { | 52 namespace webrtc { |
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 class DataEngineInterface { | 315 class DataEngineInterface { |
317 public: | 316 public: |
318 virtual ~DataEngineInterface() {} | 317 virtual ~DataEngineInterface() {} |
319 virtual DataMediaChannel* CreateChannel(DataChannelType type) = 0; | 318 virtual DataMediaChannel* CreateChannel(DataChannelType type) = 0; |
320 virtual const std::vector<DataCodec>& data_codecs() = 0; | 319 virtual const std::vector<DataCodec>& data_codecs() = 0; |
321 }; | 320 }; |
322 | 321 |
323 } // namespace cricket | 322 } // namespace cricket |
324 | 323 |
325 #endif // TALK_MEDIA_BASE_MEDIAENGINE_H_ | 324 #endif // TALK_MEDIA_BASE_MEDIAENGINE_H_ |
OLD | NEW |