OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright 2010 The WebRTC Project Authors. All rights reserved. |
| 3 * |
| 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 |
| 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ |
| 10 |
| 11 // |
| 12 // A factory to create a GUI video renderer. |
| 13 |
| 14 #ifndef WEBRTC_MEDIA_DEVICES_VIDEORENDERERFACTORY_H_ |
| 15 #define WEBRTC_MEDIA_DEVICES_VIDEORENDERERFACTORY_H_ |
| 16 |
| 17 #include "webrtc/media/base/videorenderer.h" |
| 18 #if defined(WEBRTC_LINUX) && defined(HAVE_GTK) |
| 19 #include "webrtc/media/devices/gtkvideorenderer.h" |
| 20 #elif defined(WEBRTC_MAC) && !defined(WEBRTC_IOS) && !defined(CARBON_DEPRECATED) |
| 21 #include "webrtc/media/devices/carbonvideorenderer.h" |
| 22 #elif defined(WIN32) |
| 23 #include "webrtc/media/devices/gdivideorenderer.h" |
| 24 #endif |
| 25 |
| 26 namespace cricket { |
| 27 |
| 28 class VideoRendererFactory { |
| 29 public: |
| 30 static VideoRenderer* CreateGuiVideoRenderer(int x, int y) { |
| 31 #if defined(WEBRTC_LINUX) && defined(HAVE_GTK) |
| 32 return new GtkVideoRenderer(x, y); |
| 33 #elif defined(WEBRTC_MAC) && !defined(WEBRTC_IOS) && \ |
| 34 !defined(CARBON_DEPRECATED) |
| 35 CarbonVideoRenderer* renderer = new CarbonVideoRenderer(x, y); |
| 36 // Needs to be initialized on the main thread. |
| 37 if (renderer->Initialize()) { |
| 38 return renderer; |
| 39 } else { |
| 40 delete renderer; |
| 41 return NULL; |
| 42 } |
| 43 #elif defined(WIN32) |
| 44 return new GdiVideoRenderer(x, y); |
| 45 #else |
| 46 return NULL; |
| 47 #endif |
| 48 } |
| 49 }; |
| 50 |
| 51 } // namespace cricket |
| 52 |
| 53 #endif // WEBRTC_MEDIA_DEVICES_VIDEORENDERERFACTORY_H_ |
OLD | NEW |