| 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 24 matching lines...) Expand all Loading... |
| 35 #include <limits.h> | 35 #include <limits.h> |
| 36 | 36 |
| 37 #include <string> | 37 #include <string> |
| 38 #include <vector> | 38 #include <vector> |
| 39 | 39 |
| 40 #include "talk/media/base/codec.h" | 40 #include "talk/media/base/codec.h" |
| 41 #include "talk/media/base/mediachannel.h" | 41 #include "talk/media/base/mediachannel.h" |
| 42 #include "talk/media/base/mediacommon.h" | 42 #include "talk/media/base/mediacommon.h" |
| 43 #include "talk/media/base/videocapturer.h" | 43 #include "talk/media/base/videocapturer.h" |
| 44 #include "talk/media/base/videocommon.h" | 44 #include "talk/media/base/videocommon.h" |
| 45 #include "talk/media/base/videoprocessor.h" | |
| 46 #include "talk/media/base/voiceprocessor.h" | 45 #include "talk/media/base/voiceprocessor.h" |
| 47 #include "talk/media/devices/devicemanager.h" | 46 #include "talk/media/devices/devicemanager.h" |
| 48 #include "webrtc/base/fileutils.h" | 47 #include "webrtc/base/fileutils.h" |
| 49 #include "webrtc/base/sigslotrepeater.h" | 48 #include "webrtc/base/sigslotrepeater.h" |
| 50 | 49 |
| 51 #if defined(GOOGLE_CHROME_BUILD) || defined(CHROMIUM_BUILD) | 50 #if defined(GOOGLE_CHROME_BUILD) || defined(CHROMIUM_BUILD) |
| 52 #define DISABLE_MEDIA_ENGINE_FACTORY | 51 #define DISABLE_MEDIA_ENGINE_FACTORY |
| 53 #endif | 52 #endif |
| 54 | 53 |
| 55 namespace cricket { | 54 namespace cricket { |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 class DataEngineInterface { | 337 class DataEngineInterface { |
| 339 public: | 338 public: |
| 340 virtual ~DataEngineInterface() {} | 339 virtual ~DataEngineInterface() {} |
| 341 virtual DataMediaChannel* CreateChannel(DataChannelType type) = 0; | 340 virtual DataMediaChannel* CreateChannel(DataChannelType type) = 0; |
| 342 virtual const std::vector<DataCodec>& data_codecs() = 0; | 341 virtual const std::vector<DataCodec>& data_codecs() = 0; |
| 343 }; | 342 }; |
| 344 | 343 |
| 345 } // namespace cricket | 344 } // namespace cricket |
| 346 | 345 |
| 347 #endif // TALK_MEDIA_BASE_MEDIAENGINE_H_ | 346 #endif // TALK_MEDIA_BASE_MEDIAENGINE_H_ |
| OLD | NEW |